Try RegEX - Regular Expressions for finding and removing. PraVeeN NinethSense.com/blog/
_NinethSense_
Posts
-
Source code comment line removal -
Any example, article on GhostScript and VB.NET?First you need to set the printer to one that can either generate Postscript, or to something like RedMon that can directly output to Ghostscript. Second, you need to script Word to print. PraVeeN NinethSense.com/blog/
-
How to show a fit size of jpgChange the SizeMode property of PictureBox to StretchImage. PraVeeN NinethSense.com/blog/
-
insert values in datagridUpdate DataSet and bind the DataGrid PraVeeN NinethSense.com/blog/
-
Access Connection Issue In VB.Netaap.config You have to "add new item" for this. Specify the connectionstring there. Example:
<configuration> <appSettings> <add key="Provider" value="MSDAORA" /> <add key="DataSource" value="DBTest" /> <add key="UserID" value="Lavanya" /> <add key="Password" value="Password" /> <add key="MailServer" value="EXCH.XYZ.COM"/> </appSettings> </configuration>or<connectionStrings> <add name="ClaimEZ.My.MySettings.BACFConnection" connectionString="Data Source=MYSERVER;Initial Catalog=MYDB;Integrated Security=True" providerName="System.Data.SqlClient" /> <add name="MyDataLayer.My.MySettings.BACFConnection" connectionString="Data Source=MYSERVER;Initial Catalog=MYDB;Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings>PraVeeN NinethSense.com/blog/ -
Installed MS Office, how to show document in window form?Try this simple thing: Add reference to the COM Component "Microsoft Word xx.xx Object Library".
Dim wa As New Word.ApplicationClass Dim doc As Word.Document = wa.Documents.Open("C:\test.doc") MsgBox(doc.Content.Text())PraVeeN NinethSense.com/blog/ -
HINDI FONT PROBLEMGo with UNICODE or Dynamic Fonts. Microsoft Web Embedding Fonts Tool - WEFT -> http://www.microsoft.com/typography/web/embedding/weft/default.htm[^] PraVeeN NinethSense.com/blog/
-
problem with TreeviewCheck http://www.15seconds.com/issue/041117.htm[^] PraVeeN NinethSense.com/blog/
-
load a page within a pageCheck this out : http://www.htmlhelp.com/reference/html40/special/iframe.html[^] Also you may check "AJAX" concepts if you wish. PraVeeN NinethSense.com/blog/