224 Posted Topics

Member Avatar for niths

than you need to write that to client side.. i mean using java script or something like that.. and pass it to server.. it's just a theory.. [i dont know much about web app.. ]

Member Avatar for zmeditation1
0
211
Member Avatar for epdmcoatings
Member Avatar for begin1

whta's your database ?? sql,access,mysql??? if possible can you provide some code ???

Member Avatar for twiss
0
338
Member Avatar for adi.shoukat

why dont you use Docking and Anchoring properties..??? this will get you going: [URL="http://www.codeproject.com/KB/miscctrl/anchordock.aspx"]http://www.codeproject.com/KB/miscctrl/anchordock.aspx[/URL]

Member Avatar for adi.shoukat
0
333
Member Avatar for ashley11
Member Avatar for Luc001
0
319
Member Avatar for sandeepparekh9

A Function To Concat String Array Values By Specified Delimiter Let 's Say I have Following Array: string[] st = new string[5]; st[0] = "Animation"; st[1] = "Action"; st[2] = "Romance"; st[3] = "Drame"; st[4] = "Comedy"; Now I want to Merge all of it with ',' Delimiter Like Below: …

Member Avatar for maximocn
-1
284
Member Avatar for buster2209

why dont you use Thread.IsAlive Property with your do while loop condition..? somthing like [CODE] //in thread 1 while ((sw1.ElapsedMilliseconds < y) && (s == 0) && MyThread2.IsAlive()) [/CODE] if the condition fails means the MyThread2 is completed and then you can be out of there. . .

Member Avatar for buster2209
0
159
Member Avatar for sandeepparekh9

Listing All The Installed Softwares In Computer Using .Net Don't Forget to add [B]Imports Microsoft.Win32[/B] for complete thread with screen shots check here: [snipped]

0
2K
Member Avatar for danielgr

i use NSIS and its very good. check it out here: [URL="http://nsis.sourceforge.net/Main_Page"]http://nsis.sourceforge.net/Main_Page[/URL]

Member Avatar for sandeepparekh9
0
579
Member Avatar for sandeepparekh9

A Function To Find Strings Between A Given Word/String For example : let's say you have following Text: Title Author Product* ~~~~~ ~~~~~~ ~~~~~~~~ "Aurora's Eggs" Douglas Niles Story (Dragons 2) The Dragons Douglas Niles Novel The Kinslayer Wars Douglas Niles Novel The Qualinesti Paul B. Thompson Novel & Tonya …

Member Avatar for sandeepparekh9
0
454
Member Avatar for JOSheaIV

you could use something like this.. [CODE] DateTime d1 = new DateTime(2011, 05, 31, 12, 5, 0); // in yyyy,mm,dd,hour,minute,second form DateTime d2 = new DateTime(2011, 05, 31, 13, 5, 0); TimeSpan t = new TimeSpan(); t = d2 - d1; string str = t.Hours.ToString(); // Here the value of …

Member Avatar for JOSheaIV
0
888
Member Avatar for lielee
Member Avatar for moone009

check this : [URL="http://www.computerhope.com/forhlp.htm"]http://www.computerhope.com/forhlp.htm[/URL]

Member Avatar for moone009
0
86
Member Avatar for sandeepparekh9

hi.. You will need Taglib - Sharp Library for this purpose . For Complete understanding and project Download Go to: [snipped]

Member Avatar for katmai539
-1
231
Member Avatar for rminator

may be this will help [URL="http://winform-net.blogspot.com/2011/05/simple-log-writer-and-log-searching.html"]http://winform-net.blogspot.com/2011/05/simple-log-writer-and-log-searching.html[/URL]

Member Avatar for abelLazm
0
460
Member Avatar for Bheeman89

check this .. http://winform-net.blogspot.com/2011/05/encryption-and-decryption-functions-in.html it will surely help you

Member Avatar for Bheeman89
0
305
Member Avatar for Victoryy

you can check these links [URL="http://www.codeproject.com/KB/vb/Image_in_Crystal_Reports.aspx"]http://www.codeproject.com/KB/vb/Image_in_Crystal_Reports.aspx[/URL] or this video [URL="http://www.youtube.com/watch?v=-GAz7AH6-vA"]http://www.youtube.com/watch?v=-GAz7AH6-vA[/URL]

