Search:

Type: Posts; User: SamOscarBrown

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: Can Visual Studio 6/VB6 be installed in Windows 11? Not for me ...

    @Giorgina.....did you install SP6?
  2. Replies
    22
    Views
    601

    Re: create new property for text box

    Now I DO see how (but not sure how you might create both a 'maxvalue' and 'minvalue' using Tag.)

    Thx to both Elroy and Van---But, I do like Elroy's approach better (was not sure WHAT type 'Tag'...
  3. Replies
    22
    Views
    601

    Re: create new property for text box

    VB6 standard controls, like a Textbox, do not support custom properties. ChatGPT also suggested the use of the Tag Property....but not sure how you might create both a 'maxvalue' and 'minvalue'...
  4. Re: Strange behavior of a "TIMER" control

    What is the name of this errant Timer? What lines of code contain that name?
  5. Replies
    5
    Views
    303

    Re: Save listview to text file

    Glad you got it solved...Use Thread Tools menu to Mark As Resolved.

    I am still in wonder, however, why people use that ListView. I am sure it has some advantages over grids, but I don't see many...
  6. Re: Installing the VB6 IDE on Windows 10 or 11 (64-bit)

    Good Summary, Elroy. BUT....let me offer this (as there are some folks who have difficulty following those instructions (from your Tutorial):

    Under 4---Add a line add WHERE to obtain this file...
  7. Re: Replace Multiple lines of key code

    What have you tried? Hint: Use Instr().
  8. Replies
    9
    Views
    512

    Re: Flexgrid as calander

    No, but I may post my project later....gotta do Income taxes today! :-(
  9. Replies
    9
    Views
    512

    Re: Flexgrid as calander

    I also did a Birthday/Anniversary Calendar for our church (pulled data from a database) using arrays of labels for each day of the month.
    (I blocked out all the names in this image, but you can see...
  10. Replies
    9
    Views
    512

    Re: Flexgrid as calander

    I have found that an array of multi-line textboxes work and look really great. It allows for a very easy export to an Excel Workbook if you want to share your calendar.

    I created one a few years...
  11. Re: Need algorithm to determine what part of an order was charged sales tax

    NC (see my Icon)....well, it seems like an impossible task (to me). Good Luck!
  12. Re: Need algorithm to determine what part of an order was charged sales tax

    I was definitely not aware of this:

    The way Amazon works is you sometimes get charged sales tax for some of the order but not everything.

    I always thought that the tax was calculated on the...
  13. Re: Need algorithm to determine what part of an order was charged sales tax

    I THINK it might be a bit difficult...why I say that, is you will have several items, and possibly some of them will be of the same exact value (and from what I understand, SOME of those may or may...
  14. Replies
    14
    Views
    467

    Re: Stupid Mistakes I've made

    See my posts on your other thread about images.

    If you don't have a question, then what do you want to DO with that Thread? Post it in, say, the CodeBank for others to glean some certain...
  15. Replies
    11
    Views
    379

    Re: A question

    I saw your image in the other thread; yes, not good resolution for us. Perhaps you can break it into, say, FOUR quadrants and post all for...we may be able to better see it then.

    And, in your...
  16. Replies
    14
    Views
    467

    Re: Stupid Mistakes I've made

    And your question is?
  17. Replies
    10
    Views
    624

    Re: vb6 install under win10.

    Not sure what you are asking? Can you take a snapshot of those icons in the IDE and attach it to this Thread?


    ---To attach, use the Go Advanced button, look for Manage Attachments, follow the...
  18. Replies
    10
    Views
    624

    Re: vb6 install under win10.

    Reference your question to Elroy on that other Thread:

    Do you have two CD's (MSDN 1 and MSDN 2)?

    If so, simply insert MSDN 1 into your drive and run the executable. If you only have the files...
  19. Replies
    10
    Views
    624

    Re: vb6 install under win10.

    Why don't you try it a different way?...look at this thread:

    https://www.vbforums.com/showthread.php?852227-Installing-the-VB6-IDE-on-Windows-10-64-bit

    It's the way I have been doing it for a...
  20. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Outa here. Can’t seem to help.
    Good luck.
    Oh, one LAST thing (I’ve told you this before), get a book!
  21. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Oops, yes I did -sorry about that - just trying to help
  22. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Jeez.....add getTotalValues in your Form_Load Routine...you actually have to CALL subs and functions, just putting them in the code doesn't work. AND, there is absolutely no need to actually use the...
  23. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    where is your call to the sub getTotalValues?
  24. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    ONE way:


    Private Sub getTotalValues()
    Dim myValue As Double
    Set cmd = New ADODB.Command
    Set cmd.ActiveConnection = cnn
    cmd.CommandText = "select value from table1"
    Set...
  25. Replies
    10
    Views
    624

    Re: vb6 install under win10.

    Well, did your "new" installation work? (IOW, was this warning simply a warning and didn't affect anything?)
  26. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Deleted...dupe
  27. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Am in agreement about the 'convoluted SQL's'...no idea why he would do this. I prefer writing a new SQL for each attempt to retrieve from a database. As far as him using only one table instead of...
  28. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Hard to decipher your extra long sql statement, so I 'went around it' by doing this---Change your Form_Load and add this function. In your CountSets function comment out or delete this line:

    ...
  29. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    well, for starters, you DO have 8 distinct cardsets...you have a misspelling of "Knights" in one of your fields. You have "Kinghts".

    Change that in your DB and you will show "7" instead of "8".
    ...
  30. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    NO..I SEE the error message, what I want to know is in your commented out line 'MsgBox sSql2', when not commented out, what did the messagebox say?
  31. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    What did this line sSql2 produce in your msgbox?
  32. Replies
    6
    Views
    474

    Re: Please Reset With ElRuffsta

    Sounds good to me....he does need some help with his coding efforts.
  33. Re: Select a record in a ListView by selecting the same record from another ListView

    AND, you'll have to be a bit better in explaining exactly how you want to do this...

    Are you saying you want to CLICK ON an item in listview #1 and then 'automatically' have the same item (by...
  34. Re: Select a record in a ListView by selecting the same record from another ListView

    what have you tried? Got some code attempts?
  35. Replies
    7
    Views
    2,931

    Re: Aligning text in a msflexgrid

    Not sure why you are resurrecting a 19 year old thread instead of starting one on your own.

    BUT, if you want, say columns 4 and 5 (I just picked two as an example---you would change the code to...
  36. Replies
    23
    Views
    872

    Re: [RESOLVED] Listview loop

    I see OP has now marked this as resolved...maybe conversation from now on can be done in the Chat area????
  37. Replies
    23
    Views
    872

    Re: [RESOLVED] Listview loop

    Great discussion...wonder how much of this went over qaa's head. Hopefully he understands now how loops work.
  38. Replies
    23
    Views
    872

    Re: [RESOLVED] Listview loop

    one of which thinks it is their God given right that we answer his every question and be there at his beck and call when he demands an audience

    Gee....I wonder who that could be? :-)
  39. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Oh.....you blocked me, someone else will have to give you the clue.
  40. Replies
    95
    Views
    3,926

    Re: new project - DB help needed please

    Do you have a REFERENCE to the Microsoft Active Data Objects X.X Library in your project?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width