5,346 Posted Topics

Member Avatar for ans2007kumar
Member Avatar for kvprajapati
0
93
Member Avatar for Shailendra27

[b]>But I can't able to write in the TextBox control.[/b] Be more specific. For input set/embed unicode fonts.

Member Avatar for kvprajapati
0
54
Member Avatar for msomar99

[b]>How to get selected item for DropDownList .And this DropDownList is inside GridView. [/b] Get a reference of DropDownList using FindControl method.

Member Avatar for kvprajapati
0
58
Member Avatar for karanniyan

[b]>Text Editor TextBox in C# Web Application. [/b] JavaScript, XHTML, and css are used to create TextEditor.

Member Avatar for kvprajapati
0
37
Member Avatar for hjbavaliya

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

Member Avatar for kvprajapati
0
35
Member Avatar for Gunnerrific

Read this article - [url]http://webmeistersearch.com/F-VPN-using-PDANet-2234945[/url]

Member Avatar for kvprajapati
0
51
Member Avatar for smbzleon

[code] Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load IF Not IsPostBAck Then 'Populate the first dropdownlist End IF End sub Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles DropDownList1.SelectedIndexChanged 'Write code to populate second DropDownList End Sub Protected Sub DropDownList2_SelectedIndexChanged(ByVal sender As …

Member Avatar for kvprajapati
0
115
Member Avatar for Darkicon

[b]>Object reference not set to an instance of an object.[/b] Use IsNothing() method to check whether an object variable has reference of an object or null.

Member Avatar for kvprajapati
0
143
Member Avatar for bernardb7726
Member Avatar for kvprajapati
0
103
Member Avatar for Smalls
Member Avatar for kvprajapati
0
177
Member Avatar for doomfrawen

[code] DataTable dt = new DataTable(); SqlDataAdapter da = new SqlDataAdapter(comm); da.Fill(dt); lstData.DataContext = dt; [/code]

Member Avatar for doomfrawen
0
2K
Member Avatar for DaveTran

Overrides GetHashCode, and Equals. [code] class foo { int age; string name; public override int GetHashCode() { return age; } public override bool Equals(object obj) { return GetHashCode() == obj.GetHashCode(); } } [/code]

Member Avatar for apegram
0
984
Member Avatar for elmod

Welcome elmod. We strongly encourage all posts to be in full-sentence English. Read member rules - [url]http://www.daniweb.com/forums/faq.php?faq=daniweb_policies[/url]

Member Avatar for PierlucSS
-1
107
Member Avatar for phoenix911

ClickOnce Deployment. - [url]http://msdn.microsoft.com/en-us/library/t71a733d%28VS.80%29.aspx[/url] - [url]http://www.codeproject.com/KB/install/QuickClickOnceArticle.aspx[/url]

Member Avatar for phoenix911
0
230
Member Avatar for Cap'nKirk
Member Avatar for csfriends

[b]>can any one tell us whether it is possible to send e-mails without smtp server..?[/b] [URL="http://mail.google.com/support/bin/topic.py?topic=12769"]Google.[/URL]

Member Avatar for DrkNite
1
73
Member Avatar for bent_al3z4114

Don't spam the board please. Please read the rules before posting again, in particular the 'keep it organized' one : 1. Do not post homework problems expecting a quick answer without showing any effort yourself. This especially pertains to the software development forums. 2. Do not post threads with generic …

Member Avatar for Nick Evan
-4
106
Member Avatar for cutieann12

Please do not resurrect old threads. If you have any questions please ask. .... You are welcome to start your own threads. Please read the rules before posting again - [url]http://www.daniweb.com/forums/thread78223.html[/url] and [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. Thread Closed.

Member Avatar for kvprajapati
0
1K
Member Avatar for jellybeannn

Have a look at tutorial - [url]http://teethgrinder.co.uk/open-flash-chart/tutorial.php[/url]

Member Avatar for kvprajapati
0
78
Member Avatar for jellybeannn

[b]>Does anyone know of an easy way to make a line graph from a datatable[/b] Reporting tools - Crystal / Microsoft report. Microsoft Chart - [url]http://www.microsoft.com/downloads/details.aspx?FamilyId=130F7986-BF49-4FE5-9CA8-910AE6EA442C&displaylang=en[/url]

Member Avatar for kvprajapati
0
69
Member Avatar for hyephp

By adding [B]inline[/B] header. [code] .... Response.AddHeader("Content-Type","application/ms-word"); .... Response.AddHeader("Content-Disposition","inline;filename=file.doc"); [/code]

Member Avatar for dnanetwork
0
89
Member Avatar for fredted40x

[b]>This works fine but it just shows the form name and class name.[/b] Override ToString() method of Customer class. [code] public class Customer { public int ID { get; set; } public string Name { get; set; } public override string ToString() { return Name; } } [/code] [code] List<Customer> …

Member Avatar for fredted40x
0
134
Member Avatar for user1980

JavaScript method for Custom validation must be, [code] function TestExample(sender,args) { if(args.Value!="A") { //Invalid args.IsValid=false; } } [/code]

Member Avatar for kvprajapati
0
178
Member Avatar for blazted

Welcome shyamnsankar. Please do not resurrect old/solved threads. If you want to ask question, start your own thread. Please read the rules before posting again - [url]http://www.daniweb.com/forums/thread78223.html[/url] and [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. Thread Closed.

Member Avatar for kvprajapati
0
113
Member Avatar for Teachme
Member Avatar for Lee21
Member Avatar for Lee21
0
124
Member Avatar for Dhammakirty
Member Avatar for kvprajapati
0
61
Member Avatar for ecrockers

Articles: 1. [url]http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx[/url] 2. [url]http://msdn.microsoft.com/en-us/library/z1hkazw7.aspx[/url]

Member Avatar for ecrockers
0
106
Member Avatar for complete
Member Avatar for realnsleo

@lotfiberrada Please do not resurrect old/solved threads. If you have any questions please ask. .... You are welcome to start your own threads. Have a look at forum [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. Please read before posting - [url]http://www.daniweb.com/forums/thread78223.html[/url] Thread Closed.

Member Avatar for kvprajapati
0
209
Member Avatar for toocoded

[code] MultiView1.ActiveViewIndex = RadioButtonList1.SelectedIndex; [/code] or [code] int n; int.TryParse(RadioButtonList1.SelectedValue,out n); MultiView1.ActiveViewIndex = n; [/code]

Member Avatar for kvprajapati
0
171
Member Avatar for dwayned
Member Avatar for JLB2386

[b]>i can get some help on writing a definition on my getdatafromnumber? [/b] Show us [B]GetSchedule[/B] class code.

Member Avatar for JLB2386
1
106
Member Avatar for lisles

[b]>open pdf within iframe in contentplaceholder[/b] Nope. You can't do that. The [B]ContentPlaceHoder[/B] control reserves the area for content pages so the content pages can add page specific content. Add a content page and put [B]Iframe[/B] in it.

Member Avatar for kvprajapati
0
917
Member Avatar for krishnisilva

[b]>hey where can i get the calender editing control in the tool bar[/b] You can edit it by writing code.

Member Avatar for kvprajapati
-1
82
Member Avatar for bversiga
Member Avatar for ans2007kumar

[b]>user do not access the content then the Default page do not show any images in the login page[/b] Use [B][URL="http://msdn.microsoft.com/en-us/library/b6x6shw7%28VS.71%29.aspx"]location[/URL][/B] element. [code] <location path="Images"> <system.web> <authorization> <allow users="?"/> </authorization> </system.web> </location> [/code]

Member Avatar for ans2007kumar
0
81
Member Avatar for bravo659

[b]>but how can I make the textbox to open with the childform?[/b] Set Doc property of TextBox. [code] textBox1.Dock = System.Windows.Forms.DockStyle.Fill; [/code]

Member Avatar for bravo659
0
125
Member Avatar for Srinitodanni
Re: Help

Have a look at - [url]http://www.outlookcode.com/article.aspx?id=23[/url] and [url]http://www.outlookcode.com/article.aspx?id=25[/url]

Member Avatar for kvprajapati
0
78
Member Avatar for phabion

Have a look at - [url]http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008[/url]

Member Avatar for kvprajapati
0
66
Member Avatar for krishnisilva

[b]>in VS 2008 standard edition, in this it doesn't have crystal reports[/b] You have to upgrade - Visual Studio 2008 Professional.

Member Avatar for kvprajapati
0
47
Member Avatar for Mattan360
Member Avatar for RupaliMagar

Have a look at codeproject articles : 1. [url]http://www.codeproject.com/KB/cs/c__and_api.aspx[/url] 2. [url]http://www.codeproject.com/KB/cs/InterOp.aspx[/url]

Member Avatar for kvprajapati
0
68
Member Avatar for akira_shinizaki

@pouyan_objc Do not resurrect old/solved thread. If you want to ask question, start your own thread. Read member rules : [url]http://www.daniweb.com/forums/faq.php?faq=daniweb_policies[/url] Thread Closed.

Member Avatar for kvprajapati
0
265
Member Avatar for Lee21

[b]>Filter my Datatable through combobox [/b] Call [B]ref()[/B] method in the handler of SelectedIndexChanged event of ComboBox.

Member Avatar for Lee21
0
207
Member Avatar for «¤¦PR☼GRAM¦¤»
Member Avatar for «¤¦PR☼GRAM¦¤»
0
150
Member Avatar for Joelles

[b]>I recently started programming in c# and I was wondering: How am I able to create a "builder program"?[/b] Good thinking. You need more practices. I am sure you will be a good programmer.

Member Avatar for Joelles
0
123
Member Avatar for danieldot

Please read this article - [url]http://www.codeproject.com/KB/IP/mycodefaraz.aspx[/url]

Member Avatar for powerbox
0
76
Member Avatar for Moemasri
Member Avatar for emaduddeen
Member Avatar for emaduddeen
0
174

The End.