Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K

13 Posted Topics

Member Avatar for drewpee

Hi. I am planning on making a bot for a flash game. is there a way to log in on a website and playing without actually opening a browser? I have a background on java, c++ and vb but i simply don't know where to begin. thanks

1
56
Member Avatar for stuncrazy
Member Avatar for drewpee

[CODE]Unhandled exception in VB6.EXE: 0xC00000005: Access Violation[/CODE] my software recently crashes everytime it access it's DB and this error shows up when i click on the "debug" button. I am able to fix this sometimes when I set the Database name and RecordSource to the same DB and table. But …

Member Avatar for drewpee
0
2K
Member Avatar for j_808

[CODE]db.recordset.update[/CODE]? scratch this. this is vb.net. :( sorry

Member Avatar for drewpee
0
77
Member Avatar for mshdpotato
Member Avatar for drewpee
0
102
Member Avatar for wezjusz

Hi. when you call this out, [B]student[/B], [B]exam1[/B], [B]exam2 [/B]and [B]exam3 [/B]doesn't have any value. [CODE]GetMarks(student, exam1, exam2, exam3)[/CODE]

Member Avatar for kvprajapati
0
286
Member Avatar for drewpee

I have a test table where I'm using the Last() function but it seems to not work, it always return the 2nd record when i have 10 records.. [CODE]SELECT LAST(Date_Received) FROM serviceRS; [/CODE] returns the 2nd record [CODE]SELECT FIRST(Date_Received) FROM serviceRS;[/CODE] returns the 3rd record X_X

Member Avatar for drewpee
0
108
Member Avatar for drewpee

Ok so i have a couple of [B]Strings[/B] and [B]Dates[/B] I'd like to use in making my reports. I can't seem to make it work. any help? This was my latest failure. [CODE]SELECTCCIF_No, Date_Recieved, FROM serviceRS WHERE Date_Recieved >= '" & DateFrom & "' AND Date_Recieved <= '" & DateTo …

Member Avatar for vb5prgrmr
0
126
Member Avatar for drewpee

I don't know what's causing this, but every time I have a do..while loop and the statements inside is quite long, I get an error "Loop without Do". Here is an example of my code.. PS: I know this code segment isn't efficient but this is how i code, do …

Member Avatar for drewpee
0
191
Member Avatar for farzana.yasmen

hi. if you want you can search while you type. here is the code i have on my software and ill just edit it for your use. [CODE]Private Sub textbox_Change() listbox.clear db.recordset.movefirst do while not db.recordset.EOF if instr(1,textbox.text, db.recordset!Name ,1) listbox.additem db.recordset!Name end if loop end sub[/CODE] i just typed …

Member Avatar for codefixer
0
126
Member Avatar for drewpee

Hi. I've made a record on a table which would be used as a comparison to other records in the table. for example.. table: recordID 100001,Company Name recordDI 999999,Company Name i want to compare record 1000001's Company Name with record 9999999's Company name. How do I do that? thanks!

Member Avatar for vb5prgrmr
0
107
Member Avatar for savi_karthika

Hey! I have the same problem as these guys have. These are my codes and i hope you could help me fix it. Thanks! [CODE]dateFrom = CDate(nFromMonth & "/" & cmbFromDay & "/" & cmbFromYear) dateTo = CDate(nToMonth & "/" & cmbToDay & "/" & cmbToYear) rptSummary.Refresh rptSummary.Show[/CODE] The dateFrom …

Member Avatar for vb5prgrmr
0
222
Member Avatar for drewpee

Im trying to create a report that only includes records that was created between to [B]Date Variables[/B], [B]dateTo[/B] and [B]dateFrom[/B]. There are three combo boxes used to get the values for the two dates. Here's the code I didn't include the select case for the month(in string) to be converted …

Member Avatar for drewpee
0
178

The End.