Nico V's Q&A profile
SQL Server Using Teradata .NET data provider as data source
Recently I installed the .NET data provider for Teradata. In a regular C# application I can add the namespace, " using Teradata.Client.Provider; " to connect to this data provider directly without going though ODBC or OLD DB so I know it works. However, when I open Reporting Services (new project -> Business Intelligence Projects) I do not see how to add the Teradata .NET provider. I only see the same standard data types ...Show All
Visual C++ How to incorporate Web browser in a MFC service tool?
Hi folks, A very Happy new year to all. This is the first of the ever encountered problems this year. I hope to find somegreat programmers to solve my prob: Here is the problem: I have made a small problem in VC++ 6.0. Used MFC. I am working to create a service for my application and also wish to have my app visible in the tool tray always. I have sucessfully encorporated the later my app is visible in tool tray and the app is wor ...Show All
SQL Server URGENT! - - Unable to connect to SQL 2005 Server
Hello, I have a SQL 2005 Developer edition server, its freshly installed. I am unable to connect up to the server using the server IP. I just get a error message, when I do a port scan on the machine, it shows port 1433 is closed. I have gone into the SQL server configuration manager, and the TCP/IP port is enabled. I dont have firewall enabled on my windows XP pro SP2 machine , nor do I have any anti virus programs on this machine. ...Show All
Visual C# memory address
hello, im trying to simulate the memory management so i want first to allocate x bytes and then working inside that space only.. how can i know the address of my object in the memory thanks Hi, Objects created in C# (Assuming you are not using Unsafe Code) are placed in the Managed Heap, It has no permanent memory address coz it is constantly being moved by the GC(Garbage Collector)... cheers, Paul ...Show All
Windows Forms Frustration With DLL Project
I have only been working with .NET for a few months now, but I am quickly learning to love most of it. Some parts however, I still think need some work. In my latest project I created a DLL file so it can be used by other&n ...Show All
Visual Studio Express Editions Opening/Linking to Web pages
Can't find this yet, i am very novice and would like to link to my homepage with a linklabel. i double clicked on it in designer, but now i don't know what code to enter. could anyone tell me what should put in the onclick event > thanks in advance Jasper hi, you can start a new webpage and navigate to your homepage something like this Private Sub LinkLabel1_LinkClicked( ByVal sender As System. Obje ...Show All
Windows Forms How to step into Costom Action
I set a break point in my Cutsom Action. But I did not know to debug the Custom Action and let the program stop on break point. There is a answer in the FAQ of this forum, I have studied it, but I still can not figure out how to do. Could someone help me! Well there is this, but it requires you to know the internal name of the custom action as generated by Visual Studio. http://blogs.msdn.com/asteb ...Show All
Visual C# How to pass reference parameter to unmanaged dll
Hi I have a function in unmanaged(VC++) dll which is accepting a refernce parameter void check(UInt32& c) { c=20; } I want to call this function from my managed code(C#) so i used the following code class Program { [DllImport("samp.dll")] public static extern void check(ref UInt32 c); static void Main(string[] args) { UInt32 s = 0; check(ref s); Console.WriteLine(s.ToString ()); Console.ReadLine(); } } but it shows me the error&quo ...Show All
SQL Server How to send parameters to report when executing ReportingService.Render
I'm trying to figure out how you send/set the report variables when using the ReportingService.Render method. I can get the ReportParameters array using GetReportParameters but can't seem to find a way to populate the ParameterValue array that is passed as a variable in the Render method. I've tried creating an ArrayList comprised of ParameterValue objects (non-array), adding them to the ArrayList, and trying to convert that to a ParameterValu ...Show All
Windows Forms How to use ImageIndex property on ToolStripButton
Using C# and VS2005, I’ve placed a ToolStripButton on a ToolStrip, with TextImageRelation set to “ImageBeforeText.” I want to programmatically change the image on the button. Using older tools, I would have added an ImageList item to the form, added my list of images to the ImageList, and then used the “ImageIndex” property of the control to change the displayed image. The IntelliSense and the on-line Help for this version indicate that ...Show All
Windows Forms How to populate a listview?
Please help, i want to populate my listview from a datasource, how do i do that all i can find in the web is adding single listitems and subitems, i'd appreciate any help. and also, deleting multiple items.. thanks in advance. Just iterate through your DataSource (i.e., DataTable), and inside the loop, apply the same method you found in the web in adding ListItem (SubItem) in your ListView. As for deleting multiple items, you need to loop t ...Show All
Visual Studio Get SQL Server Name
How can i retrieve the name of the SQL Server among the network using VB 6 Code Hello Ryan, I'm not sure that this is a Crystal Reports question. You might want to try posting this question in another forum. Keith - Business Objects ...Show All
SQL Server Error rsFailedToDecryptConfigInformation
Hi! Today we have backup everyting on our new server. Now when i try to launch my reports i have this error rsFailedToDecryptConfigInformation saying that it cannot decrypt some value. I have done some search on internet and it says that i should run rsconfig but i don't know what to do There's a lot of option and parameter and i don't know what i need for my reports to run again. Also when i tried to run my report from outside the local networ ...Show All
Visual C# i need help with basic things
Im new to visual C, but i know the fundimentals of prgramming, and i cant figure out how to make a form pop up or how to change the start screen to another form, any help You've asked in the C# forum, but you say you're using Visual C. do you mean C# To create a form, you need to call it's ShowDialog method, or it's Show method if it's to be modeless. Your entry point is static void main, this metho ...Show All
Visual C# Preventing a Page from timing out during an upload
hi all, how can i go about ensuring a page does not time out during a lengthy upload. Is just boosting the timeout length above 20 minutes enought Or should i look at some form of keeping the session alive by refreshing something repeatedly, like in an iframe perhaps any ideas would be appreciated. thanks mcm This question is better suited for the ASP.NET forums than here. This forum is for general C#.NET questions that do ...Show All
