Search:

Type: Posts; User: VB rookie

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Re: Vista error: "program is not working" and app "has run out of time"

    fairly standard practise for a VB6 app that wasnt designed for Vista necessarily, isnt it?
  2. Re: Vista error: "program is not working" and app "has run out of time"

    user is a bit of a noob so thats not so easy to manage, but I will attempt it. It seems that there are two versions installed on her computer somehow. I walked her through an uninstall but apparently...
  3. Re: Vista error: "program is not working" and app "has run out of time"

    there are a few using the app in Vista, but most in XP
    Not sure about lap/desk. How does that matter?
    My guess is desktop but I will check
  4. Re: Vista error: "program is not working" and app "has run out of time"

    I am running the same app on my vista laptop with no problems at all?
  5. Vista error: "program is not working" and app "has run out of time"

    Client is running my vb6 app on Vista (in XP compatibility mode), and is getting an error that indicates the app "has run out of time and shuts the program down" (her words). This happens in a very...
  6. Replies
    1
    Views
    390

    App ignoring the .visible setting?

    Good day,
    I have an app that is suddenly ignoring the .visible setting of a textbox!

    the textbox is a multilined one, with scroll bars turned on, is enabled, not locked, and its initial .visible...
  7. Re: Sending Emails with CDO, how to catch problem emails?

    would it make sense to just put an error catching statement right under the "objemail.Send" line? That would catch email error codes, but that would only work if i removed the "on error goto" section...
  8. Sending Emails with CDO, how to catch problem emails?

    I have an automatic email function in my app, and the code looks like:

    formAllEmails.MousePointer = vbHourglass

    'setup for email
    Set objemail =...
  9. Re: VB6 and access 97 database - how long is it supported?

    So there are no worries then. I distribute my db files as 97 with the Jet drivers so its all good.

    As for the conversion. Maybe some day, but not today,

    Thanks for the info and the reassurances...
  10. Re: VB6 and access 97 database - how long is it supported?

    VB 2008 express - what are the major limitations to it?
  11. Re: VB6 and access 97 database - how long is it supported?

    couple of questions then...

    1. I thought VB6 had to make use of Access 97 for ADO commands?? I have a massive project (commercial product actually) that makes use of 97 as the main db. However, I...
  12. VB6 and access 97 database - how long is it supported?

    A colleague mentioned that eventually, VB6 and the Access 97 database files that it requires to use ADO may not be supported for much longer. Does anyone have any insight on this issue?
  13. Thread: send email

    by VB rookie
    Replies
    13
    Views
    1,580

    Re: send email

    from the microsoft technet site (http://www.microsoft.com/technet/scriptcenter/resources/qanda/nov04/hey1129.mspx)
  14. Thread: send email

    by VB rookie
    Replies
    13
    Views
    1,580

    Re: send email

    Westconn,
    One question: what is this website run my microsoft? is it secure? can i trust sending p/w's over this channel (since the p/w is not encoded)

    OR is there a way to encode the p/w and...
  15. Replies
    3
    Views
    9,559

    Re: vbSendMail app and "STARTTLS" error

    quick note: found this http://forums.devx.com/showthread.php?t=166370 on how to control ssl but havent had time to examine it. posted as a help to others possibly...
  16. Replies
    3
    Views
    9,559

    Re: vbSendMail app and "STARTTLS" error

    i am literally just starting this phase of the project, so my answer to your question is I am not sure. I used vbsendmail code as-is (the sample project), and recieved that error. Is there a better...
  17. Replies
    3
    Views
    9,559

    vbSendMail app and "STARTTLS" error

    Searched many of the threads here for the solution to this, but came up empty...

    When using vbSendMail, I came across the error:
    "530 5.7.0 Must issue a STARTTLS command first"

    So, I read the...
  18. Replies
    5
    Views
    1,454

    Re: Problem with ListView Sorting...

    another possible solution is to turn off the sorting before the data is loaded - especially if you are filling and re-filling the table based on buttons etc.

    eg:
    Private Sub...
  19. [RESOLVED] SQL query help: how to find 'last' record in a set of duplicates

    Hi all,
    I have two tables where I need to do a join (customers and transactions), and find the last instance of a transaction that each customer has executed.

    the tables essentially look like...
  20. Re: SQL "General Date" query: need just the date?

    TY SI, it seems to work
  21. Re: SQL "General Date" query: need just the date?

    Ok, I understand what you are saying, but now I have a different question then; I need the date portion only from the db field "Date1"

    I know the command TimeValue will get me the time, so how do...
  22. [RESOLVED] SQL "General Date" query: need just the date?

    I am trying to pull data from an access db table called "appointments". The column is formatted as general date (ex data: 01/01/2008 10:30:00 PM). I want to pull the data in sorted, as you can see...
  23. Replies
    10
    Views
    756

    Re: Update DB using SQL?

    this is what I am wondering too. Like I said, I am new to using SQL. Dont forget, that I am searching for specific transactions to update - not all of them, so is that possible to do with UPDATE? How...
  24. Replies
    10
    Views
    756

    Re: Update DB using SQL?

    extra info:
    if i use the open command as such:


    wineDB.Open "Select * from [accounting] where [transnumber] = '2007-0021';", connection, adOpenKeyset, adLockPessimistic, adCmdTable ...
  25. Replies
    10
    Views
    756

    [RESOLVED] Update DB using SQL?

    I am trying to update a database field based on user input. They will click choices from a listview control, and since there are several of them, they can choose mutliple selections. I am having...
  26. [RESOLVED] Create new table using ADO and MS Access 97

    Using ADO and MS Access 97 how can I add a brand new table to my db? I want to send out a new version of my s/w and the clients have an older version of the db.

    Is it easily coded or do I have to...
  27. Re: Manipulating Excel from VB6 - Already open error?

    thanks robdogg. that 2nd one did the trick!
  28. Re: Manipulating Excel from VB6 - Already open error?

    Based on SI's and your response its fairly obvious i am confused. I must have misunderstood the results of my searching...
    I am just trying to export a db table to a spreadsheet. I am exporting it...
  29. Re: Manipulating Excel from VB6 - Already open error?

    SI: thanks much. that fixed the problem. The fact that they can import twice is fine - its their perogative to do that...

    Now I have a small problem with the export of data to an excel file. I got...
  30. [RESOLVED] Manipulating Excel from VB6 - Already open error?

    When I exit from my app that successfully reads data from an excel file, I get the message that states



    The code that opens the worksheet is here:

    ...
    CustSheetName = filList.path...
  31. [RESOLVED] Inno Setup help: excel library 10

    I have included the Microsoft Excel 10 Object Library reference in my code. WHen I go to Inno Setup, I am supposed to examine the list of files that PD&W gives me, but I cannot determine which of the...
  32. Re: Create a "line" in Menu Editor

    Thanks. I knew it wasnt much in terms of code, but now I know.
  33. [RESOLVED] Create a "line" in Menu Editor

    In most Windows software, you see "lines" (horizontal rule would be the equivalent in HTML i think?) in between groups of menu commands.

    How can I create a line between a group of menu commands
    ...
  34. Re: [RESOLVED] delete registry key and all subkeys

    fixed thanks
  35. Re: [RESOLVED] delete registry key and all subkeys

    class1 is where i put your code. oRegistry is another class module
  36. Re: [RESOLVED] delete registry key and all subkeys

    Ellis Dee:

    i pasted your code into a class module, ran it, and it gives me this error: object required. Here is the code:


    Private Sub Form_Load()
    Dim fso As FileSystemObject
    Set fso...
  37. Replies
    13
    Views
    1,554

    Re: [RESOLVED] Run Time Error #5 in DTPicker

    I am using the data elsewhere, but the db is closed after the fill from db method. The problem was I didnt anticipate that form_activate would be run (thus running the fill method) after a 2nd form...
  38. Replies
    13
    Views
    1,554

    Re: Run Time Error #5 in DTPicker

    Ok update time. The problem was semi related to the DoEvents solution (helped a bit) but also the error with Object not open was solved with a trace of the IDE.

    Turns out that when you move from...
  39. Replies
    13
    Views
    1,554

    Re: Run Time Error #5 in DTPicker

    i have sort of solved the problem by adding several DoEvents lines. This form is called from within a massive triple nested loop, so the code is very complex. So i thought to include the DoEvents...
  40. Replies
    13
    Views
    1,554

    Re: Run Time Error #5 in DTPicker

    in the source tracing, i placed a msgbox command below the unload me, and traced ran the pgm.

    So the command2 code now looks like:

    Private Sub Command2_Click()
    On Error GoTo errhan
    ...
Results 1 to 40 of 107
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width