2,951 Posted Topics
Re: What is that 4 ? You want to print 4 copies at once or Four labels on a single page ? | |
| |
Re: Have you connected to database and fetched the total attendance from database table ? | |
Re: This happens if the project file is copied from a CD where all the files are read only. After copying the files to system from CD check to ensure that the files are not read only (uncheck the read only check box). | |
| |
Re: Simply try using SUM(column_name) using SQL query. | |
Re: What are you trying to do using tab key ? Try setting the KeyPreview property of the form to TRUE. | |
Re: What exactly you want to achieve and what you have done so far ? | |
Re: That is available already in VB 6.0. You only need to change the style property of the listbox form Standard (default) to Checked. | |
Re: Try using looping through all the controls on the form that have font property. | |
Re: You need to check if F1 has already been pressed which pressing F2 key. It is always recommended to avoid using F1 and F10 key. | |
Re: in sql *plus type HOST in the command prompt type exp username/password@databasename then just follow the instructions as prompted | |
Re: Have you tried refreshing the recordset ? Are you commiting after every new insert / update ? | |
Re: You mean to say the remaining text will go to next line or be hidden ? | |
Re: What name ? Name of the file ? or something randomly. | |
Re: You need to handle the Key Down event . Set the KeyPreview property of the form to TRUE. | |
Re: WHAT YOU HAVE TRIED SO FAR ? | |
Re: What exactly is your project about ? You are using VB only or any third party component ? | |
Re: If you want the connection string then find it [URL="http://www.connectionstrings.com"]here[/URL]. | |
Re: Please do not start duplicate threads for the same question. Check your other thread for answer. I have already replied to that. | |
Re: try using this sample code. [code=vb] Private Sub CHKCOLOR_Click(Index As Integer) If CHKCOLOR(Index) Then List1.AddItem CHKCOLOR(Index).Caption Else For L = 0 To (List1.ListCount - 1) If List1.List(L) = CHKCOLOR(Index).Caption Then List1.RemoveItem L End If Next End If End Sub [/code] The code uses control array for the check boxes. | |
Re: How you are saving data. Is it related to database ? | |
Re: Kindly the post the code that you are working on. | |
| |
Re: you need fetch the data from recordset and assign the same to the corresponding text boxes. You need to use index or field name on the recordset. | |
Re: The problem you are facing is not because of this code . You might have specified something else in other parts of the code. | |
Re: From you code i am not at all sure what you want to do. Could you explain a bit. | |
Re: Please refer your other thread for reply. I have already answered your second question there. | |
Re: Can you pass few more details on your exact requirment please. | |
Re: I am bit confused with your logic. Not sure what do you mean by that suspect. | |
Re: I don't know whether i can post name of other sites here or not. You can easily find all that by investing some quality time by web searching. | |
Re: How can you develop a project only in sql server 2000 without using any front end tool. | |
Re: Try find out the number of active connections . Try to use [B]v$session[/B] | |
Re: From your code i am not sure what are you trying to do . And where is the letter P ? | |
Re: From where you want to capture the score ? Are you using any database ? BTW the above code is a procedure not a function. A function must have a return type and must return a value. | |
Re: Simply try to use this sample code . This is the best option. [code=vb] con.begin trans con.execute "update table_name set field_name= text1.text" con.committrrans [/code] | |
Re: Then better change the row width. It is always better to use some reporting tool than controls for reports. | |
Re: Can you mention your exact requirments in details please. | |
Re: There is no sense posting all that code here. Please use code tags . That make the code more readable. | |
Re: Whom do you expect to go through all that code . | |
Re: You can try to make a copy of the original MDB file and that can be used as a backup of actual data. The syntaxes of oracle or mysql will not work here. | |
Re: To run .NET application framework is compulsory. You can easily install the framework using windows live update. | |
Re: If yo want to match for two conditions then you have to specify that in the sql query. | |
Re: I think this is a duplicate thread , and your question has already been replied in your other thread. | |
Re: if you want to save the data then no need to open the record set at all. Try using this sample code [code=vb] 'con is the adodb connection object con.BeginTrans con.execute "your insert or update statement here." con.CommitTrans [/code] | |
Re: You simply need to enable and disable the timer. | |
Re: Can you kindly post the code that you are working on for reference of our experts. | |
Re: Try to register the component with windows using REGSVR32 key before using in project. |
The End.