Member Avatar for sandeepparekh9
0
579
Member Avatar for samueal

you need to wait before the browser is completely navigated.. use something like this [CODE] WebBrowser wb = new WebBrowser(); HtmlDocument doc = null ; wb.Navigate("WWW.GOOGLE.COM"); do { Application.DoEvents(); } while (wb.ReadyState != WebBrowserReadyState.Complete); 'Here do your coding [/CODE]

Member Avatar for sandeepparekh9
-1
282
Member Avatar for Reverend Jim

[CODE] j = r.Next(1, 6) [/CODE] i think the higher Boundry 6 is Exclusive to it will give numbers between 1 to 5 including 1 and 5 but not 6.. try using [CODE] j = r.Next(1, 7) [/CODE] check the example here: [URL="http://msdn.microsoft.com/en-us/library/2dx6wyd4.aspx"]http://msdn.microsoft.com/en-us/library/2dx6wyd4.aspx[/URL]

Member Avatar for Reverend Jim
0
142
Member Avatar for samythehunk
Member Avatar for IDC_Sharp

here these will surely help you. it a small tutorial with the complete project http://winform-net.blogspot.com/2011/05/reading-tags-from-mp3-files.html

Member Avatar for abelLazm
0
126
Member Avatar for brentgabel

check this out http://winform-net.blogspot.com/2011/05/simple-encryption-function.html http://winform-net.blogspot.com/2011/05/first-add-this-namespaces-using.html

Member Avatar for skatamatic
0
581
Member Avatar for ninjatalon

check this out: http://winform-net.blogspot.com/search/label/Custom%20Controls

Member Avatar for ninjatalon
0
166
Member Avatar for hirenpatel53

here , use this: [URL="http://sourceforge.net/projects/zint/"]http://sourceforge.net/projects/zint/[/URL] i think its open source..

Member Avatar for hirenpatel53
0
147
Member Avatar for serph09

i think webbrowser does not with background worker,. i tried the same thing you were doing..

Member Avatar for serph09
0
827
Member Avatar for sandeepparekh9

