Search:

Type: Posts; User: Senacharim

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,761

    Re: Wont Make EXE !

    I was running into this problem, and this method solved it.
    Though, I simply copied everything (file and directories) from:

    %CD-ROM%\VB98 (on the first installation disc)

    to

    C:\Program...
  2. Replies
    6
    Views
    7,074

    Re: .NET IsAnyAdapterConnected API to Mobile

    Well, I've tried this out on an iPaq 111 running Windows CE... and I can tell you for sure--no go.

    (Darn shame too, I'm *attempting!* to write some mobile apps of my own... needed the help.)
  3. Re: VB6 - A function for obtaining the Day of the Week given the Date

    Ah, gone and re-coded the wheel, have I?

    Well, live and learn. Thanks for the instructional words of wisdom.
  4. VB6 - A function for obtaining the Day of the Week given the Date

    Alright, actually it's two functions; DayOfTheWeek_S and DayOfTheWeek_I.
    DayOfTheWeek_S returns a string value with the day of the week, and DayOfTheWeek_I returns an integer value (0 to 6) of the...
  5. Replies
    3
    Views
    604

    Re: Custom Graphical Objects

    Ah! The ball!

    Thank you, perfect.

    And now, to run with it.
  6. Replies
    3
    Views
    604

    [RESOLVED] Custom Graphical Objects

    Is it possible to set up a custom-made object type which includes both graphical and numerical datum?

    If so, how would I declare that?

    (all I need is the littlest pointer in the right...
  7. Replies
    1
    Views
    59,367

    Re: Application: Visual Basic 6, Calendar

    Brilliant!

    Precisely that for which I was lacking instruction upon,

    Thank you.
  8. Replies
    7
    Views
    832

    Re: [RESOLVED] How to open a file?

    (So it's a 2 year old thread...)
    Thanks to akhileshbc for teaching me yet another thing. :)

    He obviously whipped the presented code on the spot or from memory.
    For those who want a little...
  9. Replies
    5
    Views
    1,685

    Re: Graphics Server Issue.

    http://www.senacharim.com/Hot_Pics/RU2Count.zip

    Here is the code I'm working with.
    Apologies for the mass code, but my vocation is Firmware Developer, VB6 is an "amateur sideline" for me--doing...
  10. Replies
    5
    Views
    1,685

    Re: Graphics Server Issue.

    Thank you for the rapid response.

    Sadly, I've been all over the MS Knowledge base, and while it's rife with "information" it is sadly lacking in specifics with consideration to "NON-Microsoft...
  11. Replies
    5
    Views
    1,685

    Graphics Server Issue.

    I've got a perplexing issue on some code which I've updated--but wasn't originally mine. (Sucks, too. Wish I'd been first so it could've been make right the first time; rather than piece-meal bug...
  12. Replies
    12
    Views
    18,075

    Re: VB - Select and Use an Animated Cursor

    Have used the animated cursor module to great effect (very cool!)

    Trying to figure a way to have a "mouse-over" affect, wherein it does the animated cursor when over a certain object--and at no...
  13. Replies
    4
    Views
    4,201

    Re: [RESOLVED] VB6 Bits

    For those interested later:



    Dim X, Y, Lop As Long
    X = 255
    Y = 63
    For Lop = 0 To 7
    If (X And (2 ^ Lop)) = (2 ^ Lop) And (Y And (2 ^ Lop)) = (2 ^ Lop) Then
    Debug.Print Lop; "Yes"
  14. Replies
    4
    Views
    4,201

    Re: VB6 Bits

    Marvelous! Wish I'd thought as clearly and quickly.

    Thank you.
  15. Replies
    4
    Views
    4,201

    [RESOLVED] VB6 Bits

    While I'm aware of the AND, OR, XOR (etc) operators, I need to know (before I go about making one...) if there's a way to directly compare/examine only one bit in a given variable...

    [Dream...
  16. Thread: Mouse Event

    by Senacharim
    Replies
    2
    Views
    649

    Re: Mouse Event

    Image_MouseMove
  17. Re: Shortcut Key through entire application

    The bulk of the code can reside in the module (the function),
    which leaves very lite work to go thru the various forms (provided you've a limited number of forms, of course).
  18. Replies
    6
    Views
    680

    Re: Create a file?

    Honestly, I don't recall.
    For ini type stuff I use GetSetting and SaveSetting to just read/write the values from/to the registry.

    Should all else fail, when you need changes you can use the KILL...
  19. Re: Shortcut Key through entire application

    attach a module, have the various forms call to a Public Function in the module on the form_keydown.

    So, every module will have something like this:

    Private Sub Form_KeyDown(blah blah blah)
    ...
  20. Replies
    6
    Views
    680

    Re: Create a file?

    Open "TESTFILE" For Output As #1
    Write #1, "WindowMode" "0"
    Write #1, "Graphic", "0"
    Write #1, "ColorBPP", "16"
    Write #1, "Network", "0"
    Write #1, "CameraInvert", "false"
    Write #1,...
  21. Replies
    6
    Views
    680

    Re: Create a file?

    Look in the help files at the "OPEN" command.
  22. Re: [RESOLVED] How To Refresh an Objects index...

    Yeah, I'll be revising it to work with a program which will add picboxes as needed.

    The code you gave me isn't the code I'll be using, but the method demonstrated will be simplified and applied on...
  23. Re: How To Refresh an Objects index...

    Nice. This gives me some direction. Thank you.
  24. [RESOLVED] How To Refresh an Objects index...

    I have 2 picture boxes on a form, setting right next to each other, no space in between.

    The goal is to be able to smoothly "draw" pixels on one and the other.

    Using only 1 picture box is not...
  25. Replies
    4
    Views
    603

    Re: Old Style Data Read

    I realize there's better ways, and when it comes to finalization time; those are the ways I'm using.

    I needed a quick & dirty way (for pre-finalization testing) to shove the correct values into...
  26. Replies
    4
    Views
    603

    [RESOLVED] Old Style Data Read

    I've been wracking my brain for hours, searching through books, and searching this forum... and for the life of me cannot remember the command(s).

    In old-time basic, it went something like this:
    ...
  27. Replies
    4
    Views
    5,530

    Re: Barcode scanner - Detecting on USB.

    The barcode scanner we have here (believe it or not) spits out the data in ascii characters, just as if somebody had typed them on the keyboard--only faster. It, too, is usb.

    Does the one you're...
  28. Re: Intermittent Error - Subscript out of range

    Very true. In VB6 you can step thru a program via F8.
  29. Re: Intermittent Error - Subscript out of range

    Yes, exactly.
  30. Replies
    4
    Views
    5,530

    Re: Barcode scanner - Detecting on USB.

    When the USB barcode scanner is plugged in, it'll likely put a registry entry for itself in HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM

    (I cannot say for certain on that, but I can tell you...
  31. Re: Intermittent Error - Subscript out of range

    After the goto header, have the program write:

    err.number
    err.description

    to a log file or something of that nature... and likely throw in an identifier of which function is was from... so,...
  32. Replies
    7
    Views
    695

    Re: Showing hidden forms

    Ooh! You could use a clipboard hook, and only re-appear when a certain string is entered into the clipboard.

    There's a clipboard hook module somewhere on these forums... if only I could remember...
  33. Replies
    7
    Views
    695

    Re: Showing hidden forms

    You obviously fail to grasp the logic involved with the described situation.
  34. Re: Help Sending text from text box every 60 secs

    The first code presented there will refresh EVERY 60 seconds.

    If you want it to NOT refresh every 60 seconds, it would look like:


    Private Sub Timer1_Timer()
    Text2.Text = Text1.Text
    ...
  35. Replies
    1
    Views
    500

    Re: dynamic controls

    You'll need to call that particular script, tying the action to an event on the spreadsheet.
  36. Replies
    8
    Views
    1,734

    Re: Reading from a file into an Array in VB6

    Pull the file into one (big) string.
    Calculate the number of PC's based upon the number of vbcrlf...
    Redim your dynamic array to that size,
    execute a for-next loop and split the string into your...
  37. Re: how to find bluetooth is connected with which com port usning vb6.

    Did this ever get resolved?
    I happen to be working on a similar conundrum at present...
  38. Replies
    14
    Views
    1,222

    Re: Progress bar and timer

    ProgressBlit = (100 / HowManyCyclesWeAreDoing)
    'the progressblit sets the increment, or how far the progress bar moves for_
    each cycle.
    i = 0
    ' i is the counter, for how many loops for...
  39. Re: Need help in converting data from file to database

    Can you please post a good little sample of the actual data being worked with (or at least a plausible analog)?
  40. Re: Need help in converting data from file to database

    Parse the data for each field to find and replace an "invalid" character with an acceptable one.
Results 1 to 40 of 56
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width