How to change "Caption" of Menu Item Dynamcally? Shiva
cshivaprasad
Posts
-
How to change "Caption" of Menu Item Dynamcally? -
"Value Names" of registry keyNo, i want to do with win32 API's only
-
"Value Names" of registry keyHi, Can any one tell me, how can i get the "value name"s and "value data" of registry key. Using "RegQueryMultipleValues" , i can know "value data" of multiple values provided "value Name"s. Using "RegQueryInfoKey" , i can know no of values a specified key have. But is there any way to know, all "value names" of specified reg key Shiva
-
How can i know WDFDEVICE of a deviceHow can i know the WDFDEVICE details of any device. WDFDEVICE is A handle to a framework device object
-
USBwhat are the API's to detect the USB Device descriptor Shiva....
-
Increasing the size of the formWhen ever i set the size of form more than 1036,800...its again resetting to this size only. It seems this is the maximum size of form. But i need big form, is there any way...Pls let me know.
-
Adding scrollbar in GDI+ [modified]Thanks 4 Ur Help. I did nt get the way to keep panel at (0,0) position. infact i am not using any panel...., can u please tell me, what is panel.. and how to keep it (0,0) position, Please help me.. Thank U
-
Adding scrollbar in GDI+ [modified]I have to draw a picture using GDI, which is definitely bigger than the screen. I dont know the drawing size intially, its dynamic one. so, to see the whole picture i should have scroll bars. how can i add scroll bar to form. Please help me with sample code. Thanks in Advance -- modified at 5:06 Thursday 25th May, 2006
-
printing unicode characters on Console [modified]I have a
string
variable which contain UniCode string as its value. when i am printing it on console with writeline method, it showing "?" on the screen instead of original string. can any one tell me, how can resolve problem. Bugs Never Die -- modified at 8:19 Monday 22nd May, 2006 -
How i exit applicationi am developing a SDI application. i have to exit application from other class than Foem class. how can i do it? i wrote Application.Exit() in that class, but its not working.. can any body help pls
-
How can i add scroll bar to formHow can i add scroll bar to my form?
-
GDI InterfaceThere is no repaint method for form object. How can i repaint
-
GDI InterfaceI am drawing a binary tree on form. but when i resize form window to small and resize it back, the portion of drawing which is in resize area, is got erased. how can i get that drawing back.. Pls help me out
-
Removing white spaces from an ArrayListfriend this may resolve, ur first problem..
private void parseString(String x) { string tempstr; int i=0,len,flag=0; tempstr=""; len=x.Length; while(i < len) { if(x[i]!= ' ') { tempstr = tempstr + x[i]; flag = 0; } else { if(flag == 0) { str.Add(tempstr); tempstr = ""; flag = 1; index++; } } i++; } str.Add(tempstr); }
In this str is arraylist If u have still some doubt, mail me ShivaJee -
accesing form from another Classi have a binary tree class in SDI form program. i want to print binary tree on that form using GDI commands. can any one pls tell me how can do it. pls give sample code to do it. -- modified at 13:41 Tuesday 9th May, 2006
-
SQL Query StringCan U Pls modify the above Query to make it correct.
-
Query StringCan u pls tell me, wether following SQL string format is correct or not. textWord.text,comboCat.text are string variables of C#. indexInCategoryTable and SubCategoryNo are integer variables. "select * from Words where word = N'"+textWord.Text+"' and CategoryTableName = '"+comboCat.Text+"' and IndexInCategoryTable = 'indexInCategoryTable' and SubCategoryNo = 'SubCategoryNo'";
-
SQL Query StringCan u pls tell me, wether following SQL string format is correct or not. textWord.text,comboCat.text are string variables of C#. indexInCategoryTable and SubCategoryNo are integer variables. "select * from Words where word = N'"+textWord.Text+"' and CategoryTableName = '"+comboCat.Text+"' and IndexInCategoryTable = 'indexInCategoryTable' and SubCategoryNo = 'SubCategoryNo'";
-
How to read Max value of column in SQL ServerHI, How should i handle max(particular column) of a table in SQL server. SqldataReader.executeReader() not handles it i suppose. can any one help
-
Inserting data into SQL Server databaseReally i am very thankfull 2 U.