Search:

Type: Posts; User: vb5prgrmr

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    7
    Views
    4,440

    Re: How to add record to Random Access File

    you know what they say about ass-u-me... :)
  2. Replies
    3
    Views
    729

    Re: active file maintanence/deletion

    First sentence, did you mean military intelligence?

    All comments aside, a hint would be the Dir Function...



    Good Luck
  3. Re: EXE wont build unless path name is shorter

    GetShortPathName API or MAX_PATH...


    Public Declare Function GetShortPathName Lib "kernel32" Alias "GetShortPathNameA" (ByVal lpszLongPath As String, ByVal lpszShortPath As String, ByVal...
  4. Replies
    13
    Views
    15,120

    Re: Saving a picture from URL in VB6

    New standard exe project. Add WebBrowser control (Microsoft Internet Controls) and name it WB.


    Private Sub Comman1_Click()
    WB.Navigate "Http://www.somesite.com/path/filename.extension"
    End Sub...
  5. Replies
    23
    Views
    2,207

    Re: Object is missing?

    Please enlighten us Dilettante :)
  6. Replies
    10
    Views
    6,906

    Re: Rounded Rectangle Shape

    If you are trying to make a form a rounded rectangle then have a look at the CreateRoundRectRgn API.
    ...
  7. Replies
    2
    Views
    554

    Re: Comparing listboxes

    in sub search
    counter = counter + 1

    in sub display
    text1.text = counter



    Good Luck
  8. Replies
    4
    Views
    2,724

    Re: Why can't .Tif files doesn't open?

    So you are trying to open ao tiff file with your program? Which means you have associated tiff files to your program? I only ask as you are using ShellExecute API to shell out to the default program...
  9. Replies
    19
    Views
    10,046

    Re: Dim db As Database giving error

    You need to add a reference to the DAO object. Check the downloaded project to see which version they added since you are using code from it, and add it to your new project. You'll find it under VB's...
  10. Replies
    4
    Views
    828

    Re: I want to Login

    Login through this page https://www.libertyreserve.com/en/contact/index.aspx

    and use code from the last post in this thread to display it without having to request another one behind the scenes...
  11. Replies
    6
    Views
    770

    Re: Use of Constants?

    Private Const vbKeyDblQuote = 38
    Private Const vbKeySngQuote = 39
    Private Const strDblQuote = """"
    Private Const strSngQuote = "'"


    :)
  12. Replies
    14
    Views
    2,967

    Re: Find and replace text di vb6

    and still I bet OP has not tried this code...


    Dim My1stArray() As String, My2ndArray() As String, S As String
    Dim LB As Integer, UB As Integer, LoopCnt As Integer

    S =...
  13. Replies
    10
    Views
    4,698

    Re: Control Width - Text width

    Maybe, just maybe, the GetTextExtentPoint32 API work for you...



    Good Luck
  14. Replies
    10
    Views
    1,555

    Re: openfiledialog

    Being able to see the image. The OP is at Microsoft Windows Common Controls....

    Scroll up and look for Microsoft Common Dialog Control 6.0 (SP6)



    Good Luck
  15. Re: About CAB File Extraction, Anyone???

    Check out thescarams.com... (Site down at moment but should be back up later...)



    Good Luck
  16. Re: Mastering Visual Basic 6 Companion CD needed

    >its lot better and powerful than VB6

    That! My friend, is debatable!!! :)
  17. Re: Mastering Visual Basic 6 Companion CD needed

    Ask at the publishers web site... http://wiley.custhelp.com/app/ don't forget to include the info...
  18. Replies
    13
    Views
    1,223

    Re: Small Technicality Question

    It actually comes down to readability... If something then versus if something <> somevalue then... I believe, could be wrong, but both compile to the same byte code and thus there should be no...
  19. Replies
    11
    Views
    10,123

    Re: why is my VB6 not loading components anymore

    FYI: I have had this problem in the past and it occurs becaue of windows updating itself. Happens more often with the webbrowser control versus other controls. Sometimes you just need to delete the...
  20. Replies
    2
    Views
    563

    Re: Accessing MDb on network

    Check your locking and blocking issues with your connection object and wait in minor sleep loop until connection is valid...

    (Welcome Veena :))



    Good Luck
  21. Thread: Adding Video

    by vb5prgrmr
    Replies
    4
    Views
    794

    Re: Adding Video

    MMC (Microsoft Multimedia Control)...



    Good Luck
  22. Re: Is there something that acts and loops like sndPlaySOund, but can play .mp3 files

    MMC (Microsoft Multimedia Control) should be able to play *.mp3's...



    Good Luck
  23. Replies
    3
    Views
    10,243

    Re: Load Menu dynamically from database

    API time if you are really wanting to do this via subclassing, hooking and what not...

    CreateMenu
    InsertMenuItem
    AppendMenu
    InsertMenu
    SetMenu

    and a few more...
  24. Re: Have one form shown behind another form? how?

    It is easier to have one form appear in front of another form as normal drawing is from the back to the front... However, you could try the API with SetWindowPos and HWND_BOTTOMMOST const...


    ...
  25. Replies
    3
    Views
    753

    Re: HTTP Wrapper Stop Function

    Don't really get what you are saying but...


    Option Explicit

    Dim StopProcessing As Boolean

    Private Sub Command1_Click()

    Dim LoopCnt As Integer
  26. Thread: list1 msgbox

    by vb5prgrmr
    Replies
    1
    Views
    540

    Re: list1 msgbox

    freehand...


    For i = 0 to list1.listcount - 1
    '...

    as you are presently saying for integer = string value to integer value...

    Just don't work...
  27. Replies
    8
    Views
    1,228

    Re: [RESOLVED] Collection Items

    While you may have set this thread to resolved. I would like to suggest to you to have a look at the Dictionary object, which is lighter than a collection, but requires you to add a reference to the...
  28. Replies
    1
    Views
    504

    Re: combo box with database

    Use a select distinct query to populate the first, second, third...




    Good Luck
  29. Replies
    6
    Views
    968

    Re: Web Browser Conrol Help - 1 (Download)

    Okay, I put debug.print statements in every event the wb exposes and have only shown the relevant. The : then seperates arguements of the event if any...

    ...
  30. Replies
    3
    Views
    586

    Re: Paste to a textbox

    Use the GotFocus event to set a variable to know which textbox has the focus...

    start a new standard exe project, add text box (Text1), add another text box (Text2), add another text box (Text3)...
  31. Replies
    23
    Views
    1,812

    Re: VB6 Simple Database Search and Return

    Since you alread know about your friends (yahoo, google, ask, answers, bing), I'll give you the search terms you need.... vb6 ado tutorial

    Then, see http://www.connectionstrings.com



    Good...
  32. Replies
    6
    Views
    968

    Re: Web Browser Conrol Help - 1 (Download)

    Please reread Post #2 very carefully... and if the beforenavigate event does not work, use the filedownload event with the same advice... cancel = true urldownloadtofile...



    Good Luck
  33. Replies
    13
    Views
    1,544

    Re: Trouble Shooting Tips/Assistance Requested

    Sounds like you may have to install a MDAC, which you can get from M$...



    Good Luck
  34. Thread: About Forms.

    by vb5prgrmr
    Replies
    6
    Views
    839

    Re: About Forms.

    Just the close button? or the whole control box? (hint = false, see properties :) )

    Just the button? See http://vbnet.mvps.org/index.html?code/forms/killclose.htm



    Good Luck
  35. Replies
    13
    Views
    1,544

    Re: Trouble Shooting Tips/Assistance Requested

    A quick check to see if something is missing is the check the OS service pack and see if the machine was missed...



    Good Luck
  36. Replies
    4
    Views
    1,949

    Re: Voice control?

    Did you download the Speech SDK from M$? Did you set/add a reference to the correct libraries?

    BTW, 5.1 can be found here>...
  37. Replies
    3
    Views
    649

    Re: Accessing database on a remote server

    see http://www.connectionstrings.com for a DSN Less connection string that you can use with RDO and ADO...



    Good Luck
  38. Thread: About Forms.

    by vb5prgrmr
    Replies
    6
    Views
    839

    Re: About Forms.

    And you will have to use the API SetParent to make form2 a child of form1 and when you do this, you will get some undesirable results. Like when form2 has focus, form1 will look like it is disabled...
  39. Replies
    18
    Views
    1,588

    Re: External .exe file input

    Lets see a screenshot of the dialog... A common dialog is displayed with most any program when you go to saveas, open, select a font, or select colors. This same dialog you would see in word, excel,...
  40. Thread: About Forms.

    by vb5prgrmr
    Replies
    6
    Views
    839

    Re: About Forms.

    What it sounds like you are wanting to accomplish is a MDI interface... So as a test, start a new standard exe project, add a MDI form, change Form1's MDIChild property to true in the properties...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width