Answer Questions
audigger Visual C# 2005 Windows Control Library project template
Greetings, I am using Visual C# 2005 Express edition. I tried to create a Windows Control Library project and noticed that the template was missing. Is it possible to download this template If so where can I download it from Thanks in advance, Robert Lancaster PS: Are there any other templates it may be worthwhile downloading, and if so, where can these templates be downloaded. You don't ne ...Show All
Rajesh Nagpal MOM Reporting Server
Why doesn't the MOM Reporting Server show any utilization numbers Cheers Dave Currently, the MOM Reporting Server is included only for disk sizing purposes. This issue will be addressed in future releases. Thanks Steven ...Show All
Hiralshah BackgroundWorker and SHGetFileInfo
The SHGetFileInfo function sometimes does not give the appropriate icon when called from by a BackgroundWorker. As far as I have been able to ascertain you get the correct Icon back as long as the Icon is static for a file type. That is, the Icons for .txt, .doc, etc. are the same no matter which file it is. But the Icon for files/shortcuts with the extension .url or .sln (if you have VS 2005 installed) will have Icons which depend on file and ...Show All
skud13 C# syntax?
I'm familiar with C++/MFC and I'm starting to work with C# and the new WinFX, and also the new Expression environment. But for this I'm inside VS2005. One thing I want to do is remove the chrome from the default example. I understand this could be done with NavigationWindow.ShowsNavigationUI. What I need to understand better is how entries like this are supposed to be entered. The intellesense on this comes up with options of Hidden, Visible ...Show All
peta How to access classes and properties of .dll file?
I'm new to C#. Will someone show me how to access the classes and properties of a .dll I already have it reference in my bin folder. Once your C# project has a reference to the .dll (right click on the project in Solution Explorer and select "Add Reference...") you need to add an appropriate "using" statement to your source file to indicate which namespaces you want to use. For example, ...Show All
WiKoPL how do you write a calculator programme
do you now any methods of building a calculator Use System.Math namespace... Take a look at this article : A Calculator using C# ...Show All
Kyong Kwak Network traffic monitor
Hi! I want to create an application that would count the total data downloaded and uploaded per day. For this I would have to monitor the network traffic and keep a count on the upload and download. How can I do it in c#. IPGlobalProperties ipGlobalProp = IPGlobalProperties .GetIPGlobalProperties(); TcpStatistics TcpStats = ipGlobalProp.GetTcpIPv4Statistics(); IPGlobalStatistics IPStats = ipGlob ...Show All
Tommief What is the technique to read data file from Remote Machine??
hi, what is the technique of read data file for example txt file from remote machine on network.. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=466312&SiteID=1 see this article of making sharing folder to be help for me..but not usefull i think..,do you have an idea thanks ...Show All
Stephen Inglish How can I hide a TabPage?
Hello, I want to hide a TabPage (not delete it), how can I do that Please help. Doesn't work Thanks but can you give me some code please You'll find code for this as well as just about anything else you can think of to do with TabControls, on my site: http://www.dotnetrix.co.uk/tabcontrols.html --> Hide and Show Tabpages in a T ...Show All
halfasleeps generaion of signature
How to generate file signature How to generate spyware signature and lastly how they will be compared to find either they have been changed or not file signature mean hash like file signature every spyware will have some signature through which we can compare it with file signature to find its validity. in antispyware or antivirus, signature based scanning is being used for scanning. so keeping in mind this point, ...Show All
Steve Maine -- MSFT ORA-06413: Connection not open.
Dear All, I had encountered the following error code ex.Message = "ERROR [HY000] [Oracle][ODBC][Ora]ORA-06413: Connection not open. ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed ERROR [HY000] [Oracle][ODBC][Ora]ORA-06413: Connection not open. while running the code as below : try { // Build a connection and SQL strings string connectionString = @"DSN=EDC;UID=afpduser;PWD ...Show All
Rodrigo Libano Outlook plugin with express beta 2
Hi, I've got #develop and express beta 2 (and will probably get VS 2005 when it comes out for real). I understand with vs.net there is a wizard to help you create plugins for office apps. It seems this plugin isn't in c# express, if it possible to build a plugin manually or do you need the output of the wizard Thanks alot Thanks alot. Hi David - A better place to post this fo ...Show All
TheGreatOtakuKraken Complete code
The following code is from a book of Tod Golding (wrox) public void InferParams<I, J>(I val1, J val2) {...} public void InferParams<I, J>(int val1, string val2) {...} InferParams<int, string>(14, "Test");// call the second function InferParams(93, "Param2"); // call the first function Can anybody explain the difference Why there is no compile error Thanks! The compiler can infer ...Show All
Erfan Problems In Visual C# coding
Sir, I have a certain part of code which i have changed to visaul C# from c++ it is giving me some problems.I am not able to understand how to solve it. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Image *createILNode(char* filename) { ImageList *node = new imageList(); node->imageIndex = 0; node->next subject = null; node->n ...Show All
Brett Stowe Custom status message in MSI through Custom Action DLL
Hello Is it possible to have a custom action DLL that changes the status text or progress bar in the output MSI ...Show All
