-
Replied To a Post in Refresh a Form after Delete query is successfully executed VB 2010
1. (sugestion) Move connection close inside "If delete_confirmation = MsgBoxResult.Yes Then" 2. After delete, just clear out your textboxes txt_pid.Clear txt_pname.Clear .... -
Replied To a Post in No Records Found
1. Rename your column name 'order' because ORDER is a reserve words/keyword in sql. 2. Check your date format (Edate = #" & txtEdate.Text & "#") -
Replied To a Post in Not a valid path
how did you create your installer? are you certain that all files are structured correctly?.. have you tried creating your own error handler? so it it will be easy to … -
Replied To a Post in Printer read-only Properties
please post your code so we can check it. -
Replied To a Post in Not a valid path
do not hardcode your database path. Just make your setup structure like this: App.exe (your compiled app) database\db.mdb (your database) Then on your code where you connect to database, you … -
Replied To a Post in error" syntax error in FROM clause" help needed
obviously its an syntax error in your sql. post the code where it breaks so we can help you. -
Replied To a Post in database search
This question has been asked and answered several times already. if you try to use the search bar on this forum, you find the answer to your question. you can … -
Replied To a Post in how to read multiple length barcode in change event
can you tell us what are you planning to do after reading a multiple length barcode?.. If Len(txtMessage.Text) > 4 and Len(txtMessage.Text) < 13 Then txtMessage.SelStart = Len(txtMessage) your code … -
Replied To a Post in How to link List view with Microsoft access using vb6
You can use ADODC control or ADODB reference. -
Replied To a Post in Drop a table starting with ?
Is this purely on SQL or it will be use in VB6? -
Replied To a Post in NEED TO KNOW EDIT, SAVE, DELETE, SEARCH CODES
Heres a sample on how to use filter property. recordset.Filter = "Call_No='" & txtSearch.text & "' OR Book_Name='" & txtSearch.text & "'" you can read more here: [Click Here](http://msdn.microsoft.com/en-us/library/ee275540%28v=bts.10%29.aspx) -
Replied To a Post in INSERT INTO syntax error
how about posting the error?.. -
Replied To a Post in how we can use get setting and save setting in vb 6.0
I use SaveSettings/GetSettings in my program to; Store textbox value - savesettings will save the value of my textbox when user close the form or press save button, so when … -
Replied To a Post in VB6 Lan Connection
1. If you shared your ms access database, it might look something like this; \\192.168.1.1\SERVERPC\MYDB.accdb and NOT \\192.168.1.1\SERVERPC\C:\MYDB.accdb; Try to open \\192.168.1.1\SERVERPC\ and see if the database exist or not. -
Replied To a Post in how we can use api in visual basic 6.0
what kind of api? windows api? rest api? you should give more info when asking questions. -
Replied To a Post in NEED TO KNOW EDIT, SAVE, DELETE, SEARCH CODES
1. Try to use search 2. check this thread: [Click Here](http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/119916/save-edit-delete-vb-6-using-ms-access)
The End.