Search:

Type: Posts; User: Bob_too

Search: Search took 0.02 seconds.

  1. Re: Check which keyboard is typing [BARCODE SCANNER]

    Some barcode scanner wedges allow the addition of a pre-amble (and post-amble) into the data stream. The pre-amble might be useable as a flag of sorts to mark the origin of the data (ie which...
  2. Re: Invalid use of null Error, when ever i tried to check previous date using DTPicke

    Arghhhhhh!! Run!
  3. Replies
    30
    Views
    2,142

    Re: How to export / import Picture from Database?

    Suzoki,
    1. will every record contain a pic?
    2. what size are the pics?
    Answer the above first. I'd suggest NOT storing the pics with the data unless they're small (~2-3KB each). Store the path to...
  4. Re: Process data from bookmarked row of datagrid to text box

    Plamen, I think you're looking for a bookmark for the selected row in your child grid:
    dbgrid.bookmark

    Pass the BM to the data control on your edit form. That should get you the correct record in...
  5. Re: VB3 - How to word-wrap a long string of Text?

    Correct, compile to native EXE's started in VB5. Everything before is pcode, I think.
  6. Re: VB6 Professional - still available? reasonable price?

    Thanks but no. I've got complex routines where I want to see the vars dimensioned in one location only.

    Program control structures, as in: If..Then. Do..Loop, For..Next, Select Case..End Select...
  7. Re: VB6 Professional - still available? reasonable price?

    Now this I didn't know. Time to have that chat with MS. Thanks for the info.
  8. Re: VB6 Professional - still available? reasonable price?

    Actually the above isn't that far off-base. I tried vb.net 2010 for giggles a while back. Control structures seemed identical to vb5. What I didn't like was the habit(?) of mixing DIM with code. I...
  9. Re: VB6 Professional - still available? reasonable price?

    Depending on what MS has to say I might be staying in VB5. We'll see what they say Tuesday.

    I've had people pushing me towards VB.net but it makes little sense. I don't know .net well and any...
  10. Re: VB6 Professional - still available? reasonable price?

    Thanks for the replies. Buying VB privately will be a 50/50 shot. I'm going to try MS on Tuesday morning to see what they suggest. If the purchase .net and get VB6 offer still stands I'd be real...
  11. VB6 Professional - still available? reasonable price?

    Currently running VB5 Pro. Have a ton of VB source all the way back to VB3. Source conversion to VB.net is not in the cards unless someone (not me) is covering some of the cost.

    Can I still buy...
  12. Re: When i Print Landscape it come message "Report width is larger than the paper wid

    coldlove, check DataReport help, determine which units of measurement DR is using:
    1. twips
    2. pixels
    3. inches
    4. metric
    5. ?
    Without DR units it's impossible to tell you if your paper and...
  13. Re: When i Print Landscape it come message "Report width is larger than the paper wid

    coldlove - setup the laptop and desktop beside each other and compare the settings in the printer dialog. At least one (#22 above) is set to metric.

    So your print job is trying to set:

    .Height...
  14. Re: When i Print Landscape it come message "Report width is larger than the paper wid

    Try commenting out your code as below and then print again. Those H and W dimensions don't make sense.

    With DataReport
    '.Height = 13965
    '.Width = 16965
    .Orientation = rptOrientLandscape...
  15. Re: AT Commands Responding In PuTTY, But Not In VB6

    Simple test, start new project, put an MScomm control and a command button on form one. Paste this code into button_click event and run. If modem not found this code runs forever so click End on the...
  16. Re: AT Commands Responding In PuTTY, But Not In VB6

    What code do you have in the OnComm event? (I need to scrape the fog off me brain, I haven't used the mscomm ctl in like 20 years)
  17. Re: can 2 vb6 apps use a single serial port simultaneously?

    If you control both ends of the serial link you could tag your sent data and have the receiving end decide which app gets it. But the apps wouldn't be able to open the com port directly. You could...
  18. Re: Failed to read large sqlite table (vbRichClient5)

    Also limit the fields. Do you actually need all of them?
    SELECT field1. field2. field3 FROM TableName
  19. Replies
    7
    Views
    2,567

    Re: Trying to automate an Excel procedure

    Counter needs to be Static Integer to retain it's value between calls. Otherwise it's set to 0 each time and you lose your count. The function NumIndValue should be defined as an Integer.
  20. Replies
    15
    Views
    2,509

    Re: Automate or ByPass CSV File Download Dialog

    What protocol did you use to xfer the file?
    What did the URL look like? (don't post the whole url here)
    What does the new URL look like?
    Username and password needed?

    It's probably best to stay...
  21. Replies
    7
    Views
    2,567

    Re: Trying to automate an Excel procedure

    No problem, hope it works for you, I changed it slightly just a minute ago. Should give a good starting point. You may need to remove Private. I wrote it in vb5.


    Private Function NumIndValue(A...
  22. Replies
    7
    Views
    2,567

    Re: Trying to automate an Excel procedure

    This might help. I assumed the actual date is always after proposed date. If not you'll need to change the code. Call the func for each set of date pairs. After the last pair the func returns a...
Results 1 to 22 of 22



Click Here to Expand Forum to Full Width