Search:

Type: Posts; User: IHappenToBe

Search: Search took 0.02 seconds; generated 17 minute(s) ago.

  1. Re: VB6: How to check whether a PC of my workgroup are on or off?

    Thanks, RinoBull! :)
    Worked out perfectly
  2. Re: Other Abbreviations like "?" = "print"?

    ¿? what do you mean? :confused:
  3. [RESOLVED] VB6: How to check whether a PC of my workgroup are on or off?

    In my Windows' workgroup I have several PC. I can access them via:
    \\PC1
    \\PC2\documents
    \\PC3
    etc

    Now, how can I check if they're on or off?
    I came up with this:
  4. Replies
    9
    Views
    46,004

    Re: Anchor & Dock For Automatic Resizing

    Is there anything similar to Anchor/Dock in VB6?
  5. Replies
    19
    Views
    4,099

    Re: Is EXE file able to be decompile?

    So, VB.NET applications are easy to decompile. What about VB 6.0 applications?
  6. Re: Other Abbreviations like "?" = "print"?

    Yes, but it's the only typo that vb corrects... why is that?
    I wish they included something like Exit Fn, that automatically corrects to Exit Function.
  7. Other Abbreviations like "?" = "print"?

    Hi!
    I know this isn't a very helpfull post, but...

    Do you know more abbreviations like:

    ? = Print
    ENDIF = End If
    Ado.Recordset!address = Ado.Recordset.fields("address")
  8. VB6: How to set margins when exporting to Excel or Word?

    Since I can't manage to print in VB6 with high quality (with every code I try, the printing looks pixelated and grey)... I resolved to export:

    * via RichTextBox, to Microsoft Word
    (.SaveFile...
  9. Replies
    7
    Views
    94,916

    Re: Insert New row into Excel Using VB

    I don't understand why people need to give so complicated answers.

    Let's say you need to insert a row between rows 4 and 5:


    Spreadsheet1.Range("5:5").Insert

    That's it.

    Or, if you want...
  10. Re: VB6 + ADO. When I unload form... a misterious thing happens

    Well, there wasn't a question, actually, so, it is solved?
    I found a way to solve the problem: MoveFirst instead of Update works, it saves the recordset.
    But I still don't know why that happened....
  11. Re: VB6 + ADO. When I unload form... a misterious thing happens

    About not using databound controls, I know I shouldn't, but it's so easy, and the code looks so clean... "To get confortable with code-bounds data" is in my to-do list.

    About Form2 not being...
  12. [RESOLVED] VB6 + ADO. When I unload form... a misterious thing happens

    I've found this "mistery":

    I've simplified everything and took it to the minimmum so it's simple and clear:
    I have 2 forms, in each one:
    * 1 AdoDc (each one linked to the same database, to the...
  13. Replies
    2
    Views
    1,524

    Re: Semi transparent text box?

    there are post about semi-transparent Forms, and there are post about completely transparent textboxes.

    SO:
    You could do a fully transparent textbox over a semi-transparent form over your...
  14. Re: [VB6+ADO+LAN] I ask for your advice: How to install software in company with LAN

    Thank you, Si!
  15. [RESOLVED] [VB6+ADO+LAN] I ask for your advice: How to install software in company with LAN

    I've made a software for a Company and I'll do the installation in several computers linked in a domestic lan.

    I ask for your advice, which one of the following ways is the best:
    1) Install the...
  16. Re: [VB6] ADO: CancelUpdate+Refresh goes to first record

    Thank you very much, Karim. And I'm very sorry I modified the originial question a minute later... I decided to make it more simple and punctual. (Your answered helped both the original and new...
  17. [RESOLVED] [VB6] ADO: CancelUpdate+Refresh goes to first record

    Hi.

    This is the typical ADOControl linked to textboxes.

    I need to do a very simple thing: You press the "Cancel changes" button, and I want to restore the content of the textboxes (all linked...
  18. [VB6] Configurable little balls following the mouse

    The title says it all, pretty much.
    It's not a properly game, it's more like the result of 2 hours of boredom. You can play with it, though.
    :wave: Enjoy!

    Languages: English and spanish
    Source...
  19. Re: [VB6] Which files are necessary for running my .exe in other PC?

    LaVolpe:

    * The program works perfectly in PC, both in VB and stand-alone, in exe, and no errors ocurrs during compiling
    * About the installation, no, I copied the files myself, but I can assure...
  20. [VB6] Which files are necessary for running my .exe in other PC?

    Which files are necessary for running my .exe in other PC?
    I copy:

    * The .exe itself
    * The files my programs opens during execution
    * The .ocx components I added (e.g....
  21. vb6: A very simple error I'm having (Show/Unload)

    Well, this is so stupid that you're probably going to laugh at me, I'm already blushing.

    I have this error:

    Form1:

    Private Sub Form_Load()
    '...code...
    CheckNewMails.Show vbModal, Me...
  22. Replies
    2
    Views
    698

    Re: Position in datagrid

    I found it!
    It's "absoluteposition"
    So, if you want to refresh your ADODC without loosing your position:


    a = ADODC.Recordset.AbsolutePosition
    ADODC.Refresh
    ADODC.AbsolutePosition = a
  23. Replies
    10
    Views
    1,128

    Re: datagrid update / refresh problem

    Thank you, dilettante!
    A minute ago, I was (again, this time more carefully) asking values to every property of ADODC, and I found that AbsolutePosition throws the same value, now I'm wondering...
  24. Replies
    10
    Views
    1,128

    Re: datagrid update / refresh problem

    Hi there.
    I'm having the same problem.
    So, if you already solved it, please tell me how.
    It looks like I'm missing a method, like:

    a = ADODC.Recordset.POSITION
    ADODC.Refresh
    ADODC.POSITION =...
  25. Replies
    2
    Views
    698

    Re: Position in datagrid

    Hi there.
    I'm having the same problem.
    So, if you already solved it, please tell me how.
    It looks like I'm missing a method, like:

    a = ADODC.Recordset.POSITION
    ADODC.Refresh
    ADODC.POSITION =...
  26. VB6: MsFlexGrid inside a PictureBox doesn't print (printer)

    I have a Picturebox with a MsFlexGrid on it, among other controls.
    When I print (via printer) the Picturebox, every control on it is printed except the MsFlexGrid, and I need it printed as well.
    ...
  27. Replies
    15
    Views
    4,084

    Re: Printing ENTIRE form/Picture Box

    I get an error: "Sub or Function not defined"
  28. Replies
    4
    Views
    655

    Re: Data Grid Selection by row

    Would you be kind of marking this thread as resolved?
    Thread Tools > Mark as solved
  29. Replies
    5
    Views
    1,384

    Re: [RESOLVED] Datagrid cell selection

    Ok, Taigon, if you figured it out, please be kind of telling us how. Keep in mind that there's people, like me, that search in old forums for answers.
  30. Re: VB6 + ADODC = Terrible headache! Please please please help me...!

    Ahhhhhhh.......... sweet relief!!!!!

    I only needed 1 sweet word to bring me back to life! RecordSource!

    All you need to execute SQL in vb6 is:

    ADODC.RecordSource = SQLCommand$
    ADODC.Refresh
  31. Replies
    4
    Views
    4,621

    Re: [RESOLVED] BitBlt keeps flickering...

    @FireXTol:

    oohh, that's so clever!
    Thank you so much!
  32. Replies
    8
    Views
    2,333

    Re: [RESOLVED] Compile Error

    ..."resolved"?
    Not 100%

    I add some information: This error also ocurrs when you change the default Object Library, and nothing to do with Index. I've been there. I even erased all controls in...
  33. Re: VB6 + ADODC = Terrible headache! Please please please help me...!

    Hi!
    Thank you a lot, but no.

    1) I've tried it a lot and it doesn't work.
    DataSource is not a member of ADODC
    (ADODC.DataSource doesn't exist)

    However, although ADODC.Recordset.Datasource is...
  34. [RESOLVED] VB6 + ADODC = Terrible headache! Please please please help me...!

    Oh God this is KILLING ME!! :eek2:

    First of all, please don't tell me I didn't bothered searching for an answer in other posts. I've spend 2 whole days seeing if my problem was already solved in...
  35. Re: make background of textbox transparent? Is it possible?

    Oh my God Dilettante!!
    This changes mi VB life!
    So simple (=little code) and SO GREAT!!!

    I'll thank you all my life for that
  36. Re: make background of textbox transparent? Is it possible?

    .......Yes. However, I've been told that the old textboxes had the Transparent property, and they can be loaded from the "Microsoft Forms 2.0" component (FM20.dll). But they don't seem to work, at...
  37. Replies
    4
    Views
    4,621

    [RESOLVED] BitBlt keeps flickering...

    BitBlt keeps flickering, I don't know why.
    Could you help me please?

    I've kept this program as simple as possible.
    There is the background, the floor which moves to the left and the hero who...
  38. Replies
    22
    Views
    54,357

    Re: VB 6 - BitBlt

    Sorry for intruding again, I'd hate to be an pain in the *** in my very 2nd BitBlt day, since you're on it at least since 2003.

    I just realized something it may be intresting:
    there is no need...
  39. Replies
    22
    Views
    54,357

    Re: VB 6 - BitBlt

    Thank you, Pino.
    Oh, now I get it: BitBlt is like GET - PUT in QuickBasic!
    And it's 100% flickering-proof, right?

    I know the thread is very old, but I haven't found any step-by-step tutorial on...
  40. Replies
    22
    Views
    54,357

    Re: VB 6 - BitBlt

    Ok, but.......
    To get to the result the example produces, it's a lot more simple to just put an Imagebox with the island and over it a Imagebox (transparent gif) with the hero. A LOT more simple.
    ...
Results 1 to 40 of 40



Click Here to Expand Forum to Full Width