Check this out this regular exp: @"(\([a-zA-Z]+\))|(\s?-\s?[a-zA-Z]*)" This might help u out.
Sunil Lanke
Posts
-
string -
stringUse Regular Expressions, it will help you out.
-
MFC + Threading = C2665 -
only open excel fileApply filter to OpenFileDialog OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter = "Excel|*.xls"; ofd.ShowDialog(); System.Diagnostics.Process.Start(ofd.FileName, "Fileselected");
-
for loopforeach (XmlNode node in xmlNl) { ddlctry.Items.Add(node.LastChild.InnerText); }
-
How to save Form what ever we create on it? ?Hey, I think i dint got your question properly, can u let me know that, the form which you are closing is Main form of the Application or child form. If it is main form then you need to capture the "form load" and "form closing" event of the form, and write your own code to save the settings on closing, and load the settings when the form is loaded. :)
-
How to save Form what ever we create on it? ?[Message Deleted]
-
How do I detect any mouse/key input at application levelFor that u need to user TIMER, on Application startup u need to start it, and if any MOUSE/key input occurred, then u need to again restart the timer. :) Regards, Sunil
-
message associted with number 131?First let me know, the value 131, which u have given in Decimal format or HEX format.
-
message associted with number 131?You can get all Windows message values in WinUser.h file, in your include directory :)
-
message associted with number 131?The value which you have given 131, if it is in Decimal format, the HEX equivalent of that is 0x0083, and its stands for WM_NCCALCSIZE message. You can check below link for more details: http://msdn.microsoft.com/en-us/library/ms632634(VS.85).aspx#\[[^](http://msdn.microsoft.com/en-us/library/ms632634\(VS.85\).aspx# "New Window")] Regards
-
Regular Expression HelpHi This one should work, :) ^\d+.\d{2}$ Thanks
-
Regular Expression HelpCheck this out: d*\.dd
-
Upgrade VC++ Application to VC++.NETIs there any Tool Using which i can upgrade my VC++ Project to VC++.Net Project for Windows Vista.
-
Recreate splitter Window uisng VC++ 6.0Yes, i want to do it Run time when i will click on certain button.
-
Recreate splitter Window uisng VC++ 6.0Hi, I want to switch from 5 window splitter to 3 window, using the same object of CSplitterwnd, is it possible for me to reintialise or recreate the same object of CSplitterwnd, so that i can change the number of rows and columns in the same application.
-
TaskBar ToolTipIs there any way to show ToolTip on TaskBar, using VC++.
-
Thread Colsing ProblemI have created Thread Using AfxBeginThread, to diaply continous text on dialog bar, while if I close entire application or interrupt the application i gets Memory leakage, please help.
-
Execute Command Line Switches of Microsoft AccessHow can i execute Command Line Switches of Microsoft Access using Visual Basic 6.0 Please Reply
-
Convert Access Database from 97 to 2000Actually i want to convert the Access-97 Database to Access-2000 Database, because i am adding/deleting coloumns programitically, so my software gives error if the Access is older version, for adding or deleting the columns. Please reply. With regards, Sunil Lanke.