5,346 Posted Topics
Re: Please verify the type and name of parameters using property window. | |
Re: Please do not resurrect old 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]. | |
Re: [b]>content at arbitrary coordinate on paper but i don't know.[/b] Create four parameters, place them on different sections. [code] sample1.Section2.ReportObjects["param_name"].Left = 1; sample1.Section2.ReportObjects["param_name"].Top = 1; sample1.SetParameterValue("param_name", "put_value"); ... [/code] | |
Re: References of these DLL are added when you select a project template other than Empty project. [b]>Are the following references required for VS 2008 users as well[/b] Depends upon the usage of classes. | |
Re: Read 1. [url]http://en.wikipedia.org/wiki/Recursion[/url] 2. [url]http://en.wikipedia.org/wiki/Recursion_%28computer_science%29[/url] | |
Re: @ACW1989 Please do not resurrect old threads. If you have any questions please ask. .... You are welcome to start your own threads. Thread Closed. | |
Re: [code] dgvDAction.DataSource = ds.Tables["Action"]; [/code] | |
Re: [code] int PrinterPort = Convert.ToInt32(m_portBase.ToString(), 2); [/code] | |
Re: Please do not resurrect old threads. If you have any questions please ask. .... You are welcome to start your own threads. Thread Closed. | |
Re: Create an instance of Form and invoke Show() method. [code] Form2 frm=new Form2(); frm.Show(); [/code] | |
Re: Read this article - [url]http://www.codeproject.com/KB/aspnet/DrillThroughReport.aspx[/url] | |
Re: Use [B]CellValidating[/B] and [B]CellValidated[/B] events. | |
Re: Set authorization element in web.config. [code] <authorization> <deny user="?"/> </authorization> [/code] | |
Re: [URL="http://www.codeproject.com/kb/dll/keyboardhook.aspx"]Keyboard [/URL]hooks. | |
Re: Please have a look at these articles : 1. [url]http://www.codeproject.com/KB/aspnet/TableBlueSorter.aspx[/url] 2. [url]http://www.dotnetcurry.com/ShowArticle.aspx?ID=259[/url] | |
Re: [b]>it is possible to join the columns from Table2 in Table1 ?[/b] [URL="http://en.wikipedia.org/wiki/Join_%28SQL%29"]Joins[/URL] | |
Re: [b]>news1.aspx page and there in repeater it will show the News_Title and News_content[/b] Write code in Page_load handler that fetch rows from the table based upon given news_id. | |
Re: Please do not resurrect old 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: [code] .Add(IIf(IsDBNull(MyReader.Item(3)), "N/A", MyReader.Item(3))) [/code] | |
Re: [b]>i'm trying to call an external .vb file class function[/b] This assembly must be a DLL. Add the reference of that DLL and then after you can use classes. | |
Re: Welcome sandeep9808. 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: [b]>but the data from from1 cannot get to form2[/b] You have to write public methods to pass data between form instances. | |
Re: Split() method return an array of string. [code] Dim w() as string = s.Split(" ") [/code] | |
Re: Open app.config and change [B]AttachDbFilename[/B] attribute value with absolute path of .mdb | |
Re: Use System.Diagnostics.[URL="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx"]Process [/URL]class. | |
Re: [b]>Controls added to asp:panel not persisting on PostBack [/b] And that is the main reason that one should have to use page_load or page_init event to add controls dynamically. | |
Re: Have a look, [code] Dim dt As New DataTable dt.Columns.Add("No", GetType(Integer)) dt.Columns.Add("Name") dt.PrimaryKey = New DataColumn() {dt.Columns(0)} [/code] | |
Re: Read MSDN article - [url]http://msdn.microsoft.com/en-us/library/ms178329.aspx[/url] | |
Re: Read following articles: 1. [url]http://www.codeproject.com/KB/vb/splforms.aspx[/url] 2. [url]http://stackoverflow.com/questions/667625/c-windows-forms-theme-support[/url] 3. [url]http://msdn.microsoft.com/en-us/magazine/cc300492.aspx[/url] | |
Re: [b]>i want to call a method from ITest2[/b] [code] ITest2 a=new test(); a.Show(); [/code] | |
Re: Take a look [URL="http://lmgtfy.com/?q=online national polling"]at[/URL]. | |
Re: Read this article - [url]http://en.serialcoder.net/FAQ/windowsforms20/615/626/DataGridView/How+do+I+disable+a+cell.aspx[/url] | |
Re: Use [URL="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx"]psExec[/URL]. | |
Re: [b]>how can i do this[/b] Using ADO.NET class library. | |
Re: Set True value to AutoPostback property of TextBox1. TextChanged event will be raised when a control leaves the focus. | |
Re: That's why it is called [B][URL="http://en.wikipedia.org/wiki/Multiple_document_interface"]MDIParent[/URL][/B]. | |
Re: Use [B]document.createElement()[/B] method. | |
Re: Set cell's background and foreground properties. | |
Re: You can't use intrinsic page (asp.net) object in your win app. | |
Re: [b]>How will create an array of checkbox[/b] [code] Dim ChArray(3) as CheckBox 'Assign reference of each checkbox ChArray(0)=CheckBox1 ChArray(1)=CheckBox2 ChArray(2)=CheckBox3 ChArray(3)=CheckBox4 [/code] | |
Re: Pass that dataSource (temp.table) to the crystalreport document. | |
Re: Can you maybe provide some more information? Please elaborate your point about Valued, Attribute names, and values pair. Showing your code might help. | |
Re: Please do not resurrect old threads. If you have any questions please ask. .... You are welcome to start your own threads. Thread Closed. | |
Re: Welcome vijay2040. I'm glad you got it helpful. Please do not resurrect old threads. If you have any questions please ask. .... You are welcome to start your own threads. Thread Closed. | |
Re: Learn/use [B]Office-Interop[/B] API. | |
Re: [code=Text] SELECT Count(*) from TableName [/code] | |
Re: Take a look at - [url]http://msdn.microsoft.com/en-us/vstudio/default.aspx[/url] |
The End.