Answer Questions
Marque IV system tray
Hi. How can send my programm to system tray. I write a clock alarm program and want when running go to system tray. Put a NotifyIcon component on your form, set the Icon property to the Icon you want and look at this self-explaning code: private FormWindowState _lastNonMinimizedState; private void Form1_Resize( object sender, System.EventArgs e) { if (WindowState == FormWindowState.Minimized) { ShowInTaskbar = false ; n ...Show All
oclaros USB smart card drivers in safe mode.
Is there any method through which we can load USB smart card drivers in safe mode. Is there any method through which i can make USB smart card reader acr38U work in safe mode. If i am able to run the service scardsvr during safe mode ot think i will be able to communicate with smart card reader. can any one can help me solve this problem. if any one can suggest how to make a service to be loaded during safe mode it would be ...Show All
William Melvin USING VIS c++ V 6 WITH c# OR c++.NET
I am trying to figure out the best way to rewite a Vis C++ v6 dll that is part of a Commercial Software Package. I was wanting to do it in C#,and hopefully use some of old C++ code. Does anyone have an idea what the best way to approach this problem. Also I will need new C# or C++.net DLL to still work with Vis C++ v6 package, including being able to navigate from a menu back to othe parts of application in ver 6 C++ from c# dll, and still ...Show All
Rickyman45 Class Designer in Express?
I'm a developer by profession, but it looks to me like Visual C# Express has enough functionality for the little things I want to work on at home ;-) However, I was reading the 'Product Activity Enhancements' page at http://msdn.microsoft.com/vcsharp/2005/overview/productivity/ and I can't find the Class Designer functionality as depicted (where there's a grid of the class details and a toolbox with 'Class', 'Inherit' etc. Can anyone confi ...Show All
C Joseph Will window service app get better performance
Hi, will C# Application that run as Window Services get more better performance than Console Application or Windows Application(without any form showing) thnx Don't do it for a preformance issue, because there is not noteable different. Use a Console application when you need and Console application. When you need a rich user interface, you create a Winforms application. And when you need a Service, you creat ...Show All
Steven Twitchell How do I display process status?
Hey! I am using this to start a new process: Process check = new Process(); check.StartInfo.FileName = "chkdsk.exe"; check.StartInfo.Arguments = textBox1.Text + ":"; check.StartInfo.CreateNoWindow = true; check.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; check.Start(); How can I add status message to my app like Checking..... and Done Thanks! Matt ...Show All
Lajash GMT to BAH time
I have an ready-made application which saves which saves all times in GMT format in the SQL Server and i need to get the time in my application in my time.. for example, if a call made on 15:30:25 it will be save in the database as 12:30:25 but i need to read it again as 15:30:25. My time is usually +3 GMT but is it a good way to just say +3 or maybe GMT has a different times in Summer or winter I am not sure.. Hi there, I be ...Show All
Castor stop build not available?
is it just me, or is the 'stop build' button not enabled for cs project builds incase it is - does anybody know if this is supposed to stay that way in the final WM_THX thomas woelfer http://www.die.de/blog You are correct, there is no Stop Build option at all in VS2005. There isnt any Stop Build Button also. Regards, Vikram and it doesn't work. its allways disabled over here. WM_FYI thomas woelfer http ...Show All
JordanH Variable doesn't increment
Hi, I'm creating a Tetris game in which I have an 'x' and a 'y' variable. At first they are set to 0. I use a timer to change the 'y' value to move the figure down. Here's the code: private void timer1_Tick( object sender, EventArgs e) { y++; Graphics grfx = this .CreateGraphics(); PaintEventArgs f = new PaintEventArgs (grfx, this .ClientRectangle); DrawFigure dr = new DrawFigure (f, x, y); grfx.Dispose() ...Show All
bob3825 How to change VC#.NET default lower bound for array subscripts
Hello. I am upgrading a legacy system written in FORTRAN and Visual Basic 6.0 with Option Base 1 (array lower bound is 1). Unfortunately the VB.NET no longer supports this option anymore (I wonder why Microsoft took out this good option). Is there a quick way to take care this issue in VC#.NET It is lots of work to change all arrays in a legacy system from base 1 to base 0. Any good idea Thanks. Ping Ping, ...Show All
Jeffry Dwight "True" OO design - sorting objects
I have 2 classes OrderInfo and OrderManager. The OrderInfo class is the model of an Order and the OrderManager does all the work on the OrderInfo such as Insert, Update, Delete, Sort etc. I’m trying to implement sorting and have the following code in the OrderManager class: public static Collection < OrderInfo > Sort( string sortExpression, string sortDirection) { GenericComparer comparer = new GenericC ...Show All
Ollatek 'Exclude Files From Project' - Beta 2
How do I 'Exclude Files From Project' in VS 2005 I have a solution that requires files to exists in the directory structure but not be compiled. Where has this functionality moved to Also, what happened to the 'Show All Files' option Regards, I am having the same problem with the same tools. please let me know if you find a work around Hmm...for some re ...Show All
Ken England Multi-tiered enviroments planning for MOM 2005
Will you be adding support for modeling multi-tiered environments thanks andy Hi Andy - we thought about it for v1, but it didn't make the cut. Here's my thinking on the pros and cons: Pro: It would be a great demo. I'm not aware of any other tools that can easily model multi-tiered environments. Con: It might require significant UI coding effort, since we'd probably have to add a "top-level" view that showed the tiers ...Show All
wayne hileman Need root-node of clicked node! How??
Hi there, supposing the following tree: root_A A_1 A_1_1 A_1_2 A_2 root_B B_1 B_2 B_3 B_3_1 How can I get the corresponding root, when A_1_2 is selected this . treeView1 . SelectedNode . Index ; just brings out the index relative to the ...Show All
shara Search from IE 6 Address Bar
I cannot search from IE 6 Address Bar any longer, The defaults are set, and it used to display results in the main window; I can still go to a specific web site, example: I can type www.microsoft.com and it will go to that site, but if I just type in "x", where x is my search name of an item, I get a page cannot be displayed and the address changes to: http:/// % x Any suggestions to reset this and make it clean ...Show All
