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
~3K People Reached
Favorite Tags
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
52
Member Avatar for stuncrazy

ok so i'm trying to set up my program to insert a new record to my database i keep getting a insert syntax error [CODE] Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click '************************************************ '* ** '* will first verify that all necessary information needed ** …

Member Avatar for Renukavani
0
85
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

Hi, i want to know how i would go about updating a row on a datagrid. with the data being databinded in the text boxes and the fact that i can move through the records using the databind techniqu. I have tried through trial and error and still havent got …

Member Avatar for drewpee
0
69
Member Avatar for mshdpotato

How can I get the value of the year, month and/or day from the DateTimePicker if I'm trying to compute for the age? I've tried [CODE] Dim x As String = "" x = Date.FromOADate(Val(DateTimePicker1.ToString)) MsgBox(x) [/CODE] But it only gave me 12:00 AM. and [CODE] DateDiff(DateInterval.Year, DateTimePicker1, Now.Date) [/CODE] …

Member Avatar for drewpee
0
88
Member Avatar for wezjusz

Hi everyone. I got tuday an exercise: Write a program to calculate the average of three exam marks. The input and output should be done by subprograms GetMarks and DisplayAverage respectively. the calculation should be done by a function, CalcAverage. This is my code: [code]Private Sub btnCalculate_Click(ByVal sender As System.Object, …

Member Avatar for kvprajapati
0
265
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
90
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
100
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
182
Member Avatar for farzana.yasmen

Hi I want to enter a coding which should find farzana though i type far or zana in the txtsearch.Text. if txtsearch.Text = far then it should display a record existing with farzan or farhan or any other record having far in the record. can some body please help me …

Member Avatar for codefixer
0
115
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
96
Member Avatar for savi_karthika

Dataenviroment designer is not working? do anyone know the solution. pls help me. It was working earlier but now whenever i run a report i am getting error message "failed getting rowset from current datasource"

Member Avatar for vb5prgrmr
0
187
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
165