Search:

Type: Posts; User: daveyk021

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    8
    Views
    732

    Re: Binary Data to BMP

    Ah, there is were the missing bytes went to. How did you make that BMP (line errors and all)?
  2. Replies
    8
    Views
    732

    Re: Binary Data to BMP

    Wow; that's better than I managed. I will look for more data on the LCD resolution. I got that from an old flyer.

    How the heck did you get what you did? lol.

    I can not swear I am capturing...
  3. Replies
    8
    Views
    732

    Binary Data to BMP

    Here's a challenge for you more advanced VB6 programmers:

    Hello, I am working with an older instrument, via RS232, that if I sent the command "<esc>EL" it dumps the content of the LCD (320x240)...
  4. Re: Can Visual Studio 6/VB6 be installed in Windows 11? Not for me ...

    I'm beginning to wonder if my copy on my network is corrupt. I'll have to see of I can find another copy of VB6.
  5. Re: Can Visual Studio 6/VB6 be installed in Windows 11? Not for me ...

    LOL - missed it, duh.
  6. Re: Can Visual Studio 6/VB6 be installed in Windows 11? Not for me ...

    Worked to a point and then it gets the same error I do "Visual Studio 6.0 Professional Setup was not completed successfully".

    <Sigh> No fricken hair left. It installed in windows 11 but I can not...
  7. Re: Can Visual Studio 6/VB6 be installed in Windows 11? Not for me ...

    "I have uploaded my old copy of VS6 Installer at: https://temp.sh/ujrmK/VS6InstallerSetup.zip"

    Any chance of getting that up somewhere again please.

    I got VB6 installed on my Windows 11 machine...
  8. Replies
    18
    Views
    3,305

    Re: loading VB6 onto Win10

    ""'visual studio 6.0 setup was not completed successfully'""

    Pulling hair out again. This is Windows 10 64 bit Pro on an industrial computer. Anytime I try installation, that is all I get. I...
  9. Replies
    7
    Views
    844

    Re: Form Always going to Top Left of Screen

    Stuck a timer on the form, with an interval of 500, with this code:


    If Me.Top = frmDriverUSN60.Top Then
    Exit Sub
    Else
    frmDriverUSN60.Top = Me.Top
    Me.Timer1.Interval = 0
    End If
  10. Replies
    7
    Views
    844

    Re: Form Always going to Top Left of Screen

    Correction: The top of form 2 stays right at the top of the main form until code stops executing on the main form. As long as code is running, the tops stay even. <banging head again>
  11. Replies
    7
    Views
    844

    Re: Form Always going to Top Left of Screen

    Thank you, I need to look this up. This would be great.
  12. Replies
    7
    Views
    844

    Re: Form Always going to Top Left of Screen

    Thank you, I am going to be trying this. I too busy to get to it earlier today.

    I did the ".top" assignment at the beginning opening event, and the form goes were it is suppose to go, to the...
  13. Replies
    7
    Views
    844

    Form Always going to Top Left of Screen

    My one program's Main Form calls another form to open. The last line of the _Load events sets it's top to the top of the main form (i.e., me.top=main.top), and that works until some incent code runs...
  14. Replies
    0
    Views
    430

    VB6 & MSCHART Controlling X-AXIS

    187072

    There is 804 lines of data to make this chart. The data is ONLY Y-AXIS Data (although I could create X-AXIS TIME Data if needed). Notice where in this picture that I show the 1st byte of...
  15. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    Turns out saving it to a file is as easy as :
    SavePicture PictureLCD.Picture, "C:\temp\Test.bmp"

    Works! Had an answer on StackOverflow.
  16. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    Yes you did give me the idea!! Thank you. I was up late working through the issues. There is not much on-line about this. I would think it would be more common of a pursuit.

    Anyway, I worked...
  17. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    They only code I have found so far is this. It almost works but not with 640x480 worth of dater in the byte array:



    Private Const BI_RGB = 0&
    Private Const CBM_INIT = &H4
    ...
  18. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    Total bytes for a screen shot of this instrument is 38,400.... if that helps.
  19. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    How do I do that? Can you show me an example please?
  20. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    P.S. - I decoded the serial port command from the MFG screen shot utility. It is sending the <esc>8Y command (actually <esc>8Y*, but the * seems to make no difference in Terraterm).

    The MFG...
  21. Replies
    9
    Views
    1,069

    Re: Receiving a Bitmap through the RS232 Port

    I could not figure how to capture the output on TeraTerm, but here is the start of the BMP transfer:

    ...
  22. Replies
    9
    Views
    1,069

    Receiving a Bitmap through the RS232 Port

    I need some help Receiving a Bitmap through the RS232 Port.

    This is to get a screen shot from an industrial UT instrument. The only thing in the MFG documents is:

    LCD DUMP, Send "8Y", Dumps a...
  23. Replies
    147
    Views
    21,408

    Re: LED.OCX & Windows 11 Pro

    P.S.S. - I know what I did. A week or so ago, I did a File Save-As and renamed the project. That name did not carry through to the forms using the LED control, or at least not all of the forms. I...
  24. Replies
    147
    Views
    21,408

    Re: LED.OCX & Windows 11 Pro

    P.S. - Shows as a Picture Box instead of an LED. I can add an new LED to the form. I don't know what I did to screw it up.
  25. Replies
    147
    Views
    21,408

    Re: LED.OCX & Windows 11 Pro

    I'm trying to figure this out. The one program I have been developing for month is having this issue (black boxes at run time and blank controls in the IDE) with one form. The other forms that use...
  26. Replies
    9
    Views
    1,539

    Re: txtBox KeyPress Event?

    Anywho... this fixed the iterating <BEEP>/<DONNGGGGG>! in my stereo speakers:

    Private Sub dbs_keypress(KeyAscii As Integer)
    If KeyAscii = vbKeyReturn Then
    KeyAscii = 0
    Call...
  27. Replies
    9
    Views
    1,539

    Re: txtBox KeyPress Event?

    Yea, that happened 5-6 years ago during the birth of this program and at the time I just lived with it. Yesterday, I deleted it and replaced it. It was amazing how many locations in the program...
  28. Replies
    9
    Views
    1,539

    Re: txtBox KeyPress Event?

    I replaced the txtbox with a new textbox and the keypress event is now working. I has some other code correction to do that depended on that weird textbox but that was quick and simple.

    NO MORE...
  29. Replies
    9
    Views
    1,539

    Re: txtBox KeyPress Event?

    Well it worked on one "test" text box but not the one I wanted it to work on. I am getting an error "Compile Error....Procedure declaration does not match description of event or procedure having...
  30. Replies
    9
    Views
    1,539

    Re: txtBox KeyPress Event?

    Well thank you. I was going nuts. That worked, although in the IDE, it does NOT correct the case of the text box name like it does for everything else.

    Private Sub dvmtimes_KeyPress(KeyAscii As...
  31. Replies
    9
    Views
    1,539

    txtBox KeyPress Event?

    I have my computer's blue tooth hooked to my shop's stereo and I listen to SeriusXS via their App.

    While I am using VB6 and hit <enter> in a text box, my speakers experience a very loud <Ding>...
  32. Replies
    147
    Views
    21,408

    Re: [RESOLVED] LED.OCX & Windows 11 Pro

    That's for sure!

    Here is an example of a program I have been reworking that uses the LED extensively (sorry for the poor resolution) I tried to make it smaller so I could use it here:

    That's...
  33. Replies
    147
    Views
    21,408

    Re: LED.OCX & Windows 11 Pro

    I think a right-click refresh worked.

    I had another issue earlier in this project rewrite when the control on the forms (four forms that use the LED), just went BLACK and had to be replaced. I...
  34. Replies
    8
    Views
    921

    Re: INSTR Function and letter case

    Interesting idea. I do think it might have been a Win7 thing. It just never popped up before and took me by surprise a little; no big deal, but I said "It never did that before!" - lol
  35. Replies
    8
    Views
    921

    Re: INSTR Function and letter case

    ""Option Compare"""

    I've searched for it and can not find that. I've never used it before. Not sure, what is going on. When I get this version done, I will bring it on the Win7 machine and...
  36. Replies
    8
    Views
    921

    INSTR Function and letter case

    A program written years ago in Windows 7 worked fine and now revamping it under windows 11, I have run in to an interesting issue. Well, it's not really much of an issue, but I am not sure why it...
  37. Replies
    147
    Views
    21,408

    Re: LED.OCX & Windows 11 Pro

    Elroy,

    I have been using your LEDUSerControl with success these last few months, but it can be somewhat delicate to changes in the VB6 IDE environment.

    By that I mean, that it seems if I add...
  38. Stupid Question: Is it Possible to Output a "Delta" symbol to a text file?

    A test program I just finished outputs its data to a CSV text file. Excel is then used as the report generator.

    Is it possible to output the "Δ" symbol to the text file?

    I am doubting it out...
  39. Re: Program flow during an _OnComm Event (MSCOMM32.OCX)

    Thank you, the problem is that without them it's easy to not to be able to <Ctrl><c> the program and have to shut it down with the task manager. Is there an alternative?
  40. Replies
    5
    Views
    768

    Re: Another bug in the IDE

    I've been able to keep up to at least 32,000 characters in a text box. Here's code I use:



    Public Sub TextAdd(Optional Text As String)
    Dim n As Integer, L As Double, X As Integer
    Dim...
Results 1 to 40 of 126
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width