Search:

Type: Posts; User: dglienna

Page 1 of 13 1 2 3 4

Search: Search took 1.61 seconds.

  1. Replies
    2
    Views
    1,289

    Re: Countdown Timer to certain date

    That would be one way to do it, but if your computer got turned off, or you logged out, the app would stop. If you want an event to fire sometime in the next year (or decade) it'd be best to use the...
  2. Re: I am sick with a fever and just ate a really greasy cheese steak.

    Onions are da bomb!
  3. Thread: GMail down?

    by dglienna
    Replies
    5
    Views
    480

    Re: GMail down?

    Works fine here...
  4. Replies
    11
    Views
    954

    Re: VBF Movie Awards...

    How about "Meet the Parents" home edition? Anyone interested? I know a guy who knows a guy...
  5. Re: I am sick with a fever and just ate a really greasy cheese steak.

    I get the 6" version of either, or cut the large one in half for another meal.
    Same thing with Subway's subs. The 12" subs are on sale once in a while, but I can't finish one. 1/2 is good enough.
  6. Thread: Type Mismatch

    by dglienna
    Replies
    17
    Views
    1,176

    Re: Type Mismatch

    This works:

    Option Explicit

    Private Sub Command1_Click()
    Text1.ForeColor = Text1.Text
    End Sub

    Private Sub Form_Load()
    Text1.Text = vbRed
  7. Thread: Type Mismatch

    by dglienna
    Replies
    17
    Views
    1,176

    Re: Type Mismatch

    .Forecolor is supposed to be a number. What is in the textbox?
  8. Re: I am sick with a fever and just ate a really greasy cheese steak.

    Doesn't look like a Philly Cheese Steak. It looks more like an Italian Beef.
  9. Re: Philips Speech Mike handle player options

    How does it connect to the PC?
  10. Thread: FireFox vs IE

    by dglienna
    Replies
    281
    Views
    12,463

    Re: FireFox vs IE

    We get the cool icon in the url, though :)
  11. Replies
    10
    Views
    1,316

    Re: Why do Celerons suck

    I thought he was talking about a 486. I thought I had W2K running on a 486, so I thought XP would also run. Haven't checked the specs, though. I know it won't install on a 386, though, which I...
  12. Re: Deploying a Visual Basic Express 2005 .exe

    Nope. They would still need Net Framework 2.0.
    You could include it with your app, though.
  13. Replies
    3
    Views
    615

    Re: ComboBox

    Take a look at this code:

    http://vbforums.com/attachment.php?attachmentid=37364
  14. Replies
    10
    Views
    1,316

    Re: Why do Celerons suck

    The system isn't quicker, unless he has the same OS and amount of memory in his computer. I'd hate to run XP on a 486. I used to have a 300A, which I overclocked to 450mhz. The new Celerons are...
  15. Thread: FireFox vs IE

    by dglienna
    Replies
    281
    Views
    12,463

    Re: FireFox vs IE

    Firefox gives you hundreds of pages that you visited IE gives me this:
    It's been a while since I used IE at VBF, though.
  16. Thread: FireFox vs IE

    by dglienna
    Replies
    281
    Views
    12,463

    Re: FireFox vs IE

    It's exactly the same. Except IE gives you the title as well as the url. On different lines.
  17. Thread: FireFox vs IE

    by dglienna
    Replies
    281
    Views
    12,463

    Re: FireFox vs IE

    Fx does the same thing out of your history.
  18. Replies
    1
    Views
    570

    Re: finding flash memory drive

    Welcome to the forums!

    See if this code helps you. It uses a drive list box, and when you change drives, it tells you the type. You could loop from C: to Z: or until you find the correct type.
    ...
  19. Replies
    10
    Views
    1,469

    Re: Access FTP Server

    I would have your program write a batch file that sends the files using the ftp command built into windows. After it's written, your app could just shell it to send the files.

    Figure out how to...
  20. Re: exchange text values in an array

    Take a look at this. Add txt(0), txt(1), and a command button.

    Option Explicit

    Dim str As String

    Private Sub Command1_Click()
    str = txt(0).Text
    txt(0) = txt(1).Text
    txt(1) = str
  21. Replies
    5
    Views
    1,130

    Re: mouseDown, KeyPress?

    This increments a textbox 20 times per second when the button is held down.
    You could use the form caption instead.

    Option Explicit

    Dim flag As Boolean

    Private Sub Form_Load()
    Randomize...
  22. Re: exchange text values in an array

    We need more information. What have you tried? Post some code, and tell us what isn't working, and/or any errors that you are getting, including what line the error is on.
  23. Replies
    1
    Views
    515

    Re: checking if a program is installed

    Randem has an Auto OS Updater file available for download. www.***********
    It will update the OS to the latest version of db drivers.
  24. Re: I am sick with a fever and just ate a really greasy cheese steak.

    Feed a fever and starve a cold, or is it the other way around. I suppose you'll tell us in a little while. :)
  25. Replies
    5
    Views
    1,130

    Re: mouseDown, KeyPress?

    Post your code so we can see what you are trying to do.
  26. Replies
    20
    Views
    876

    Re: Local Area Connection

    Is it there in device manager when you 'can't see it'? What about if you scan for hardware changes? Does it find it? Do you have anything blocking registry access? That might prevent it from being...
  27. Re: Need help with code for program(Listview)

    If you need it in more tha one form, then you should create a module, and make it Public in that, so that you can access it globally.
  28. Re: commandbutton visible/invisible problem

    Press F9 to put a breakpoint on this line:

    If Not rs![Exhibit] = "" Then

    and the hover the mouse, or use ? rs![Exhibit] to see the value of the db field. It may be something other that ""
  29. Thread: |2eM!x

    by dglienna
    Replies
    42
    Views
    1,440

    Re: |2eM!x

    HB! Have some cake!

    http://www.vbforums.com/images/ieimages/2006/01/1.gif

    http://www.vbforums.com/images/ieimages/2006/01/1.gif
  30. Thread: A Nightmare

    by dglienna
    Replies
    28
    Views
    1,009

    Re: A Nightmare

    Indecent Proposals get either you or your property shot in theses parts. You never know who's listening
  31. Replies
    47
    Views
    1,960

    Re: The Palindrome Thread................

    XoXoX
  32. Re: Need help with code for program(Listview)

    Comment out your On Error Resume Next statements, and see where the error occurs. It's usually better to have an error trap in each section, so you can anticipate the error and handle it accordingly.
  33. Replies
    20
    Views
    876

    Re: Local Area Connection

    Is this the same computer with the 100% usage problem? It could be an indicator that the processor is dying.
  34. Thread: Please Help

    by dglienna
    Replies
    6
    Views
    938

    Re: Please Help

    Make sure that everything is backed up before you run the recovery CD's. Different mfg's have different rules. Some don't overwrite Docs & Settings, but some do. Some format the drive and image it...
  35. Replies
    55
    Views
    2,210

    Re: How much does your music tastes vary?

    I just dug out my Cassette/FM Walkman with 4x Equalizer (external) and good Sony headphones. Can't find the rechargeable batteries, but I might buy some and listen while I am commuting again. Might...
  36. Re: Printing Issues - Why is this double spacing?

    I would guess that the Cancel field is too long for the width of the page, causing it to wrap.
  37. Replies
    4
    Views
    649

    Re: Blocking internet access

    It is a Windows service. Your app could run at startup and check the time. At night, it could release the IP, and the task scheduler would reset it. Use both systems.
  38. Replies
    55
    Views
    2,210

    Re: How much does your music tastes vary?

    I studied classical piano for 12 years, so I can appreciate those that like classical music, but I don't really listen to it or play it anymore. I like just about everything, except country music,...
  39. Replies
    4
    Views
    649

    Re: Blocking internet access

    Put an IPCONFIG /RELEASE in the task scheduler at 10pm and IPCONFIG /RENEW in at 8am. As long as she doesn't know a lot about the computer, or turns it off and on, it would work.
  40. Re: Text show Tomorrow day + Time - 1min

    This shows the time and the date.

    Option Explicit

    Private Sub Form_Load()
    MsgBox DateAdd("n", -1, Now)
    End Sub


    It subtracts one minute from the time. You would need two statements to...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width