- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
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
which particular code throws the error?
[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 …
[CODE]db.recordset.update[/CODE]? scratch this. this is vb.net. :( sorry
try [CODE]dim Age as date Age = datediff(datepicker1.value,datevalue(now)[/CODE]
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]
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
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 …
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 …
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 …
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!
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 …
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 …
The End.
drewpee