hi. here a simple class to change the wallpaper in winxp and win7. i think it will work on every windows version. [CODE] public sealed class clsWallpaper { const int SPI_SETDESKWALLPAPER = 20; const int SPIF_UPDATEINIFILE = 0x01; const int SPIF_SENDWININICHANGE = 0x02; [DllImport("user32.dll", CharSet = CharSet.Auto)] static extern int …

Member Avatar for sandeepparekh9
0
118
Member Avatar for Voidz
Member Avatar for wenbnet
Member Avatar for sarifah n
Member Avatar for sachahutton

hi its easy.. create a property in the page where u want to display the result.. set this property to your sql query from search page then on the load event of the result page run this query

Member Avatar for sachahutton
0
347
Member Avatar for bettybarnes
Member Avatar for IDC_Sharp

check this: [URL="http://www.codeproject.com/KB/list/EXListView.aspx?df=100&forumid=266091&exp=0&select=1427247"]http://www.codeproject.com/KB/list/EXListView.aspx?df=100&forumid=266091&exp=0&select=1427247[/URL]

Member Avatar for abelLazm
0
326
Member Avatar for margaretna
Member Avatar for sandeepparekh9
0
631
Member Avatar for jamshed ahmed
Member Avatar for sandeepparekh9
0
65
Member Avatar for kitjo

try this: [URL="http://www.sourcecodester.com/tutorials/net/how-create-a-splash-screen-vbnet.html"]http://www.sourcecodester.com/tutorials/net/how-create-a-splash-screen-vbnet.html[/URL] [URL="http://msdn.microsoft.com/en-us/library/bfkbc5a3(v=vs.80).aspx"]http://msdn.microsoft.com/en-us/library/bfkbc5a3(v=vs.80).aspx[/URL] [URL="http://www.devasp.net/net/articles/display/386.html"]http://www.devasp.net/net/articles/display/386.html[/URL] [URL="http://www.dotnetspider.com/resources/21399-Creating-Splash-Screen-VB-NET-using-Form.aspx"]http://www.dotnetspider.com/resources/21399-Creating-Splash-Screen-VB-NET-using-Form.aspx[/URL]

Member Avatar for Unhnd_Exception
0
530
Member Avatar for Olivis

check this: [URL="http://stackoverflow.com/questions/4724433/add-multiple-checkedlistbox-to-columns-of-datagrid-view"]http://stackoverflow.com/questions/4724433/add-multiple-checkedlistbox-to-columns-of-datagrid-view[/URL]

Member Avatar for sandeepparekh9
0
162
Member Avatar for G_Waddell
Member Avatar for S.R.SENTHUJAN

may be this will help [URL="http://www.daniweb.com/software-development/vbnet/threads/127621"]http://www.daniweb.com/software-development/vbnet/threads/127621[/URL] and if above doesnt help then check the below one [URL="http://social.msdn.microsoft.com/Forums/en/vbgeneral/thread/0dacf318-24fa-4962-91b5-69a246c6684d"]http://social.msdn.microsoft.com/Forums/en/vbgeneral/thread/0dacf318-24fa-4962-91b5-69a246c6684d[/URL]

Member Avatar for sandeepparekh9
0
121
Member Avatar for jassaal123
Member Avatar for eileenc87

can u make it more clear ...? its seems a little vague.. how are you getting the date in Main form textbox

Member Avatar for eileenc87
0
1K
Member Avatar for niketakapoor

you description is too abstract.. provide more detailss.. looks like a school project ?right??

Member Avatar for abelLazm
0
91
Member Avatar for JakeA
Member Avatar for ashley11

can u provide more clarification... ? the info u provided is very abstract... provide an example..

Member Avatar for Saikalyankumar
0
148
Member Avatar for babbu

i dont think u need to manually right all this.. just type this code on form load event or any other that may see [CODE] foreach (DataRow cust_dr_autoloop in m_dt_Customer.Rows) { if (cust_dr_autoloop["cust_name"].ToString().StartsWith(m_search)) { m_namesCollection.Add(cust_dr_autoloop["cust_name"].ToString()); } } [/CODE] now u will have all the cust_name collection in m_namesCollection .. the …

Member Avatar for sandeepparekh9
0
117
Member Avatar for kazekagerandy

check this out: [URL="http://www.codeproject.com/KB/aspnet/ReportView.aspx"]http://www.codeproject.com/KB/aspnet/ReportView.aspx[/URL] [URL="http://www.codeproject.com/KB/vb/Image_in_Crystal_Reports.aspx"]http://www.codeproject.com/KB/vb/Image_in_Crystal_Reports.aspx[/URL]

Member Avatar for sandeepparekh9
0
108
Member Avatar for Jake.20

use this: [CODE] decimal moneyvalue = 1921.39m; string html = String.Format("Order Total: {0:C}", moneyvalue); textBox1.Text = html; [/CODE]

Member Avatar for codeorder
0
215
Member Avatar for yashodhan05

check this : [URL="http://www.switchonthecode.com/tutorials/csharp-tutorial-font-scaling"]http://www.switchonthecode.com/tutorials/csharp-tutorial-font-scaling[/URL]

Member Avatar for Unhnd_Exception
0
164
Member Avatar for jbennet

well .. check this site out : [URL="http://www.webtropy.com/"]http://www.webtropy.com/[/URL] its a good starting for networking with .net

Member Avatar for dreamyfriend
0
489
Member Avatar for leo88

hi.. try something like this: [CODE] ArrayList newArry = new ArrayList(); SortedList SortList =new SortedList(); SortList.Add("1", "20"); SortList.Add("2", "30"); SortList.Add("3", "10"); SortList.Add("4", "15"); SortList.Add("5", "45"); foreach (string item in listBox1.Items) { string[] itemcol = item.Split(' '); // splitting items by space foreach (string str in itemcol) { if (SortList.ContainsKey(str)) { …

Member Avatar for Saikalyankumar
0
111
Member Avatar for Jake.20

The End.