I would like to show a reminder message each time the user shutdown or logoff his machine. How can I achieve it.
Shashidharreddy
Posts
-
Reminder Message -
How can be a Transparent panel control can be createdHow can be a transparent panel control can be created. As I tried in many ways but it is applicable to window but not to the required control (panel), as well as I also have observed that Transparency will be applicable to windows forms but not to user control. Is it so, if yes why. Shashidhar
-
create a form without close minimize and maximize buttonsIn Properties set control box to false.
-
Multiple FormsIn my current project i have two forms say FormA and FormB in which each form performs some specific task, how can i shift between the forms at a time. As I said that I want to shift between the forms. It means that I have a function with two parameters if first parameter is null and second parameter is having some value it should call FormB. And Vice versa i.e. abc( Null, 10) here the first parameter is null and the second is value 10. Then it should call FormB similarly abc (10, Null) here the first parameter value is 10 and the second is Null. Then it should call FormA. How can i do it.
-
Characters in hexadecimalHi I am converting a wmf(drawing file) file in to hexa decimal Format here I am able to convert the data from WMF file to hexadecimal but the problem is the characters (A,B,C,D,E,F)in converted Hexa decimal format are coming in Small Case letters which should be in capital Letters can any of u help in getting the characters in to Capitals I am using the following code to convert. uint uiDecimal = 0; uiDecimal=checked((uint)System.Convert.ToUInt32(shapeDiagramData[i])); string str; str = String.Format("{0:x2}",uiDecimal); sw.Write("{0}", str); Shashidhar.
-
SMS from a websitethese articles cannot be accessable.
-
Dynamic DllI want to compile the dll conditionally, only when I want, or do you mean that the application should only load the DLL when it is needed. My requirement is to have multiple .Net dlls, which has similar functionalities exposed (so that I can expose functions of same signature). One of these dlls should be loaded at runtime based on user's selection of dll file name. In effect I need to support my application in such a way that, even after initial deployment, I will be able to deploy additional dlls (additional dlls alone will be separately deployed), which user can select at runtime. Shashidhar Reddy
-
Help required abt Dynamic dll.My requirement is to have multiple .Net dlls, which has similar functionalities exposed (so that I can expose functions of same signature). One of these dlls should be loaded at runtime based on user's selection of dll file name. In effect I need to support my application in such a way that, even after initial deployment, I will be able to deploy additional dlls (additional dlls alone will be separately deployed), which user can select at runtime. Shashidhar
-
Help required abt Dynamic dll.Can Any one Help me Abt Dynamic(Runtime) Dll, how to implement it in C#.Net. When ever i am compiling my project all the dll should not be compiled. It means that a particular dll has to be loaded when ever i had called, else it should not. Shashidhar.
-
How to Connect Managed and UnManaged code for Socket ProgrammingI am unable to connect the client which is written in Managed code (C# .Net) with server UnManaged code(VC++ 6.0). Can any of u plz help me in this regard. Shashidhar