Posts
 
Reputation
Joined
Last Seen
Ranked #498
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
94% Quality Score
Upvotes Received
20
Posts with Upvotes
16
Upvoting Members
14
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
8 Commented Posts
~58.0K People Reached
About Me

Visit my website @ http://silentprojectsoftwares.com

Interests
Studying...net surfing.. learning..
PC Specs
AMD Athlon II X2 250 @ 3.0 Ghz 4 Gb Ram 512 Mb Integrated Video Card (256 Shared) 320 GB SATA HD
Member Avatar for rasheedraj

1. Rename your column name 'order' because ORDER is a reserve words/keyword in sql. 2. Check your date format (Edate = #" & txtEdate.Text & "#")

Member Avatar for Santanu.Das
0
351
Member Avatar for nadiam

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 ....

Member Avatar for jhai_salvador
0
470
Member Avatar for hefaz

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 can do it like this: `App.path & "\database\db.mdb"` thats it. hope it helps.

Member Avatar for hefaz
1
299
Member Avatar for pstanford
Member Avatar for Brian_15
Member Avatar for jhai_salvador
0
122
Member Avatar for matoo

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 also use GOOGLE to find answer to your question. here are some links that could help you. https://www.daniweb.com/software-development/visual-basic-4-5-6/threads/29709/search-code-in-a-database https://www.daniweb.com/software-development/visual-basic-4-5-6/threads/334183/how-to-create-a-search-command-in-vb6 https://www.daniweb.com/software-development/visual-basic-4-5-6/threads/445719/how-to-search-database-and-display-matching-record-in-vb6-

Member Avatar for matoo
1
340
Member Avatar for dahiya309

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 should accept barcode 5 up to 12 digit

Member Avatar for jhai_salvador
0
162
Member Avatar for PinoyDev
Member Avatar for JACK wizkid
Member Avatar for fourty
Member Avatar for musthu
0
4K
Member Avatar for jhai_salvador

Hi! I don't know where to post this, but since this is vb6 thread i'll just post it here. I need all of your support by voting Visual Basic Classic to be improved. here is the link: [Bring back Classic Visual Basic, an improved version of VB6](http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/3440221-bring-back-classic-visual-basic-an-improved-versi) To vote: Click …

Member Avatar for sten2005
3
244
Member Avatar for zitro10

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)

Member Avatar for jhai_salvador
0
203
Member Avatar for Yogesh_5
Member Avatar for IconKana
0
143
Member Avatar for natsume57
Member Avatar for Yogesh_5

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 user open the app getsettings will be performed to retrieve the value of it. getsettings/savesettings store value in your system …

Member Avatar for jhai_salvador
0
236
Member Avatar for abelingaw

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.

Member Avatar for jhai_salvador
0
186
Member Avatar for razamughal67

How about you use M$ HTML Object library and M$ WinHTTP Services you can find it on VB6 Project > References Use WinHTTP Services to GET documents source (HTML Source) Then use HTML Object Library to parse it by passing it to HTML Document Object Like this Dim doc As …

Member Avatar for jhai_salvador
0
827
Member Avatar for cypher1
Member Avatar for toxicandy
0
225
Member Avatar for raizuke.blademaster

Hope this helps you: http://www.daniweb.com/software-development/visual-basic-4-5-6/code/455533/saving-and-extracting-image-to-recordset

Member Avatar for ROBBOHORT
0
197
Member Avatar for P.manidas

How about arrays? Private Function ReturnArrays(SomeArgs As String) As String() 'Code goes here End Function You can also use user define types and even classes.

Member Avatar for P.manidas
0
3K
Member Avatar for samica

How I wish VB 6.0 was 2006.. ahaha.. anyway, what does the title on the error says? For 64Bit OS make sure that you run and install your vb6 app with admin rights.

Member Avatar for tinstaafl
0
118
Member Avatar for jhai_salvador

Add the snippet in your module. **Requirements:** * Make sure you have reference to M$ ActiveX Data Objects Library (ADODB) * A table field with OLE Object / BLOB as datatype * A recordset that is already oppened and ready to be use **To save Image on your table field, …

1
815
Member Avatar for ABDALSLAM.ALI
Member Avatar for jhai_salvador
1
406
Member Avatar for odohben

try learning the basic of adodb; Learn how to connect a database using ADODB.Connection Learn CRUD (Create, Read, Update, Delete) using ADODB.Recordset What have you done on your project so far?..

Member Avatar for jhai_salvador
0
229
Member Avatar for imBaCodes

Did you define interpo correctly?.. Did you initialize interpo object correctly?.. Are you using late binding or early binding (using reference)?..

Member Avatar for jhai_salvador
1
74
Member Avatar for mikaichan13

on what line youre having an error?.. if its on Adodc1.Recordset make sure that your adodc1 is connected and loaded with records.

Member Avatar for AndreRet
0
148
Member Avatar for illusive_blood
Member Avatar for jhai_salvador
0
217
Member Avatar for wondering_ed
Member Avatar for mark.scutt.7

Follow what tinstaafl said and also start learning to use array objects and variables. I promise you that you're life will be easier on using array objects ;) OT: I don't know where to post this but i need your support by voting Visual Basic Classic to be improved: [Bring …

Member Avatar for AndreRet
0
914
Member Avatar for kikiey
Member Avatar for jhai_salvador
0
111