Search:

Type: Posts; User: Bonnie West

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    12
    Views
    5,588

    Re: Individual Process Memory Usage

    @ harish3092 and (in case you're still interested) Nethacker-010

    Have a look at the GetProcessMemoryInfo API function. And since you're both using VB.NET, try asking in the VB.NET forum.
  2. Replies
    3
    Views
    20

    Re: 6 Dimensional Array Problems

    @ asymetrix

    It looks like SuperDave00 won't be coming back anymore; see his OP's time-stamp. ;)


    @ -=Te[]v[]eR=-

    It appears you're using VB.Net. I've asked the moderators to move your post...
  3. Thread: Odl

    by Bonnie West
    Replies
    4
    Views
    206

    Re: Odl

    In the MSDN Library that came with Visual Studio 6.0, there is an article by Bruce McKinney entitled "Stealing Code with Type Libraries". It can be found under Technical Articles >> Visual Tools >>...
  4. Replies
    5
    Views
    100

    Re: Error not being caught (RTE 76)

    Try the following modifications:



    Public Sub DownloadFile(ByRef sURL As String, ByRef sFilePath As String)
    Dim bytData() As Byte
    Dim FN As Integer
    Dim sDir As String...
  5. Replies
    17
    Views
    171

    Re: ImageCombo like combobox Dropdownlist?

    SetWindowPos couldn't change the height of the ListBox portion either.



    The CB_SETMINVISIBLE message says:



    However, MS Win Common Controls 6.0 remains unaffected even if the manifest...
  6. Replies
    1
    Views
    78

    Re: need help listview image

    ListView.SelectedItem.Icon = 1
    ListView.SelectedItem.SmallIcon = 1
  7. Re: Controls not showing in toolbox

    Can you post a screenshot of what you've selected?



    Well, tell us first how you did it...
  8. Replies
    13
    Views
    261

    Re: help extract this string

    Hi Doc! :)

    I was just following this tip from the manual:



    I usually tend to favor speed over memory. That's why I typically use the appropriate type for my variables, constants and numeric...
  9. Replies
    17
    Views
    171

    Re: ImageCombo like combobox Dropdownlist?

    Indeed, the ImageCombo control from MS Windows Common Controls 6.0 is limited to the vbComboDropDown style only.



    It's from Image ComboBox Control. MSDN says that the "ComboBoxEx controls...
  10. Replies
    27
    Views
    1,034

    Re: Prevent windows shutdown

    You should've made that clear right from the start. :cool:



    ShutdownBlockReasonCreate already does that. Isn't that what you want? The SHUTDOWN_BLOCK_REASON constant in the example code in post...
  11. Replies
    2
    Views
    101

    Re: Window showing on top of application

    Try:


    Me.Show vbModal, Form1
  12. Replies
    17
    Views
    171

    Re: ImageCombo like combobox Dropdownlist?

    http://www.codeproject.com/KB/combobox/ImageComboBoxControl/ImageComboBoxScreenShot.JPG http://i.msdn.microsoft.com/dynimg/IC510541.png
  13. Thread: Odl

    by Bonnie West
    Replies
    4
    Views
    206

    Re: Odl

    Here's the official documentation:

    Type Libraries and the Object Description Language
  14. Replies
    1
    Views
    85

    Re: Closest thing to VB on Mac

    Try Xojo (formerly Realbasic).



    Yes. See Comparison of platform virtual machines.
  15. Replies
    4
    Views
    177

    Re: how to read things inside any window

    Can you post how you used that function? It appears from your screenshot that you want to retrieve the text of the ComboBox control. Have you made sure that the window handle you've acquired actually...
  16. Replies
    4
    Views
    177

    Re: how to read things inside any window

    Try the GetWindowText function or the WM_GETTEXT message:



    #If True Then

    Private Declare Function GetWindowTextW Lib "user32.dll" (ByVal hWnd As Long, ByVal lpString As Long, ByVal nMaxCount...
  17. Replies
    27
    Views
    1,034

    Re: Prevent windows shutdown

    Option Explicit

    'Reason string should be <= MAX_STR_BLOCKREASON, else it is truncated
    Private Const SHUTDOWN_BLOCK_REASON As String = "Unable to shutdown for some reason."

    Private Const...
  18. Re: Using LaVolpe's AlphaImgCtl activeX within a controls array mouse events problem!

    You're welcome! You may now mark this thread :check: Resolved!
  19. Re: Using LaVolpe's AlphaImgCtl activeX within a controls array mouse events problem!

    The button Integer parameter shadows the button control. Rename the control to something else to avoid name collision.


    EDIT

    According to Shadowing Form Properties and Controls, you can also...
  20. Replies
    75
    Views
    62,361

    Sticky: Re: Visual Basic API FAQs

    Should be:


    ByVal wParam As Long



    hWnd was declared implicitly as a Variant.
  21. Thread: Ocr

    by Bonnie West
    Replies
    10
    Views
    164

    Re: Ocr

    Why do you want to do that?
  22. Replies
    10
    Views
    193

    Re: help of visual basic form

    Try:

    Visual Basic Decompilers

    VB Decompiler

    VBReFormer
  23. Replies
    10
    Views
    193

    Re: help of visual basic form

    From Form File Loading Errors:



    When VB saves a FRM file, it first fills it with spaces before writing the actual code. I'm afraid VB never got the chance to completely save your FRM file when...
  24. Replies
    10
    Views
    193

    Re: help of visual basic form

    Since FRM files are just plain ASCII text files, you can open them in any suitable text editor (such as Notepad). You can extract binary data from FRX files using any of these codes from PSC. There...
  25. Replies
    23
    Views
    318

    Re: API get pixel

    Actually, I just modified the OP's code a bit, but you are right, of course! :thumb: Accessing the Width and Height property of the Picture property of the PictureBox control will definitely be...
  26. Replies
    27
    Views
    1,034

    Re: Prevent windows shutdown

    In case you've overlooked post # 4 above, see the last paragraph.
  27. Replies
    23
    Views
    318

    Re: API get pixel

    There is a Text Color drop-down button on the editor's toolbar.
  28. Replies
    23
    Views
    318

    Re: API get pixel

    Well, they don't always correspond with the dimensions of the Picture property, so they're also unreliable. A PictureBox can be bigger or smaller than the Picture assigned to it, thus its...
  29. Replies
    4
    Views
    141

    Re: Explorer style fallback thumbnails

    I'm afraid it's not open-source. :(


    BTW, have you already tried using the SHIL_JUMBO constant with the SHGetImageList function?
  30. Replies
    23
    Views
    318

    Re: API get pixel

    Because Picture1.Width and Picture1.Height returns the size of the PictureBox control itself while the dimensions of the PictureBox's Picture property are obtained through the similarly named Width...
  31. Replies
    23
    Views
    318

    Re: API get pixel

    As you can see, you don't understand what that magic number means. Therefore, you should avoid magic numbers whenever possible. Use constants instead!



    Option Explicit

    Private Sub...
  32. Replies
    4
    Views
    141

    Re: Explorer style fallback thumbnails

    Though not a direct solution to your problem, you may, however, find ShellBrowserControls interesting. See the screenshots.
  33. Replies
    23
    Views
    318

    Re: API get pixel

    Judging from the screenshot, I think rpool wants to retrieve each bitmap file's image dimensions. If so, then the GetDIBits function might help achieve that.
  34. Replies
    35
    Views
    594

    Re: [RESOLVED] App Crashes Only If Shelled

    He already have.
  35. Re: How to detect a running application (VB6)

    See the FAQ How can I allow only one instance of my application to run at a time?



    http://www.vbforums.com/attachment.php?attachmentid=98017&d=1363908751
  36. Re: [RESOLVED] How can I remove the focus rectangle?

    Keep in mind though, that any control (including windowless controls) always have greater overhead than a simple API call. ;)
  37. Replies
    11
    Views
    198

    Re: Errror selecting internet control

    You may also want to try this workaround.
  38. Re: [RESOLVED] help with 2 list box checking if contains

    Just swap the arguments:


    If InStr(List2.List(J), List1.List(i)) Then

    Note List2's J index. ;)
  39. Re: help with 2 list box checking if contains

    Refer to the link I've given. Read carefully the descriptions of the string1 and string2 parameters. You'll then see why it didn't work. :cool:
  40. Re: help with 2 list box checking if contains

    I believe you already know how to use InStr, right? ;)
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4