CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: jelopy15

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    675

    Re: Datagrid Issue

    what do you mean reposition of the rs? can you please explain it to me..thanks
  2. Replies
    3
    Views
    675

    Datagrid Issue

    Im having trouble with the Click event of the datagrid. Once i click on a certain record it seems to lag. it doesnt get what i want to be input into my text box. But when i use the DoubleClick event...
  3. Replies
    4
    Views
    701

    Re: Date Report Problem

    what i want to happen is that is it possible for data report to print like an MS word?
    printing 3pages simultaneously, what i im doing right now is that ihave 3 buttons, then each button opens 3...
  4. Replies
    4
    Views
    701

    Date Report Problem

    hi guys

    do you know if i can have 3 pages of different content in 1 data report?

    like in MS word, i have 3 pages with different contents then i can print it simultaneously by just clicking all...
  5. Replies
    2
    Views
    1,604

    Generate random records without repetition

    Hi to all,
    can you help me with my codes, i want my program not to duplicate any of my records.
    what happen is that my records are being generated in random, but it repeatedly shows answered...
  6. Replies
    7
    Views
    1,137

    Re: backup database

    im using mysql.
    for example, im going to press the backup button..then its going to save it in the backup.bat..am i right? then,, does it mean that if i delete my database in mysql can i still...
  7. Replies
    7
    Views
    1,137

    backup database

    i got this code from the internet, but i dont know the process or flow of it, im looking for a button that can restore and save my sql database.

    i have backup.bat and restore.bat in a folder.....
  8. Thread: date ranged

    by jelopy15
    Replies
    8
    Views
    1,285

    Re: date ranged

    my fields recieved_date and released_date are declared as date in my database.
  9. Thread: date ranged

    by jelopy15
    Replies
    8
    Views
    1,285

    Re: date ranged

    here is my code ,



    Private Sub Command3_Click()
    If dtpfrom.Value >= dtpto.Value Then
    MsgBox "Check your date value!"
    Exit Sub
    End If
  10. Thread: date ranged

    by jelopy15
    Replies
    8
    Views
    1,285

    Re: date ranged

    im using mysql 5.1 as my dtabase engine,
    and i tried debug.print RSconn and it says argument not optional. my connection seems fine
  11. Thread: date ranged

    by jelopy15
    Replies
    8
    Views
    1,285

    date ranged

    i dont know what's wrong with my code, can you please check it for me.

    my records in datagrid exceeds the range
    for example my recieved date is 6/2/2011 and released date is 7/2/2011 then my...
  12. Replies
    11
    Views
    1,773

    Re: Increment Alphanumeric

    so that it will look for my database in order, for example my last number is 20110004 in my database.then it will increment into 5.
  13. Replies
    11
    Views
    1,773

    Re: Increment Alphanumeric

    So, this what i did. i copied your code and changed IDnum to id
    and still..it doesnt increment. my code increments wnere is there is no alphabet.




    RSconn "select * from tblemprec order by...
  14. Replies
    11
    Views
    1,773

    Re: Increment Alphanumeric

    oh. sorry for the incomplete code. here is my whole code in my incrementation.



    RSconn "select * from tblemprec order by Employee_Number asc"
    If rs.EOF = False Then
    For ctr = 0 To...
  15. Replies
    11
    Views
    1,773

    [RESOLVED] Increment Alphanumeric

    I have a problem putting letter in my transaction number that is connected to mysql
    i need a output like this "CS + date + number incrementation" (CS20110001)

    here is my code


    ...
  16. Replies
    11
    Views
    820

    Re: comparing two strings

    thanks for all the help guys,,i got it already..thanks you so much..problem solved.
  17. Replies
    11
    Views
    820

    Re: comparing two strings

    my problem is how can i output the differnce string by using DM's code.
  18. Replies
    11
    Views
    820

    Re: comparing two strings

    ive tried this one but then i dont know how can i output its difference..
    sorry guys new to vb.



    Private Sub Form_Load()
    Dim x As String
    Dim y As String

    x = "aaa"
  19. Replies
    11
    Views
    820

    Re: comparing two strings

    how will it output the diffrnce in the string? i mean i would like to output "d" which is the difference of string x and y .

    and how to use the strComp?

    thanks for the help
  20. Replies
    11
    Views
    820

    [RESOLVED] comparing two strings

    how can i compare two strings then it will output me the difference,, i cant figure out how to make it i googled it and cant findy any answer for my question..

    its like i have two strings
    x =...
  21. Replies
    2
    Views
    469

    HELP wmp updating

    i have a form with windows media player in it and i can only view one video by change its URL in the properties, but is there a way that i can update a video in my form anytime i want?
  22. Replies
    2
    Views
    2,648

    The current row is not available

    why is that im having a msgbox whenever i put this on my form activate.

    Microsoft DataGrid Control
    The current row is not available


    but my program works fine its just that this msgbox is...
  23. Replies
    3
    Views
    909

    Re: syntax help urgent pls

    thanks alot.
  24. Replies
    3
    Views
    909

    Re: syntax help urgent pls

    its like combining this two codes by i dont know how to combine them.



    RSconn3 "select *from tbluserinfo where course Like '" & Text1.Text & "%'"
    RSconn3 "select *from tbluserinfo where...
  25. Replies
    3
    Views
    909

    syntax help urgent pls

    how could i add course2 with my syntax..my code doesnt work..



    RSonn3 "select * from tbluserinfo where course Like '" & text1.text & "%'" AND course2 Like '" & text1.text "'%"
Results 1 to 25 of 34
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured