5,346 Posted Topics
Re: [code] if(Request.Cookies["key"]==null) { } else { } [/code] | |
Re: [b]>But I can't able to write in the TextBox control.[/b] Be more specific. For input set/embed unicode fonts. | |
Re: [b]>How to get selected item for DropDownList .And this DropDownList is inside GridView. [/b] Get a reference of DropDownList using FindControl method. | |
Re: [b]>Text Editor TextBox in C# Web Application. [/b] JavaScript, XHTML, and css are used to create TextEditor. | |
Re: Have a look at MSDN article - [url]http://msdn.microsoft.com/en-us/library/ms972974.aspx[/url] | |
Re: Read this article - [url]http://webmeistersearch.com/F-VPN-using-PDANet-2234945[/url] | |
Re: [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 … | |
Re: [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. | |
Re: Have a look at - [url]http://fbexport.sourceforge.net/[/url] | |
Re: Read this artile - [url]http://www.codeproject.com/KB/cs/globalhook.aspx[/url] | |
Re: [code] DataTable dt = new DataTable(); SqlDataAdapter da = new SqlDataAdapter(comm); da.Fill(dt); lstData.DataContext = dt; [/code] | |
Re: 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] | |
Re: 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] | |
Re: 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] | |
| |
Re: [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] | |
Re: 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 … | |
Re: 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. | |
Re: Have a look at tutorial - [url]http://teethgrinder.co.uk/open-flash-chart/tutorial.php[/url] | |
Re: [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] | |
Re: By adding [B]inline[/B] header. [code] .... Response.AddHeader("Content-Type","application/ms-word"); .... Response.AddHeader("Content-Disposition","inline;filename=file.doc"); [/code] | |
Re: [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> … | |
Re: JavaScript method for Custom validation must be, [code] function TestExample(sender,args) { if(args.Value!="A") { //Invalid args.IsValid=false; } } [/code] | |
Re: 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. | |
Re: Have you bind a combo? Please show us that code. | |
Re: [b]>Importing an excel file to datagrid then save it to database[/b] Use System.Data.OleDb classes. | |
Re: [b]>So how can i pass that Empid to procedure[/b] Is it typed dataset? | |
Re: 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] | |
Re: Method [B]F[/B] must be private due to its argument. | |
Re: @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. | |
Re: [code] MultiView1.ActiveViewIndex = RadioButtonList1.SelectedIndex; [/code] or [code] int n; int.TryParse(RadioButtonList1.SelectedValue,out n); MultiView1.ActiveViewIndex = n; [/code] | |
Re: Please show us your code work. Our tips will definitely help you. | |
Re: [b]>i can get some help on writing a definition on my getdatafromnumber? [/b] Show us [B]GetSchedule[/B] class code. | |
Re: [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. | |
Re: [b]>hey where can i get the calender editing control in the tool bar[/b] You can edit it by writing code. | |
Re: [b]>Display error on server, how?[/b] No. you can't. | |
Re: [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] | |
Re: [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] | |
Re: 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] | |
Re: Have a look at - [url]http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008[/url] | |
Re: [b]>in VS 2008 standard edition, in this it doesn't have crystal reports[/b] You have to upgrade - Visual Studio 2008 Professional. | |
Re: [b]>Extracting audio from SWF[/b] It cannot be. | |
Re: 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] | |
Re: @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. | |
Re: [b]>Filter my Datatable through combobox [/b] Call [B]ref()[/B] method in the handler of SelectedIndexChanged event of ComboBox. | |
Re: > remove FileExtension filename=System.IO.Path.GetFileNameWithoutExtension(path) | |
Re: [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. | |
Re: Please read this article - [url]http://www.codeproject.com/KB/IP/mycodefaraz.aspx[/url] | |
Re: [code] <embed src="file.ext" /> [/code] | |
Re: [code] Dim frm as New From1 frm.MdiParent=Me 'Reference of MDI Parent frm.Show() [/code] |
The End.