Search:

Type: Posts; User: k_zeon

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    34
    Views
    12,197

    Re: Charts controls with GDI+

    with all these fixes, can the OP update the origonal zip file to include the updates. tks
  2. Replies
    151
    Views
    163,891

    Re: VB6 - JsonBag, Another JSON Parser/Generator

    I would personely use mdJson.bas

    add to a project
    https://gist.github.com/wqweto/e92dce63a68cd3ff9ca91b053b9510c9

    make sure its named as mdjson.bas

    then add code below
  3. Replies
    8
    Views
    338

    Re: Create a group of objects at rutime ?

    change Dim picbox() As PictureBox to Dim picbox(10) As PictureBox


    or you can

    Dim i As Integer
    For i = 0 To 10
    redim preserve picbox(i) '<<<<<
    Set picbox(i) =...
  4. Replies
    4
    Views
    819

    Re: Need help with SQL Query

    tks for the link
  5. Replies
    4
    Views
    819

    [RESOLVED] Need help with SQL Query

    I have 2 tables tblJob & tblJobSession

    https://www.dropbox.com/scl/fi/k36y5tmzz6xcj2mj4lgc8/tables.jpg?rlkey=gc76enfzzg5rt54gz8g3luz94&dl=0

    I would like to show all Jobs with open jobsessions...
  6. Replies
    4
    Views
    429

    API Viewer 2004 question

    Hi. I have been using the API viewer for a long time and tried to find other newer api's

    1. is there a newer win32api file that has updated api's
    2. or is there a way to import more

    also what...
  7. Replies
    6
    Views
    570

    Re: Richtextbox help required

    slight update to routine to auto expand and reduce the scrollbars on a richtextbox.
    Mainly for as you type the scrollbards adjust and also when deleting text


    Option Explicit
    Dim LargestWidth...
  8. Replies
    6
    Views
    570

    Re: Richtextbox help required

    In case anyone else is interested. I created a simple function to set the Rightmargin as i type
    If you load in a text file, then just call SetRightMargin after the text is loaded and this should...
  9. Replies
    6
    Views
    570

    Re: Richtextbox help required

    tks for the input but this is not what i am after. i dont want to set a preset rightmargin as i only want the scrollbars to be the size of the logest text line

    will use Texwidth before i load into...
  10. Replies
    6
    Views
    570

    Re: Richtextbox help required

    yes, was looking at how to do this using textwidth.
  11. Replies
    6
    Views
    570

    [RESOLVED] Richtextbox help required

    I am loading text from a textfile into a richtextbox.

    By default the text will wrap at the width of the textbox.

    I dont want this to happen. How can i only create a scroll bar when the ext is...
  12. IDE Addin helpt required to create dynamic menus

    I need help with an addin that allows me to insert text in the VB6 ide from a rightclick.
    It all works but i have coded each menu manually and each click so this means a static menu and any more i...
  13. Re: OCX crashes when compiled with binary compatibility

    I tried to use the OCX ( the one ready made) but it wont even add to the VB6 IDE. I get an error.
    Unexpected Error (32810)
  14. Replies
    18
    Views
    1,973

    Re: Recieved Error "End If Without Block IF"

    Hi Eduardo. tks for replying. Yes i know it was a shot in the dark. I suspected it was not poss but i had to ask.
  15. Replies
    18
    Views
    1,973

    Re: Recieved Error "End If Without Block IF"

    tks, so i will leave it here then as no real addin that can code check to spot the error.

    Will keep on coding with trial and error etc.
  16. Replies
    18
    Views
    1,973

    Re: Recieved Error "End If Without Block IF"

    yes but if an If or and Else is in the incorrect position and i have quite a few nested it can be hard to find it. See example below

    I do have an Addin that can find the Start and end Braces...
  17. Replies
    18
    Views
    1,973

    Re: Recieved Error "End If Without Block IF"

    I know this is a very old thread but thought i would ask, sometimes i move chunks of code or remove and sometimes get left with too many End If statements.
    It would be good to have an addin that...
  18. Replies
    6
    Views
    916

    Re: mdjson issues

    tks. thats great. thats for all your help and very quickly.
  19. Replies
    6
    Views
    916

    Re: mdjson issues

    tks that has fixed the issue.
    so out of curiosity , how do you define strict mode or not. and also show it found duplicates. tks
  20. Replies
    6
    Views
    916

    Re: mdjson issues

    so the error shows as

    Error parsing JSON: Duplicate key 'search_main_advanced_search_refiner_genderidentity_option_other' found at position 110182 62589.61

    I validated online and also with...
  21. Replies
    6
    Views
    916

    [RESOLVED] mdjson issues

    Hi all.
    If this is not allowed then if a mod see's this then pls delete/remove

    I have downloaded a page from IMDB after searching for a movie.
    In this page, there is a section that holds the...
  22. Replies
    21
    Views
    1,682

    Re: "FileCopy" to cell phone?

    thanks
  23. Replies
    21
    Views
    1,682

    Re: "FileCopy" to cell phone?

    Hi Olaf
    re post 12# how would i make it so i can copy all files after a certain date from \DCIM\Camera to a folder on PC

    tks. sorry to hijack this post
  24. Replies
    0
    Views
    281

    Question re the VB6 IDE

    In the IDE you have the components section that holds the controls you can drag and drop onto a form.
    On this you can right click and add a new tab (if you will)

    I then rightclick below the new...
  25. Re: Read excel with merged cells into grid control

    thanks all. will test
  26. [RESOLVED] Read excel with merged cells into grid control

    Hi All
    I know how to read in plain excel files and then put this onto a grid control , but when some excel cells are merged
    i dont know how to replicate this to a grid control

    ie if row 1 has...
  27. Re: [VB6] Event based file system watcher in single self-contained class

    added https://dl.unicontsoft.com to AVG exceptions and i can now download the file
  28. Re: [VB6] Event based file system watcher in single self-contained class

    avg antivirus marks it as a virus? pls advise
  29. Thread: Gradient colour

    by k_zeon
    Replies
    4
    Views
    651

    Gradient colour

    I am looking to dynamically create an image for a list control. 16x16
    at present i have an image list with icons 1 - 11

    i would like to give the user the ability to select a colour of their...
  30. Replies
    5
    Views
    766

    Re: READ csv via ADO

    so very weird. i tried it again this morn and it now works with eta but not EtÃ

    does anyone know how to get around this limitation
  31. Replies
    5
    Views
    766

    Re: READ csv via ADO

    so i have the following working, but cannot get the Where clause to work.
    i also change it to eta in the csv file as well just in case vb6 did not the the acent.

    I have commented out the where...
  32. Replies
    5
    Views
    766

    Re: READ csv via ADO

    i had a play around with this myself and its not recognising the semi colon.
    if i replace the semicolon in the csv file with a coma it works.

    how do you make it so a different delimeter can be...
  33. Replies
    5
    Views
    774

    Re: difficult to read this json file

    try this to get you started. pls reply once you tested.


    https://www.dropbox.com/scl/fi/mf1cle58yy80zfgi1z83g/Comuni.rar?rlkey=ycjlevso36w0mo1tkg58ynzy2&dl=0
  34. Replies
    17
    Views
    1,373

    Re: [RESOLVED] Add to Date

    just my 2 cents

    1st , work out what date you are starting from ie 21/01/2023
    you now need to add 6 months from that date you selected.
    check each month after said date and work out how many...
  35. Replies
    4
    Views
    829

    Re: Getting Server Execution Failed error

    so am now thinking of putting all the code that creates the excel file in its own function.
    then calling this function from inside the loop.
    if it fails then use a goto to retry the creation of the...
  36. Replies
    4
    Views
    829

    Re: Getting Server Execution Failed error

    Just went to open excel from desktop and it came up that it needed to restart in safe mode from previous issue.
    I am now thinking that one of the excel files i am creating is creating the error...
  37. Replies
    4
    Views
    829

    Re: Getting Server Execution Failed error

    Hi Peter

    i am using the code below to get the the default user email account to send from as some users have multiple accounts.
    it then attachs the excel file and opens it on desktop ready to be...
  38. Replies
    33
    Views
    6,606

    Re: VB6 and Access Database

    running exe as a standard user, it see's the office installation ie access.
    when running in IDE i assume its as Admin. if so then you would need to have office installed under the admin account as...
  39. Replies
    4
    Views
    829

    Getting Server Execution Failed error

    I have an app that is working on the whole, but every so often i get
    -2146959355 SERVER EXECUTION FAILED

    I am at work and running VB6 as admin but dont have office setup so difficult to error...
  40. Replies
    5
    Views
    838

    Re: HOW TO CHANGE xml file to json by vb6?

    mdJson.bas can convert from xml to json

    https://gist.github.com/wqweto/e92dce63a68cd3ff9ca91b053b9510c9
Results 1 to 40 of 498
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width