Search:

Type: Posts; User: Jabber

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Re: Need a program

    I think you have the wrong attitude for helping people and possible a problem with reading comprehension and maybe this website is wrong for you. You have the right not to respond to me again and I...
  2. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Re: Need a program

    Will try to look into these things.
    time is short these days

    I appreciate your help
  3. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Re: Need a program

    that is why I asked the question.
    "Has anybody made or seen something like this?'

    I need it faster than I have time to learn to program in VS8
  4. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Re: Need a program

    yeah I thought about it.
    lol
  5. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Re: Need a program

    Oh I did post in codebank.

    I thought I moved to the other threads.
    I know the idea how to but just starting VS8 I don't know how to do all that.
    I did make similar program in VB6 years ago and...
  6. Thread: Need a program

    by Jabber
    Replies
    12
    Views
    1,530

    Need a program

    I'm new to Vs8 and need a program.

    I designed program called 'lock out' years ago in VB6 to keep my oldest son of the PC until a certain time in the afternoon.

    I need a similar program to get...
  7. Thread: New to VS8

    by Jabber
    Replies
    8
    Views
    884

    VS 2008 Re: New to VS8

    Oh I don't know if VS8 is difficult. It's just my first day of learning.
    I really liked VB6 and I know it was very limited.
    It took me years to even attempt to learn a new language.

    life is busy
  8. Thread: New to VS8

    by Jabber
    Replies
    8
    Views
    884

    VS 2008 Re: New to VS8

    I got the Mid(text) method from VBtutor.net. Refreshed my memory.
    I don't know another way.

    It's my first day with VS08 and it's not going well



    Do you guys think VS08 and 10 is here to...
  9. Thread: New to VS8

    by Jabber
    Replies
    8
    Views
    884

    VS 2008 New to VS8

    Hey
    I'm an old VB6 coder that is trying to learn VS8 and stuck here


    From form-Load() I call this sub to check a date.
    It does nothing until I click the close button on top corner.
    then it...
  10. Replies
    20
    Views
    1,118

    Re: long length timer

    the method I provided above worked fine.

    Private Sub Timer1_Timer()
    If Timer1.Enabled = False Then Exit Sub

    saveTime = saveTime + 1
    If saveTime = 10 Then Text2 =...
  11. Replies
    20
    Views
    1,118

    Re: long length timer

    The timeserial works but adds an extra minute.
    If you do TimeSerial(0,1,0) you will wait 2 minutes.
  12. Replies
    20
    Views
    1,118

    Re: long length timer

    I got invalid property assignment message on the
    dStop = Now+ timevalue(0,10,0)
  13. Replies
    20
    Views
    1,118

    Re: long length timer

    This dont work for me.
  14. Replies
    20
    Views
    1,118

    Re: long length timer

    Edgemeal is correct about the system clock.
    This would be the easiest way I believe.



    Dim saveTime As Byte

    Private Sub Command1_Click()

    Timer1.Enabled = True
  15. Replies
    20
    Views
    1,118

    Re: long length timer

    Use can the system clock..

    But it may not be much easier. You would have to add to the hour if after 50 minutes minus the minutes that goes over 60.

    Text1.Text = Format(Time, "hh:mm:ss")
  16. Thread: Help with UDTs

    by Jabber
    Replies
    9
    Views
    746

    Re: Help with UDTs

    That sounds very complex.
    The array of states is working good enough.

    Thanks for the help guys.
  17. Thread: Help with UDTs

    by Jabber
    Replies
    9
    Views
    746

    Re: Help with UDTs

    How do you use state name as key?


    My Udts are in a public class.
    I have a US map with about 50 udts used.

    All have populations, funds, x & y coordinates and other things added. So far it's...
  18. Thread: Help with UDTs

    by Jabber
    Replies
    9
    Views
    746

    Re: Help with UDTs

    That works Si, though I hated to add another 20 udts.
    Thanks
  19. Thread: Help with UDTs

    by Jabber
    Replies
    9
    Views
    746

    Help with UDTs

    Is there a way to call up a UDT on another form by using a string? VB6

    On a Map of the States I use a label to save a String when clicking a particular label.




    Public Type Place
    x As...
  20. Replies
    1
    Views
    20,221

    Re: "Shell" close command

    check this thread.

    http://www.vbforums.com/showthread.php?t=527732&highlight=close+program

    .
  21. Replies
    0
    Views
    855

    No more flickering cursor

    Stop Cursor flickering in DX or non DX games. Any program that blts images can flicker and here is a solution.
    Works perfectly. VB^6


    Option Explicit
    Implements DirectXEvent

    Dim DI As...
  22. Replies
    94
    Views
    104,885

    Re: VB: The Matrix [Exe+Source]

    Good job
    This is awesome
  23. Replies
    1
    Views
    5,169

    Re: [A small Demo] Move in a battle

    Hey tSparrow
    I really appreciate this.
    The trig is what I've been needing. Explainations aren't as good as actual examples.

    I changed the individual troops and got them all running(bltblt'n) at...
  24. Replies
    7
    Views
    738

    Re: Form Focus (Window Control)

    How about opening that form with this.



    frmDescPresets.show vbmodal


    then you have to manually exit the page before you go to other programs.
  25. Replies
    1
    Views
    510

    Re: Form1.ToolTipText for Form1?

    '-- Public.Bas

    Declare Function Shell_NotifyIcon Lib "shell32" Alias "Shell_NotifyIconA" (ByVal dwMessage As Long, pnid As NOTIFYICONDATA) As Boolean


    ' Used by Shell_NotifyIcon
    Public Type...
  26. Re: what is the easiest/fastest way to clear/lock controls in a form?

    Just call each sub when needed.
    ie.

    Call LocktheControls



    Private Sub LockTheControls()

    txtLastName.Locked = True
  27. Replies
    1
    Views
    743

    Re: Help w/ VB6 and DX-x

    DX creates a backbuffer to draw your images too and then you flip them from the buffer onto your screen and erase the images from the buffer. I believe it takes less memory this way. You can also...
  28. Replies
    4
    Views
    560

    Re: like reminder or memo

    Yes I added a link to a ghost version(hidden from view) of the program in Regedit. it will automatically bring up the ghost and check the dates.

    1. It checks at 12:01 am in case PC runs all day...
  29. Replies
    4
    Views
    560

    Re: like reminder or memo

    Yes it possible. I think you want to make a reminder that will pop up on a given date?

    I did something similar with a blackbook and it has birthday reminders which can be set to give a 5 day...
  30. Re: Issue with close button in a 2d gaming window.

    Sub RestoreWindowsGUI()

    'When you bail out of DX7 you must destroy your surfaces or they remain in Sys_Memory
    ReDim AutoZ_Sprite(0) As DirectDrawSurface7: Set AutoZ_Sprite(0) = Nothing
    ReDim...
  31. Replies
    1
    Views
    792

    Re: Making a memory game??

    Name the images in an array like so.

    ImgCard(0).image through imgCard(11).image


    imgPlay(0).image through imgPlay(11).image 'place to lay cards

    Dim CurrentCards(12) As Integer ...
  32. Replies
    1
    Views
    881

    Re: Putting a boundary on a 2d scrolling game

    A portion of your code would help us.


    Try this



    If imgPlayer.Left < 10000 then 'if less than 10k keep scrolling

    'scroll code here
  33. Re: Number to string without exponential

    You need to use Double instead of long.
    Long holds whole numbers.
    Change the following and it works.


    Dim longTime As Double


    .
  34. Re: What "No MIDI within Form!!" Arrrrr damn it!!

    You are working with vb.net?
  35. Re: Issue with close button in a 2d gaming window.

    OK. I will remember that but in many DX game examples they set everything to nothing and then often use END instead of "unload me."

    .
  36. Replies
    13
    Views
    1,392

    Re: Web Browser New Window

    I used browser 2.0 library.
    I got rid of the midichild stuff and I did make custom callbacks.

    it's not complete. But here is a downized image of it.
    I have it where you can set custom colors on...
  37. Replies
    5
    Views
    5,641

    Re: Close Message Box

    Why use the message box to begin with?
    To indicate that it is going to sleep?

    .
  38. Replies
    5
    Views
    864

    Re: No Title bar Maximize Problem

    Under Properties.
    Make sure Show in Task BAR = true
    WindowState = Normal 'not maximized

    During edit mode try pulling you form to the size you want it to open too.

    .
  39. Replies
    7
    Views
    1,307

    Re: Transparent background

    Sorry haven't learn vb.net yet.

    .
  40. Re: How to find if the machine is inactive for last 30 min.

    I think the DefInt a-z would define the entire alphabet.
    You could probably just replace it with

    Dim S as Byte

    The line with "C" could be removed for your purpose.
    This code would be used if...
Results 1 to 40 of 117
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width