224 Posted Topics
Re: 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.. ] | |
Re: whta's your database ?? sql,access,mysql??? if possible can you provide some code ??? | |
Re: 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] | |
Re: write the same code on the Radiobutton's CheckChanged event.. | |
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: … | |
Re: 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. . . | |
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] | |
Re: 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] | |
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 … | |
Re: 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 … | |
Re: check this : [URL="http://www.computerhope.com/forhlp.htm"]http://www.computerhope.com/forhlp.htm[/URL] | |
hi.. You will need Taglib - Sharp Library for this purpose . For Complete understanding and project Download Go to: [snipped] | |
Re: 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] | |
Re: check this .. http://winform-net.blogspot.com/2011/05/encryption-and-decryption-functions-in.html it will surely help you | |
Re: 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] | |
Re: 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] | |
Re: [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] | |
Re: 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 | |
Re: 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 | |
Re: check this out: http://winform-net.blogspot.com/search/label/Custom%20Controls | |
Re: here , use this: [URL="http://sourceforge.net/projects/zint/"]http://sourceforge.net/projects/zint/[/URL] i think its open source.. | |
Re: i think webbrowser does not with background worker,. i tried the same thing you were doing.. | |
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 … | |
Re: are you using richtextBox to store your text??? | |
Re: 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 | |
Re: 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] | |
Re: use below library [URL="http://itextpdf.com/"]http://itextpdf.com/[/URL] | |
Re: if the logged in user has rights then he can delete it.. | |
Re: 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] ![]() | |
Re: 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] | |
Re: 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] | |
Re: can u make it more clear ...? its seems a little vague.. how are you getting the date in Main form textbox | |
Re: you description is too abstract.. provide more detailss.. looks like a school project ?right?? | |
Re: can u provide more clarification... ? the info u provided is very abstract... provide an example.. | |
Re: 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 … | |
Re: 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] | |
Re: use this: [CODE] decimal moneyvalue = 1921.39m; string html = String.Format("Order Total: {0:C}", moneyvalue); textBox1.Text = html; [/CODE] | |
Re: check this : [URL="http://www.switchonthecode.com/tutorials/csharp-tutorial-font-scaling"]http://www.switchonthecode.com/tutorials/csharp-tutorial-font-scaling[/URL] ![]() | |
Re: well .. check this site out : [URL="http://www.webtropy.com/"]http://www.webtropy.com/[/URL] its a good starting for networking with .net | |
Re: 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)) { … | |
The End.