5,346 Posted Topics
Re: [b]>Finding duplicate elements in an Array.[/b] Use Array.IndexOf() method. | |
Re: Have a look at this [URL="http://stackoverflow.com/questions/2273730/java-images-with-alpha-channel-without-using-buffered-image"]thread[/URL]. | |
Re: Welcome to the DaniWeb. [b]>How to read from a text file[/b] You may use classes from System.IO namespace. For example, The method ReadAllLines() will opens a file and read all lines and then close file. [code] String []lines=System.IO.File.ReadAllLines("file.txt"); [/code] | |
Re: [b]>PDF to HTML Converter[/b] Have a look at - [url]http://www.adobe.com/products/acrobat/access_onlinetools.html[/url] | |
Re: [b]>Is there anyone that would be willing to test the program?[/b] You may use [b]Code Snippet[/b] thread to put/publish your code here. | |
Re: [b]>Do you know how I can get the data to appear in these rows?[/b] I think the GridView2 has a template column. Isn't it? | |
Re: Maybe you are looking for [URL="http://en.wikipedia.org/wiki/Voice_modem_command_set"]AT[/URL] commands. Have a look at [URL="http://bytes.com/topic/net/insights/703378-how-play-wave-file-phone-c-part-i"]FAQ[/URL]. | |
Re: [b]>i searched a lot in the internet but without any benefit ...[/b] Have a look at - [url]http://support.microsoft.com/kb/310130[/url] | |
Re: Name of property can be vary from one designer to another. Use link markup to import css. [code] ... <head> <link rel="StyleSheet" type="text/css" href="Images/style1.css" /> ... </head> ... [/code] | |
Re: [b]>Kindly help to clear the values of textboxes when the page is loaded.[/b] [code] TextBox1.Text=String.Empty; ... [/code] | |
Re: [b]>I am a .net developer and I am in search of a tool that can convert HTML pages to ASPX pages? [/b] Rename .htm/.html page to .aspx and add runat="server" and [b]id[/b] to the controls you want to use on the code behind. | |
Re: Tutorials: 1. [url]http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx[/url] 2. [url]https://www.hibernate.org/363.html[/url] | |
Re: [b]>I am trying to send textbox value from one page to another and its keep giving me an error[/b] Query string [code] string val=TextBox1.Text; Response.Redirect("page2.aspx?val=" + val); [/code] | |
Re: Have a look at this thread - [url]http://www.daniweb.com/forums/post1136185.html#post1136185[/url] | |
Re: [b]>Does anyone know why my images might be disappearing? [/b] Due to authorization. You have turn off resource access for anonymous user. see, [code] <authorization> [COLOR="Red"]<deny users="?"/>[/COLOR] <allow users="*"/> </authorization> [/code] Use location markup to set access for image and other resources. Read more about [URL="http://msdn.microsoft.com/en-us/library/b6x6shw7.aspx"]Location[/URL] tag. | |
Re: [b]img[/b] html tag or [b]Image[/b] asp.net server control. [code] <img src="Images/image1.gif" alt="image"/> //OR <asp:Image id="img1" runat="server" ImageUrl="~/Images/image1.gif"/> [/code] | |
Re: Take a look at Scott Hanselman's blog - [url]http://www.hanselman.com/blog/TheWeeklySourceCode37GeolocationGeotargetingReverseIPAddressLookupInASPNETMVCMadeEasy.aspx[/url] | |
Re: You need to do. 1. Create an instance of DataTable. 2. Add column into Columns collection (Instances of DataColumn). 3. Rows collection to add/remove/update/list rows. | |
Re: Create a sub-class of System.Web.Mvc.[URL="http://www.asp.net/%28S%28ywiyuluxr3qb2dfva1z5lgeg%29%29/learn/mvc/tutorial-03-cs.aspx"]Controller[/URL]. | |
Re: [code] .. foreach (DataRow dr in ds.Tables[0].Rows) { textBox2.Text = dr["EMAIL ADDRESS"].ToString(); Byte[] byteBLOBData = (Byte[])(dr["IMAGE"]); MemoryStream stmBLOBData = new MemoryStream(byteBLOBData); pictureBox1.Image = Image.FromStream(stmBLOBData); ... } [/code] | |
Re: [b]>Plz also tell me about any online book or link which give me basic details of writing dbus program.[/b] Have a look at - UNIX Network Programming, Volume 2, Second Edition: [URL="http://www.kohala.com/start/unpv22e/unpv22e.html"]Interprocess Communication[/URL]. | |
Re: [b]>a messagebox appear that show user-defined type not defined[/b] Please be more specific about your problem. Post error message (trace). | |
Re: Take a look at - [url]http://www.iphonestalk.com/tip-how-to-get-sms-delivery-reports-on-an-iphone/[/url] | |
Re: [b]>how to Formate the textbox in the front end i.e. in vb.net 2005[/b] Use DateTimePicker or Masked Textbox. Look at [b]DateTime.TryParseExact[/b] to set/get custom datetime formats. | |
Re: Take a look at [URL="http://support.microsoft.com/kb/956196"] FAQ[/URL]. | |
Re: I suggest you to use Oledb classes to read excel document. | |
Re: Please verify the [B]name[/B] of dataitem. [code] <%# DataBinder.Eval(Container.DataItem, "[COLOR="Red"]name[/COLOR]").ToString().Replace("&","&") %> [/code] | |
Re: Have a look at MSDN article - [url]http://msdn.microsoft.com/en-us/library/ms178335.aspx[/url] | |
Re: Multi columns combo. Take a look at codeproject articles : 1. [url]http://www.codeproject.com/KB/combobox/MultiColumnComboBoxLinked.aspx[/url] 2. [url]http://www.codeproject.com/KB/combobox/multicolumncombo.aspx[/url] | |
Re: Double thread - [url]http://www.daniweb.com/forums/post1145480.html[/url] Thread Closed. | |
Re: Double Thread - [url]http://www.daniweb.com/forums/thread263998.html[/url] @scias23, Do not flood the forum by posting the same question more than once (ie in multiple forums). | |
Re: Read [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]Daniweb [/URL]rules and homework policy [URL="http://www.daniweb.com/forums/announcement61-2.html"]We only give homework help to those who show effort[/URL] if you run into problems and want to ask for help here. | |
Re: [b]>im in new in the vb.net so i need small projects with coding[/b] Learn the vb.net from scratch. You might want to read the [URL="http://www.daniweb.com/forums/announcement58-2.html"]homework[/URL] policy if you run into problems and want to ask for help here. | |
Re: [b]>Does VS2008 have any sort of upscaler for this type of occasion?[/b] No. [b]>If not, why not Microsoft?!!![/b] [URL="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller"]MVC[/URL]. | |
Re: Have a look at article - [url]http://blogs.msdn.com/toub/archive/2006/05/03/589423.aspx[/url] | |
Re: [b]>How to run vb.net application in computer without installing the whole .net framework [/b] You can't run. [b]>What packager/packer program should I use and how do I go about doing it..?[/b] Use [URL="http://en.csharp-online.net/Deploying_Windows_Applications%E2%80%94Prerequisites"]Setup and deployment[/URL] visual studio project template. | |
Re: Hi. [b]>I would like to know the coding behind incrementing a progress bar using a timer.[/b] Handle the Timer event and set Value property of Progressbar control. | |
Re: bsr990. I'm glad you got it helpful. If you want to ask question, start your own thread. Thread Closed. | |
Re: Welcome @i_microsoft. We appreciate your knowledge. Please do not resurrect old/solved thread. Thread Closed. | |
Re: Read this [URL="http://social.msdn.microsoft.com/Forums/en/adonetefx/thread/0d2b6f49-c795-4625-9063-924c386522cb"]FAQ[/URL] and [URL="http://secondstanza.com/2008/08/15/adonet-entity-framework-default-values/"]Article[/URL]. | |
Re: [b]>Restricting a user to save a web page.[/b] [URL="http://stackoverflow.com/questions/615982/how-can-we-restrict-the-user-from-saving-a-web-page"]Don't do it.[/URL] | |
Re: Have a look at codeproject article - [url]http://www.codeproject.com/KB/aspnet/image_asp.aspx[/url] | |
Re: [b]>How can I connect to sql server via network by using vb.net. [/b] You have to set following parts in connectionstring. [code] str="Data Source=ipaddress; Initial Catalog=database_name; User Id=username; Password=password" [/code] | |
Re: reneemacaraeg, I'm glad you got it helpful. If you want to ask question, start your own thread. Thread Closed. | |
Re: [b]>The controls are visible, but they dont work properly on runtime. Controls like "rounded corner", etc just dont show any change on the webpage.[/b] You have to add some sort of graphics files. [b]>What do I need to do?[/b] Read [URL="http://www.asp.net/%28S%28ywiyuluxr3qb2dfva1z5lgeg%29%29/ajax/documentation/"]documentation[/URL]. | |
Re: Sorry! I am unable to read code. I suggest you to use asp.net Menu control. | |
Re: [b]>I m using Turbo C s/w as a compiler[/b] Don't use real real old, and an ancient compiler! I think you might be pleased to read this thread - [url]http://www.daniweb.com/forums/thread262757.html[/url] For more information see: 1. [url]http://www.daniweb.com/forums/showthread.php?t=252858&highlight=Turboc[/url] 2. [url]http://www.daniweb.com/forums/thread140692.html[/url] 3. [url]http://www.daniweb.com/forums/thread202987.html[/url] Please read the [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL] before posting again, in particular the … | |
Re: [b]>Could not load type 'MyForum.MvcApplication'.[/b] Re-open & build an application might solve your problem. | |
Re: [b]>I need to use a DropDownList in my application made in VB.Net where I can select multiple values from the List. [/b] You can't select multiple items from the dropdownlist control. Use ListBox control instead. | |
Re: [b]>.when i tried to use that link for uploading using asp .net web application in localhost the video gets streamed but not displayed.[/b] Might be a problem with uploading of video file or you haven't flv plug-in to play. |
The End.