- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
20 Posted Topics
Re: Mr debasisdas is right about the bar code reader, its just like a ordinary input you will need to focus the insertion point or mouse pointer to the textbox in able to input the code that will be scanned by the bar code, about the search just use the SQL … | |
i need to now how i can answer "yes" or "no" automatically when excel asks to save to clipboard. | |
Re: if you want to have a simple username and password use static username/password txtpassword = yourpassword txtusername = youusername if any one of that didn't match the value in the textbox, its error or your fail to log in somehow like that | |
Re: well you can use the function uppercase Ucase() and lowercase Lcase() but its better if you will show the code | |
Re: im using this to txtSearch_change() event Adodc1.RecordSource = "Select * from myTable where myField like '%" + txtSearch.Text + "%'" Adodc1.Refresh | |
Is there any code to create or generate bar codes in vb6? Please help me, advance thank you for all that will respond :) | |
Good day guys, im just wondering if there is a notes, functions or code related to print, i just want to come up with a good hardcopy of the information every time the employer request it. my source is adodc1 or datagrid | |
Re: if you want just print the form put this code into a commandbutton yourform.print it will print the exact form | |
Re: if your using adodc and datagrid for the connection this may help Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source = " & App.Path & "\database.mdb; Persist Security Info=False; Jet OLEDB:Database Password=PASSWORD" Adodc1.RecordSource = "Select * from log" Set DataGrid1.DataSource = Adodc1 Adodc1.Refresh replace the capitalize PASSWORD with the password of your database … | |
Im currently working now into a monitoring system Adodc2.Recordset.AddNew Adodc2.Recordset!employeeNumber = txtNumber.Text Adodc2.Recordset.update now i've noticed that after i input a value and save it. it goes to the bottom of the datagrid, how can i add value in the top of the datagrid? Thanks for the reply in advance | |
Re: or also try adodb.refresh after you execute a SQL code in the datagrid | |
Re: If you prefer connecting database using adodc and datagrid, this would help Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\database.mdb;Persist Security Info=False" Adodc1.RecordSource = "Select * from table" Set DataGrid1.DataSource = Adodc1 Adodc1.Refresh database.mdb = name of your database "you database should be save in the same folder with the … | |
Hello guys, i need a help regarding retrieving data in array here is the problem we are asked to get id number, name and section and put it in a array and then if we clicked retrieve button it will prompt an inputbox requesting for the id number of students … | |
Good day, I have a system and it has a studentdatabase.mdb database, ive putted password into the .mdb file and now when I run the .exe file of my vb6 program it says Not a valid password, Question: How can I automatically put the password of the .mdb file when … | |
For example i have the following fields in the database name, student number, course then i have multiple data in the database e.g. 25rows = 25 students when i try to edit them, you need to first click the row in the datagrid that you want to edit then ive … | |
i have a student maintenance form in my program im using this code to update the database Adodc1.Recordset.Update Adodc1.Recordset!StudName = txtStudName.Text Adodc1.Recordset!StudId = txtStudId.Text Adodc1.Recordset!Course = cboCourse.Text Adodc1.Recordset!Section = cboSection.Text Adodc1.Recordset!first_day = cbo1day.Text Adodc1.Recordset!FDlogin = cbo1.Text Adodc1.Recordset!FDlogout = cbo11.Text Adodc1.Recordset!second_day = cbo2day.Text Adodc1.Recordset!SDlogin = cbo2.Text Adodc1.Recordset!SDlogout = cbo22.Text Adodc1.Recordset!third_day = … | |
Re: well you can add if txtDate.text = "" or cmbtitle.text = "" or txtName.text = "" or txtIc.text = "" or txtEmail.text = "" or txtPhone.text = "" or txtAddress.text = "" or txtAddress1.text = "" or txtResidential.text = "" or cmbGender.text = "" or cmbNumber.text = "" or txtRental.text … | |
[CODE]Dim MyTime As Date, DataTime As Date MyTime = Format(Now, "hh:mm:ss") DataTime = 'Get the time from your database here If MyTime > DataTime Then ' Code to Open Door Else Code To Close Door End IF[/CODE] im having a hard time with SQL, please help with the codes of … | |
Good day to all, Im creating a computer laboratory admission system, and one of the functions of my program using a bar code reader, this how the system runs, assuming that mr. villa has the bar code and the code is 00123456789 then after you scanned it, it will look … | |
![]() | Re: the one you create has 100 error on my jcreator.,, im uusng jdk1.5.0_16 file.,,, can you reply me with running program? |
The End.