Search:

Type: Posts; User: John McKernan

Page 1 of 13 1 2 3 4

Search: Search took 0.49 seconds.

  1. Replies
    6
    Views
    570

    Of course, whoever d/l it may have stored it...

    Of course, whoever d/l it may have stored it anywhere.
  2. Replies
    7
    Views
    881

    glad to

    glad to
  3. glad to

    glad to
  4. Replies
    7
    Views
    881

    Look in my post at the bottom of page 1, there's...

    Look in my post at the bottom of page 1, there's a project attached.
  5. Replies
    7
    Views
    881

    Here's one...

    Here's one
  6. If you are not unloading or hiding them, then...

    If you are not unloading or hiding them, then they are still there. In order to close any open child form when a new child form is opened, place this procedure in a module or your MDIForm:

    Public...
  7. Replies
    117
    Views
    7,765

    Have you joined and logged in? I don't see you...

    Have you joined and logged in?

    I don't see you on the member list (not as Mushroom Realm anyway).
  8. Replies
    117
    Views
    7,765

    Re: Galahtech

    Certainly galahtech mods would not delete a post without real cause, and definitely not for being a newbie question. In fact, if a post is deleted, the mod would PM you and tell you why, not just...
  9. Replies
    117
    Views
    7,765

    Are you serious, Marty? Take a look at the sticky...

    Are you serious, Marty? Take a look at the sticky topic in just about every forum.
  10. Replies
    25
    Views
    1,124

    Question: How long till we can expect mass pm's...

    Question: How long till we can expect mass pm's and mass emails huckstering all sorts of nonsense?
  11. Replies
    25
    Views
    1,124

    Sorry Matt, but that is not even a poor attempt...

    Sorry Matt, but that is not even a poor attempt at disguising an ad.

    Well guys, I will give you this, it took longer than I thought. I understood the banner ads, you have to pay for the site...
  12. Replies
    117
    Views
    7,765

    They're already into Jupitermedia's pocket. Even...

    They're already into Jupitermedia's pocket. Even if the emails / pm's did get throught, they wouldn't even be read.

    I agree, the ads didn't bother me, spam posts are beyond ridiculous.
  13. Replies
    10
    Views
    735

    Follow the 'Validating Clipboard data before...

    Follow the 'Validating Clipboard data before Paste' link in my sig.
  14. Glad to help, Joacim!

    Glad to help, Joacim!
  15. Replies
    9
    Views
    807

    The ListBox's ListIndex property stores the index...

    The ListBox's ListIndex property stores the index number of each item in the list. It is zero-based, so you will have to add 1 to the ListIndex value to get the number you are looking for. So, when...
  16. Replies
    1
    Views
    440

    From MSDN: Private Sub Drive1_Change () ...

    From MSDN:


    Private Sub Drive1_Change ()
    Dir1.Path = Drive1.Drive
    End Sub
    Private Sub Dir1_Change ()
    File1.Path = Dir1.Path
    End Sub
  17. In Joacim's example, they are arguments, and you...

    In Joacim's example, they are arguments, and you would pass the values from the textboxes to them. So assuming first name is in Text1, last name is in Text2, birthdate is in Text3, and the serial...
  18. Replies
    2
    Views
    665

    A couple examples from the CodeBank: by Aaron...

    A couple examples from the CodeBank:

    by Aaron Young
    by James Stanich
  19. Replies
    5
    Views
    573

    On frmNotes, be sure the declaration for...

    On frmNotes, be sure the declaration for mnuSave_Click has been changed from Private to [b]Public.
  20. Take a look at the attached sample project.

    Take a look at the attached sample project.
  21. I know what you're getting at, and it's actually...

    I know what you're getting at, and it's actually pretty specific to your current project.

    I left you an explanation (you know where to look).
  22. Replies
    31
    Views
    1,369

    Also a Sinclair ZX-81 but without the optional...

    Also a Sinclair ZX-81 but without the optional 16KB ram pack.
  23. You've Dimmed the array as 'sArray' but are...

    You've Dimmed the array as 'sArray' but are trying to populate an array name 'sMyArray'. Assuming that is just a typo here, you've dimmed the array to 0 Redim sArray(0). This will allow you to add...
  24. Using the flexgrid, adjust the column width. ...

    Using the flexgrid, adjust the column width.

    (see attached)
  25. Replies
    7
    Views
    857

    Assuming your label is Label1, do this as many...

    Assuming your label is Label1, do this as many times as you need

    Load Label1(Label1.UBound + 1)
    Label1(Label1.UBound).Visible = True

    You will also have to position each label as needed.
  26. Replies
    4
    Views
    564

    I wasn't disagreeing with you. In fact, in the...

    I wasn't disagreeing with you. In fact, in the picutre posted, the highlight is around the button. I was merely adding a bit more information.
  27. Replies
    4
    Views
    552

    Where have you placed this line of code?

    Where have you placed this line of code?
  28. Replies
    4
    Views
    564

    For the button, you can use a Checkbox in...

    For the button, you can use a Checkbox in Graphical mode.
  29. Its certainly not an impossible task, but there...

    Its certainly not an impossible task, but there are a number of factors to take into account.

    Do a serach, MartinLiss has posted some code he's written to handle this. (He may even have a link to...
  30. Replies
    3
    Views
    387

    To make a simple square blue-glass button: ...

    To make a simple square blue-glass button:

    Create a new layer
    Use the rectangle marquee tool to draw a rectangle of the desired size.
    Fill the rectangle with a color.
    Using the Text tool,...
  31. This is a somewhat simplistic explanation, but it...

    This is a somewhat simplistic explanation, but it involves comparing the normal form dimensions for ScaleHeight / ScaleWidth to the maximized dimensions and computing the percentage change. Then...
  32. Add this declaration: Private Declare Function...

    Add this declaration:

    Private Declare Function HideCaret Lib "user32" (ByVal hwnd As Long) As Long

    To hide the caret from Text1:

    HideCaret Text1.hwnd


    Related function to show the caret...
  33. Click the link in my signature for "Showing your...

    Click the link in my signature for "Showing your app in the SysTray"
  34. Replies
    3
    Views
    402

    phpBB (http://www.phpBB.com) Invision Power...

    phpBB
    Invision Power Board
  35. Replies
    6
    Views
    1,020

    That would be Win2k.

    That would be Win2k.
  36. Replies
    3
    Views
    433

    Just taking a quick glance at these lines ...

    Just taking a quick glance at these lines

    trialbox.Show
    If .UsedDays > 21 Then cmdtrial.Enabled = False

    I am assuming that cmdtrial is on 'trialbox', in which case, try:

    trialbox.Show ...
  37. Replies
    2
    Views
    4,491

    You're absolutely right, blaff. Thanks for...

    You're absolutely right, blaff. Thanks for catching that.

    Sorry to all for the confusion. :o
  38. Thread: Hide All

    by John McKernan
    Replies
    4
    Views
    580

    Dim c As Control For Each c In Controls ...

    Dim c As Control

    For Each c In Controls
    If Not TypeOf c Is Menu Then
    c.Visible = False
    End If
    Next
  39. Thread: Hide All

    by John McKernan
    Replies
    4
    Views
    580

    Dim c as Control For Each c in Controls ...

    Dim c as Control

    For Each c in Controls
    c.Visible = False
    Next
  40. Thread: Oh my...

    by John McKernan
    Replies
    18
    Views
    939

    There's no cookie stored for the one you're not...

    There's no cookie stored for the one you're not logged in at.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width