Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #2K
~6K People Reached
Favorite Forums
Favorite Tags

20 Posted Topics

Member Avatar for bantex07

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 …

Member Avatar for tahir zafar
0
2K
Member Avatar for xtianenikkian

i need to now how i can answer "yes" or "no" automatically when excel asks to save to clipboard.

Member Avatar for xtianenikkian
0
55
Member Avatar for wilson sweet

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

Member Avatar for Netcode
0
83
Member Avatar for Muhasin

well you can use the function uppercase Ucase() and lowercase Lcase() but its better if you will show the code

Member Avatar for Netcode
0
104
Member Avatar for bantex07

im using this to txtSearch_change() event Adodc1.RecordSource = "Select * from myTable where myField like '%" + txtSearch.Text + "%'" Adodc1.Refresh

Member Avatar for bantex07
0
116
Member Avatar for xtianenikkian

Is there any code to create or generate bar codes in vb6? Please help me, advance thank you for all that will respond :)

Member Avatar for xtianenikkian
0
82
Member Avatar for xtianenikkian

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

Member Avatar for xtianenikkian
0
142
Member Avatar for Luvme

if you want just print the form put this code into a commandbutton yourform.print it will print the exact form

Member Avatar for xtianenikkian
0
77
Member Avatar for wouterkind

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 …

Member Avatar for wouterkind
-1
135
Member Avatar for xtianenikkian

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

Member Avatar for xtianenikkian
0
119
Member Avatar for Muhasin
Member Avatar for xtianenikkian
0
97
Member Avatar for michael.pilapil

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 …

Member Avatar for xtianenikkian
0
377
Member Avatar for xtianenikkian

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 …

Member Avatar for debasisdas
0
78
Member Avatar for xtianenikkian

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 …

Member Avatar for AndreRet
2
112
Member Avatar for xtianenikkian

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 …

Member Avatar for AndreRet
0
1K
Member Avatar for xtianenikkian

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 = …

Member Avatar for xtianenikkian
0
220
Member Avatar for cavern

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 …

Member Avatar for cavern
0
206
Member Avatar for xtianenikkian

[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 …

Member Avatar for AndreRet
0
135
Member Avatar for xtianenikkian

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 …

Member Avatar for AndreRet
0
262
Member Avatar for sakura_fujin

the one you create has 100 error on my jcreator.,, im uusng jdk1.5.0_16 file.,,, can you reply me with running program?

Member Avatar for Ezzaral
0
212

The End.