5,346 Posted Topics

Member Avatar for brettbed
Member Avatar for brettbed
0
486
Member Avatar for sciwizeh

Have a look at this [URL="http://stackoverflow.com/questions/2273730/java-images-with-alpha-channel-without-using-buffered-image"]thread[/URL].

Member Avatar for kvprajapati
0
355
Member Avatar for Dlomo

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]

Member Avatar for kvprajapati
0
30
Member Avatar for manish_partey

[b]>PDF to HTML Converter[/b] Have a look at - [url]http://www.adobe.com/products/acrobat/access_onlinetools.html[/url]

Member Avatar for Ramesh S
0
79
Member Avatar for zinnqu

[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.

Member Avatar for zinnqu
0
170
Member Avatar for arelius

[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?

Member Avatar for kvprajapati
0
143
Member Avatar for mikecole79

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].

Member Avatar for kvprajapati
0
267
Member Avatar for sedalnas

[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]

Member Avatar for kvprajapati
0
45
Member Avatar for arelius

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]

Member Avatar for arelius
0
74
Member Avatar for Archana.K

[b]>Kindly help to clear the values of textboxes when the page is loaded.[/b] [code] TextBox1.Text=String.Empty; ... [/code]

Member Avatar for YanivC
0
190
Member Avatar for CygnetInfo

[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.

Member Avatar for rapture
0
201
Member Avatar for mrbool.newguy

Tutorials: 1. [url]http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx[/url] 2. [url]https://www.hibernate.org/363.html[/url]

Member Avatar for YanivC
0
76
Member Avatar for giahmed

[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]

Member Avatar for giahmed
0
106
Member Avatar for Taariq

Have a look at this thread - [url]http://www.daniweb.com/forums/post1136185.html#post1136185[/url]

Member Avatar for kvprajapati
0
94
Member Avatar for rcook

[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.

Member Avatar for rcook
0
286
Member Avatar for kiranbvsn

[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]

Member Avatar for kiranbvsn
0
120
Member Avatar for bigtreeworld

Take a look at Scott Hanselman's blog - [url]http://www.hanselman.com/blog/TheWeeklySourceCode37GeolocationGeotargetingReverseIPAddressLookupInASPNETMVCMadeEasy.aspx[/url]

Member Avatar for pauldani
0
265
Member Avatar for amit3119

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.

Member Avatar for pauldani
0
1K
Member Avatar for nverma
Re: mvc

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].

Member Avatar for kvprajapati
0
59
Member Avatar for sanz

[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]

Member Avatar for pauldani
1
1K
Member Avatar for shivnath

[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].

Member Avatar for musthafa.aj
1
281
Member Avatar for mtsaad

[b]>a messagebox appear that show user-defined type not defined[/b] Please be more specific about your problem. Post error message (trace).

Member Avatar for kvprajapati
0
109
Member Avatar for aravindgm_mohan

Take a look at - [url]http://www.iphonestalk.com/tip-how-to-get-sms-delivery-reports-on-an-iphone/[/url]

Member Avatar for kvprajapati
0
53
Member Avatar for jallan2010

[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.

Member Avatar for kvprajapati
0
119
Member Avatar for t.k.sanjay
Member Avatar for kvprajapati
0
31
Member Avatar for coollife
Member Avatar for kvprajapati
0
56
Member Avatar for clone4

Please verify the [B]name[/B] of dataitem. [code] <%# DataBinder.Eval(Container.DataItem, "[COLOR="Red"]name[/COLOR]").ToString().Replace("&","&amp;") %> [/code]

Member Avatar for kvprajapati
0
49
Member Avatar for priyadharshini.

Have a look at MSDN article - [url]http://msdn.microsoft.com/en-us/library/ms178335.aspx[/url]

Member Avatar for kvprajapati
0
31
Member Avatar for thegreymatter

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]

Member Avatar for kvprajapati
0
175
Member Avatar for scias23
Member Avatar for kvprajapati
0
1K
Member Avatar for scias23

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).

Member Avatar for kvprajapati
0
525
Member Avatar for anjumparveen

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.

Member Avatar for kvprajapati
0
38
Member Avatar for tvnaga

[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.

Member Avatar for kvprajapati
0
34
Member Avatar for jonnod123

[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].

Member Avatar for MattBerry
0
135
Member Avatar for ooandioo

Have a look at article - [url]http://blogs.msdn.com/toub/archive/2006/05/03/589423.aspx[/url]

Member Avatar for Ravenheart
0
1K
Member Avatar for mrnobody

[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.

Member Avatar for mrnobody
0
1K
Member Avatar for avinash_545

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.

Member Avatar for avinash_545
0
483
Member Avatar for ghanathe

bsr990. I'm glad you got it helpful. If you want to ask question, start your own thread. Thread Closed.

Member Avatar for kvprajapati
0
6K
Member Avatar for jonnod123

Welcome @i_microsoft. We appreciate your knowledge. Please do not resurrect old/solved thread. Thread Closed.

Member Avatar for kvprajapati
0
184
Member Avatar for tig2810

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].

Member Avatar for tig2810
0
200
Member Avatar for ma.ali786

[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]

Member Avatar for apegram
0
151
Member Avatar for jasystweb

Have a look at codeproject article - [url]http://www.codeproject.com/KB/aspnet/image_asp.aspx[/url]

Member Avatar for jasystweb
0
280
Member Avatar for rotana

[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]

Member Avatar for TomW
0
99
Member Avatar for geetajlo

reneemacaraeg, I'm glad you got it helpful. If you want to ask question, start your own thread. Thread Closed.

Member Avatar for kvprajapati
0
8K
Member Avatar for dhavalcoholic

[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].

Member Avatar for boonfoo
0
176
Member Avatar for c_rob
Member Avatar for c_rob
0
587
Member Avatar for akshay25088

[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 …

Member Avatar for kvprajapati
0
139
Member Avatar for sumangala

[b]>Could not load type 'MyForum.MvcApplication'.[/b] Re-open & build an application might solve your problem.

Member Avatar for kvprajapati
0
85
Member Avatar for vvashishta

[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.

Member Avatar for vvashishta
0
150
Member Avatar for madhan334

[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.

Member Avatar for kvprajapati
0
78

The End.