5,346 Posted Topics
Re: Wake up buddy! Don't ask trivial questions. Please read forum rules. | |
Re: [b]>How to Close / Off Title Bar [/b] Set FormBorderStyle=None | |
Re: [b]>how to save the text in textpane with font styles[/b] Have a look at [URL="http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html"]tutorial[/URL]. | |
Re: Have a look at - [url]http://code.msdn.microsoft.com/mschart/Thread/List.aspx?ViewAll=true[/url] | |
Re: [b]>Please provide help in searching open source/ sample code to defragment windows.[/b] [URL="http://sourceforge.net/search/?type_of_search=soft&words=Windows+Registry"]OK.[/URL] | |
Re: Use RichTextBox1.Text.IndexOf Method. | |
Re: Please read before posting - [url]http://www.daniweb.com/forums/thread78223.html[/url] | |
Re: [b]>Auto log on and web form fill[/b] Use WebControl. | |
Re: [b]>Is there any way to do this?[/b] Sure. Use System.IO classes. | |
Re: [b]>How can it be that ClickOnce lets you choose online-only? Does it temporarily install the EXE on the users computer?[/b] Have a look at msdn articles. 1. [url]http://msdn.microsoft.com/en-us/library/wh45kb66.aspx[/url] 2. [url]http://msdn.microsoft.com/en-us/library/142dbbz4.aspx[/url] 3. [url]http://msdn.microsoft.com/en-us/library/t71a733d.aspx[/url] | |
Re: Change commandtext. [code] OleDbInsertCommand1.CommandText = "INSERT INTO Admin (Employee_Forename, Employee_Surname, Admin_Username, Admin_Password) VALUES (@p1,@p2,@p3,@p4)" OleDbInsertCommand1.Connection = Me.OleDbConnection1 OleDbInsertCommand1.Parameters.AddWithValue("@p1",Employee_ForenameTextBox.Text) OleDbInsertCommand1.Parameters.AddWithValue("@p2", Employee_SurnameTextBox.Text) OleDbInsertCommand1.Parameters.AddWithValue("@p3", Admin_UsernameTextBox.Text) OleDbInsertCommand1.Parameters.AddWithValue("@p4", Admin_PasswordTextBox.Text) .... [/code] | |
Re: [b]>pls do help me i hav oly limited time[/b] Please spare time to read forum rules. | |
Re: Call the Read() method. [code] ... if (dr.Read()) { MessageBox.Show("UserID Already Assigned"); dr.Close(); Chidzima(); } .... [/code] | |
Re: Use Drive and Path property. [code] ObjectQuery qry = new ObjectQuery(@"select * from CIM_DATAFILE Where Drive='C:' AND Path='\\windows\'"); ManagementObjectSearcher search=new ManagementObjectSearcher(scope,qry); scope.Connect(); .... [/code] | |
Re: [b]>What would be the Right Answer?[/b] Please read - [url]http://msdn.microsoft.com/en-us/library/ms998358.aspx[/url] | |
Re: 1. Create seven files - Mon, Tue, and so on. 2. Use File.Open(DateTime.Now.ToString("ddd")) to open a file. | |
Re: [b]>A crappy way I found is to use MS Word.[/b] That is the only way. | |
Re: request.getParameter(param) method must be called to read [b]value[/b] parameter. | |
Re: [b]>how to crete flash in vb.net 2008[/b] You can't create flash in VB.NET. Take a look at post #3 to play flash movie (object). | |
Re: [b]>A generic error occurred in GDI+.[/b] Are you saving a bitmap or something like that? | |
Re: [b]>I modify the data source and add one empty row at the beginning,this is to provide a quick search,user can click on a cell and filter the datagridview.[/b] Your way to filter is not good. You have to use extra textboxes. | |
Re: [b]>how can i achieve this , any help will be appreciated[/b] 1. Create VB.NET project. 2. Import System.Net, System.Data.XXXX, and Threading namespaces. 3. Create a Listener. (Please read MSDN pages about TcpListner). | |
Re: [b]>plz give me syntax how to create procedure in SQL[/b] Purchase and read PL-SQL books. Have a look at this MSDN article - [url]http://msdn.microsoft.com/en-us/library/ms190782%28SQL.90%29.aspx[/url] | |
Re: You need to declare Two-Dim bool array (say 3 x 4). | |
Re: [b]>My problem is that if two files are dropped in the C:\ folder at the same time, my code only deals with one of the files.[/b] Don't worry. Deleted event will be fire twice. Check the properties of and object of FileSystemEventArgs class in Deleted event. | |
Re: Welcome. I can't see any word other than help. Please read the rules [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]before posting again[/URL], in particular the 'keep it organized' one - subject titles such as 'help urgent' are not allowed. If you hit 10 infraction points your account gets an automatic ban, so it is worth obeying … | |
Re: [b]>i have a datalist,i want an add button at the end of each row,clicking wich should result in a new blank row [/b] Add button into ItemTemplate. | |
Re: [b]>I have a problem trying to copy 3 fields on a form to a database. [/b] Please elaborate on your question. I think you want to insert a row into a table. | |
Re: [b]>dataset.Code is running,but not save the record in datase. I had use same code vb.net,it works. [/b] Your code has big problem. First of all, use System.Data.Oledb namespace classes with Ms-Access database. No need to use Dataset in your code to save/insert a row. [code] OleDbConnection cn=new OleDbConnection(cnstring); OleDbCommand cmd=new … | |
Re: [b]>Merging DataTables with different Columns[/b] Not a built-in feature. You have to use SQL-Joins that fetch data from diff. tables. | |
Re: [b]>i have tried many things but doesnt seems working. pls help me. [/b] Microsoft Report or Crystal report should be used. | |
Re: [b]>think that I messes up smthg and it's showing me average = 0. Can any correct it for me [/b] ByRef arguments/parameters for marks are needed. [code] Private Sub GetMarks(ByRef student As String, ByRef exam1 As Integer, ByRef exam2 As Integer, ByRef exam3 As Integer) student = txtName.Text Integer.TryParse(txtExam1.Text, exam1) … | |
Re: [B]DocumentText[/B] Property. [code] TextBox1.Text = WebBrowser1.DocumentText [/code] | |
Re: [b]>can i embed a ppt in an aspx page[/b] Yes. [b]>withoud allowing it to be downloaded,saved[/b] Yes. [b]>it should only be viewd[/b] Yes. | |
Re: [b]>Is it appropriate to store all the messages (Emails) in Sql server or is there some other way?[/b] SQL server is good option. | |
Re: No use of loop here. Regarding to your question 1 and 2, please read your textboox or MSDN "FormView" topic. | |
Re: Use DateTime.TryParseExact method. [code] DateTime date; string[] format = { "dd/MM/yyyy", "dd-MM-yyyy" }; string dateinddmmyyyy = "31/12/2003"; DateTime.TryParseExact(dateinddmmyyyy, format, null, System.Globalization.DateTimeStyles.None, out date); [/code] | |
Re: [b]>How do I publish to my site that requires a password for FTP?[/b] You need to forward your credentials for FTP to publish a website. | |
Re: [b]>what could be the problem help me [/b] MS-SQL server is not installed or might be not started. | |
Re: [b]>please give me any website address[/b] Contact web hosting provider nearest in your area and ask for domain-name and web-hosting. | |
Re: [b]>anyone can provide list of blogs powered by asp.net? [/b] Google it. | |
Re: [b]>When I do this all the parent nodes are not being displayed properly.[/b] To display xml content at browser embed xml markup with pre tag. [code] Response.Write("<pre>"); .... Response.Write("</pre>"); [/code] | |
Re: Welcome. [b]>i need it for auto complete functionality[/b] Use AutoCompleteSource, AutoCompleteMode, and AutoCompleteCustomsource propertis of TextBox. | |
Re: [b]>I hope that you understand what i want to say and i really hope that somebody can help me with it.[/b] Yes. Showing your code might help. | |
Re: [b]>Is it possible that this is not working because I am using the compact framwework? [/b] That is not problem with CF. File.Delete() will not throws an exception event if the specified file does not exist. | |
Re: [b]>I have one sample code.[/b] I guess, it is a text. [b]>if i submit that code it should search on web and display the website url where that code exists.[/b] Use Bing or Google API. | |
Re: [code] SELECT tblRequests.*, tblMaintags.* FROM tblMaintags INNER JOIN tblRequests ON tblMaintags.Tag_Request_No=tblRequests.Tag_request_no WHERE tblRequests.Accepted=true and tblMaintags.Completed=false; [/code] | |
Re: [b]>i need a screen short for vb.net sql sever connection [/b] Press PrintScreen. | |
Re: Steps: 1. Add lines into the List (collection framework) 2. Get line at random index 3. Draw a line 4. Remove that line from the list. 5. Go to step 2 till count is >0 | |
Re: [b]>How would i be able to reference to a file in my resources? how would i be able to point to it when i publish my app?[/b] You may use GetManifestResourceStream() method. |
The End.