Search:

Type: Posts; User: d3gerald

Page 1 of 13 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    2
    Views
    2,077

    Re: Adding listbox datas to database

    I suggest you use sql statement to append data to your database. you may use the insert into statement of sql. you may also refer to http://w3schools.com/sql/default.asp for more information...
  2. Re: what's this error when i try to insert row err=mast made update first

    Microsoft actually have posted a troubleshooting guide for this error... Please click the link below.

    http://support.microsoft.com/kb/306269

    Hope this helps
  3. Replies
    6
    Views
    691

    Re: Help with this script

    Welcome to the forums....

    First up... could you please specify what error are you encountering with this script?
  4. Thread: SQL Recordset

    by d3gerald
    Replies
    7
    Views
    489

    Re: SQL Recordset

    You may refer to the following link for help on SQL statements

    http://www.w3schools.com/sql/default.asp
  5. Replies
    10
    Views
    959

    Re: adding data from access fields to vb list

    I just would like to point out something from the code above...

    If Not rs.EOF And Not rs.BOF Then

    the above condition will never return a True value thus the statements inside the if clause...
  6. Replies
    17
    Views
    1,196

    Re: Connecting VB with Website

    You may also refer to this thread for some ideas...

    http://www.vbforums.com/showthread.php?t=386579
  7. Thread: Button color?

    by d3gerald
    Replies
    14
    Views
    1,165

    Re: Button color?

    You may also make use of LVButtons which can be downloaded online for free...
  8. Replies
    8
    Views
    578

    Re: Update Sql Problem

    What change do you want to implement? I don't see any change in the data quoted above...

    Update statement is used to update all or specific record or set of records in a database using the syntax...
  9. Replies
    3
    Views
    1,111

    Re: Load Image Into A Picturebox.

    actually, I was able to do that before however, you need to have a stable internet connection. Also, you need to know the correct host path of the image plus you can only show images from non-site...
  10. Re: [2008]How do i place my db in another pc.

    I agree... I was just thinking that he is using an access database or an excel file...



    May we know what database are you using?
  11. Replies
    4
    Views
    679

    Re: KeyPress..................

    do you mean that there is no space before the letter n??? please clarify...
  12. Re: [2008]How do i place my db in another pc.

    this actually requires you to share the directory where your database is located over the network... then reference your sql connection string to that path...

    for example///

    the path of your...
  13. Re: MySQL and Tables named with numbers dont match, any suggestions?

    have you tried enclosing the table names with [] like [1234]...
  14. Re: please help iam having problem with the adodb

    If I may ask, are you trying to show all records from the empmas table? If so, you could just remove the condition "where empid=@empid"

    thus your SQL statement would be "Select * from empmas"
  15. Replies
    5
    Views
    764

    Re: how to solve this problem!

    I totally agree with this
  16. Replies
    5
    Views
    764

    Re: how to solve this problem!

    the program named Game.exe should be placed in the same folder/directory where your host application/project is located...

    for example:

    you saved your project in C:\Prog\ directory

    the...
  17. Re: please help iam having problem with the adodb

    Please don't get me wrong, I just would like to make sure that this is not a result of a typo error in your code
  18. Replies
    7
    Views
    2,857

    Re: Bad File Name or Number Error

    try to replace

    Open App.Path & "\ir\user\" & lstCodesets.Text & ".cds" For Input As #currentfile


    with

    MsgBox App.Path & "\ir\user\" & lstCodesets.Text & ".cds"
  19. Re: Ftp Help Required App looks like its frozen

    an Application Freeze usually happens when it encounters a line of code that takes much time for execution. There are various ways of getting rid of this. Try to check the codebank for some sources.
  20. Replies
    7
    Views
    1,072

    Re: DateDiff and DateAdd in a UPDATE

    your problem lies on the query you're trying to execute. Using "update" statement, you are going to make changes to the table you are invoking in your query. In your case, use the "select" statement...
  21. Re: how make a flex grid refreshable after a specific time

    use a timer in your form and place your conditions in your timer's code.
  22. Replies
    3
    Views
    404

    Re: textbox question

    you can use the change event of the textbox to do that or you could use a form level variable and check the value of the textbox through the code...
  23. Re: open Access2k database share with password

    i forgot how i did it before coz i'm now using sql server database. but try to go to

    http://www.vbaccelerator.com
  24. Re: sending and receiving sms (cellphone connected to pc) vb6

    welcome to vbforums,

    well there is an existing sms modem that allows you to send sms through your pc using a valid sim and network.
  25. Re: How To Use SUM function of MSAccess for a Report?

    You can execute an sql statement to get the total value of that field

    Select Sum(Subtotal) from <tablename>
  26. Replies
    2
    Views
    492

    Re: Crystal Reports - Tourtorial

    try going to the reporting section of this forums... I'm sure you can get a lot of ideas there
  27. Replies
    32
    Views
    1,498

    Re: Retrieving record

    The problem is on the part where you open the recordset because the two fields have different data types...

    you can use this idea

    If optCode.Value Then
    rec.open "select * from emp...
  28. Replies
    8
    Views
    2,199

    Re: AES_DECRYPT problem again

    try this code and see if it returns a value

    m_strSQL = "SELECT Username, AES_DECRYPT(Password, '" & m_strEncryptDecryptKey & "') As Password, Disabled "
    m_strSQL = m_strSQL & "FROM...
  29. Replies
    8
    Views
    2,199

    Re: AES_DECRYPT problem again

    sorry but I just thought that the data found in the database would match to the condition if the password is encrypted in the condition
  30. Replies
    8
    Views
    2,199

    Re: AES_DECRYPT problem again

    maybe somethin' like this flow would work

    m_strSQL = "SELECT * "
    m_strSQL = m_strSQL & "FROM AuthorizedUsers "
    m_strSQL = m_strSQL & "WHERE Username = '" & txtUsername.Text & "' "
    ...
  31. Replies
    6
    Views
    12,916

    Re: MSFlexGrid.AddItem

    you can do something like this


    msFlex.Rows = msFlex.Rows + 1
    msFlex.TextMatrix(msFlex.Rows - 1, 0) = "First Collumn Value"
    msFlex.TextMatrix(msFlex.Rows - 1, 1) = "Second Collumn Value"...
  32. Replies
    12
    Views
    770

    Re: Infinity Loop

    i prefer declaring it that way, anyway it doesnt matter, it could either be long or integer but i prefer using long
  33. Replies
    12
    Views
    770

    Re: Infinity Loop

    well in that case, you can manipulate a variable to detect your desired interval

    set the interval of the timer to 10000

    dim ctr as long

    Private Sub Timer1_Timer()
    if ctr = 3 then
    ...
  34. Replies
    3
    Views
    471

    Re: Save From Listbox?

    try a search in the forums. we have discussed that topic many times before.
  35. Replies
    5
    Views
    475

    Re: I need Help in Data Report?

    dont enclose StaffCode in singlequotes

    SELECT * FROM table2 where StaffCode = " & Text1.Text
  36. Thread: Download

    by d3gerald
    Replies
    8
    Views
    685

    Re: Download

    PWS is the web utility of WIN98. you dont need it. XP is built on NT structure and NTs counterpart for PWS is IIS. you just need to activate it.
  37. Re: How to make great looking buttons... Please Read

    try to search for lvbuttons, its free
  38. Re: How to shell an app without losing focus to the main app? (at all)

    try putting the me.SetFocus command after your shell code


    shell "Yourexe.exe"
    Me.SetFocus
  39. Replies
    4
    Views
    618

    Re: Dont Show as an application

    Are you developing somethin like a keylogger? if thats the case, sorry, we dont support that thing here...
  40. Replies
    12
    Views
    770

    Re: Infinity Loop

    why dont you use a timer for that one
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width