Search:

Type: Posts; User: CADman

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    519

    Re: Simple Highscore-list, help please?

    I would store the data with score first, name and then the date like: 4, Chris, 3/4/2012
    You can line input and sort them then split the fields if desired. That way (reverse sort) the high scorers...
  2. Replies
    8
    Views
    995

    Re: [RESOLVED] Goto Error Loop

    Seems to me that you need to clear the error before you do resume. I believe the error is persistent unless cleared.
    Err.Number = 0
  3. Replies
    5
    Views
    1,054

    Re: How to read table/data from jpeg file

    You said 'contains' a table. Do you mean the table is embedded in the file or that the graphic image shows the table?
    You might be able to save the file as a bitmap and find where the colors...
  4. Re: Help me with this small Assembly Language code!!

    Correct me if I am wrong but, what you posted looks like a custom language for the microcontroller not MS assembler (ASM).
    Did the product include a debugger program?
  5. Replies
    6
    Views
    1,305

    Re: A blonde walks into a bar...

    Two software programmers meet in the park for lunch.

    First Software programmer, "Hey where did you get that great mountain bike? I bet it cost you a pretty penny?"

    Second programmer, "It was...
  6. Replies
    6
    Views
    969

    Re: VB6 question

    If you use debug.print "pic", X,Y inside the picturebox sub you will notice that when the mouse leaves the confines of the picture box the mouse has left the picture box and moved onto another...
  7. Thread: I need a slogan

    by CADman
    Replies
    21
    Views
    1,353

    Re: I need a slogan

    Continuous Customer Contact
    Valued Customer Program
    Fast Response Team
    Corporate Relations Program
    Customer Assistance and Support Program CASP
  8. Replies
    8
    Views
    870

    Re: Brings back the memories

    Sky King, Branded, Johnny Yuma, Have gun will travel, Rin Tin Tin, Sons of Will Sonnet, Rifleman.
    Wasn't a young Clint Eastwood in Rawhide?
  9. Replies
    3
    Views
    607

    Print shaded control to B/W laser

    I do a PrintForm that works fine except a grey shaded label background comes out white. Currently the settings are:

    Printer.Orientation = 2
    Printer.DrawMode = 7
    Printer.FillStyle = 1...
  10. Replies
    1
    Views
    453

    Re: help help need code plz !!!

    Look into the keydown command. It has a shift argument that you can use. Assign a form level boolean variable and test for it in your codes. Flip the boolean on each shift.
  11. Replies
    4
    Views
    720

    Re: changing a textbox.text once

    You could use a static variable so when you execute the sub it will exit after the first run.


    private sub text1_change()
    static Once as boolean
    if Once then exit sub
    text2.text=text1.text...
  12. Replies
    9
    Views
    1,163

    Re: Combination of Bytes

    What do you mean by 'test all combinations'?
  13. Replies
    9
    Views
    1,163

    Re: Combination of Bytes

    Do you need to list all combinations or simply find out how many there would be?
    To find the totals you could just Total=256^NumberOfBytes. You can use for-next loops but for 16 bytes it would be...
  14. Replies
    6
    Views
    1,108

    Re: Converting Length

    One program I knew used a base for all lengths and converted to the units requested. It used meters on the metric side and feet on the imperial side. So if you had 1 inch converted to metric it...
  15. Re: I need help with creating a list in a TextBox

    Set your textbox to Multiline, set scrollbars to vertical and horizontal (if needed). When adding to your text box use:

    textbox = textbox & combobox1.text & vbnewline.
    You may need to empty the...
  16. Replies
    5
    Views
    748

    Re: Keyacii problem

    Not sure I understand your problem. Form_Keypress will recognize Ctrl-C (keyascii=3). Is it that you cannot get focus to the form? How does clipboard enter into your problem? Are you trying to...
  17. Thread: Help!?

    by CADman
    Replies
    1
    Views
    542

    Re: Help!?

    Dim two variables (either integer or long) to hold the minimum and maximum limits such as RangeMin and RangeMax. Dim a variable like TestNum as integer or long to hold the number from the textbox. ...
  18. Replies
    3
    Views
    847

    Re: can i make VB6 functions array

    This sounds like a program structure issue.
    When you say commands could be about 100 different ones then using Select Case or On function_Number GoTo/GoSub would seem to work well.
    You certainly...
  19. Re: SORTING items in listview (NO clickcolumn event)

    Maybe the OP is living in a locale where the comma represents the period. If so, no special treatment of the data should be necessary.
  20. Replies
    13
    Views
    5,846

    Re: A Simpler Wheel of Fortune Puzzle Generator?

    If you could use arrays it would also shorten your code so instead of:

    lblLine1.Caption = txtLine1.Caption
    lblLine2.Caption = txtLine2.Caption
    lblLine3.Caption = txtLine3.Caption & "**"
    You...
  21. Replies
    2
    Views
    513

    Re: Progress Bar HELP

    make an array(5) of progress bars
    put 'Randomize Timer' in form_load


    Dim Bar(5) as Long 'or Integer
    Dim V as Integer

    Private Sub Timer1_Timer()
    Static B as Integer
    B = B + 1
  22. Replies
    10
    Views
    1,049

    Re: Binary arithmetic

    I imagine he means:

    10100111
    +01011001
    __________
    =
    And subtract, multiply, divide

    I would convert to base 10, do the arithmetic and convert back to binary.
  23. Replies
    9
    Views
    1,022

    Re: VB List box help

    Maybe he wants something simple.
    One text file holding the car manufacturers
    Chevy, Ford, Dodge, Honda, Jaguar,......
    Then have separate text files holding their different models.
    (I'll only do...
  24. Replies
    3
    Views
    560

    Re: combo box in visaul basic 6

    I think you want to use the 'Style' option of the combo box.
    All three styles can use arrow up/down once they have focus.
    Style 0 you must pick the down arrow
    Style 1 only responds to arrows...
  25. Replies
    4
    Views
    2,003

    Re: how to read some text from this file contect

    Rem I haven 't tested this so you will have to tweak it some.
    Rem I am sure there is probably a more elegant way to do this
    Rem as I don't use binary much

    Option Explicit
    Dim I As Integer
    Dim...
  26. Replies
    4
    Views
    2,003

    Re: how to read some text from this file contect

    I expect you'll have to open the file for binary, step through looking for "m a n i f e s t", save the byte position after that string, step through looking for "u s e s - s d k", save the byte...
  27. Replies
    13
    Views
    8,449

    Re: open edit & save dxf file

    Do a search for FREE DXF EDITOR and you should find at least one. Also there are some that have a free trial which may let you convert/edit a few before the trial runs out. Google is your friend.
  28. Replies
    31
    Views
    2,268

    Re: Famous last words in project management.

    Top 25 Engineer's Terms and Expressions
    (What they say versus what they mean)

    A number of different approaches are being tried. (We are still guessing at this point.)
    Close project...
  29. Thread: Watch My Car

    by CADman
    Replies
    6
    Views
    929

    Re: Watch My Car

    Funny skit. Kind of like Candid Camera.
  30. Replies
    23
    Views
    1,623

    Re: computer languages

    I'm not expert by any measure but I could be rather proficient in:
    DOS batch
    Assembly (long time ago)
    BASIC, Zbasic
    LISP, DCL (Autocad flavor)
    VB 6
    Does body language count?
  31. Replies
    13
    Views
    8,449

    Re: open edit & save dxf file

    I use AutoCAD. I think you want to edit the vector graphics. That ability will likely be limited by the component from your drawing program that you added to your project. A (part of a) DXF file...
  32. Re: Play this small Flash game and let me know how you feel

    I passed the link to my wife and she played the game. Here's what she said:

    By the way, thanks for scaring the do-do out of me...did that maze and was concentrating...next thing you know this...
  33. Replies
    6
    Views
    759

    Does this smell like Spam

    Congratulations (name),

    You have been selected to receive a FREE $250 McDonalds Gift Card!

    Valid at any McDonalds location in the US.

    Just click here to claim it: Click Here,
    links to:...
  34. Replies
    7
    Views
    1,036

    Poll: Re: [semi-serious] Haptic feedback mouse

    If it vibrated on hitting backspace in an empty textbox then Yea, you could put it by your crotch and repeatedly smash backspace.
  35. Thread: Joke blast

    by CADman
    Replies
    43
    Views
    3,441

    Re: Joke blast

    @Spoo: The original joke had Florida in it but since I am from Ohio and we do have farms here I changed it.
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    "Indian Toilet Paper"

    An Indian walks into a trading post...
  36. Re: [URGENT] Need some topics for seminar in Computer Science

    How about the evolution of video graphics from MDA, Hercules, CGA, VGA, etc.
    Or the evolution of modems from the original 150 baud through 300,600,1200,2400,4800,9600,14400,28000, 56k, maybe all the...
  37. Re: Play this small Flash game and let me know how you feel

    So what level did anyone get to?
    I'm not sure if my nerves can take another try even though I know what the result will be.

    Level 3 narrow area is really narrow, gotta go slow there.
  38. Re: Play this small Flash game and let me know how you feel

    Level 3 got me in the narrow spot. Scared the bejeebers out of me.
  39. Replies
    47
    Views
    3,229

    Re: Adding a vb6 object into a program?

    In post #4 LaVolpe suggested using labels. You can pre-make them (lots like 100) in an array. If you make them 2D and change the backcolor to whatever you want you can use the mouse picks to...
  40. Re: Generate random numbers and letters..

    One way is to use a For loop that will generate an ASCII number, convert it to a character, concatenate into text1.text, do it 5 times. You'll have to eliminate the punctuation between the numbers...
Results 1 to 40 of 112
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width