Search:

Type: Posts; User: Zervic

Search: Search took 0.02 seconds.

  1. Re: Rounding of values to two digits in a textbox

    Well first off you might want to use doubles...then you have to figure out a way to truncate or round the number which i personally can't help you with :x
  2. Replies
    8
    Views
    962

    Re: VB6 Help - Winamp/AIM

    Hmm...so what if i did this:

    I make it so it reads through info.txt (the old info.htm) and when it reaches a certain string like say "%s" then it replaces that with getWinampWindow. And then it...
  3. Replies
    8
    Views
    962

    Re: VB6 Help - Winamp/AIM

    Hmm...using this:

    Open "C:\Documents and Settings\<windows user>\Application Data\Aim\ibunystn\<screen name>\info.htm" For Output As #1
    Print #1, "I'm Listening To: "; getWinampWindow
    Close...
  4. Replies
    8
    Views
    962

    Re: VB6 Help - Winamp/AIM

    True hadn't thought of that :)



    Well...getting the current playing in winamp is easy, as is writing it to the .htm, however, updating the profile is the hard part :x
  5. Replies
    8
    Views
    962

    Re: VB6 Help - Winamp/AIM

    I've seen people with this before however...and if I edit the .htm file (i believe text is only supported - i.e. no images) and then go to view my profile, it will show me what it was BEFORE i...
  6. Replies
    8
    Views
    962

    VB6 Help - Winamp/AIM

    Okay...this is what i'm looking to do. Get the current playing from winamp (this is the easy part) and put it into your aim profile. I found out that your aim profile is actually stored on your...
  7. Replies
    2
    Views
    13,143

    Re: Fast Bit Check (Inline Assembly)

    However, it is indeed visual basic, its just using inline asm :) Just thought I'd let you know.
  8. Replies
    0
    Views
    2,021

    Massive Size Optimization:

    Not sure if anything of the such has been posted before, and if it has simply delete this thread :)

    I was messing around today and noticed the linker included with VC++ .NET is newer than the one...
  9. Replies
    2
    Views
    13,143

    Fast Bit Check (Inline Assembly)

    First off, credits go to a friend...

    Using the following:
    http://thundervb.profitux.cz/go.php?adr=home


    'Note double dereference because passing byref
    Public Function CheckBits(lngNumber As...
  10. Replies
    10
    Views
    656

    Re: Liscense information...

    Yea its winsock...he said its giving him that message when he tries to "place a winsock control on the form"
  11. Replies
    10
    Views
    656

    Re: Liscense information...

    um...winsock control
  12. Replies
    10
    Views
    656

    Liscense information...

    Not really coding help but:

    http://img221.imageshack.us/img221/5926/permission4yx.jpg

    ideas/suggestions/etc

    For a friend, but I think it might be that he got an illegal/cracked version of VB.
  13. Thread: Sorting Help:

    by Zervic
    Replies
    2
    Views
    401

    Sorting Help:

    Private Sub cmdGrades_Click()
    Dim TEMP As Integer, grades As String
    lstGrades.Clear
    TEMP = 0
    Do
    TEMP = TEMP + 1
    grades = InputBox("Enter The Corresponding Student's Grades", "Student Grades:")...
  14. Replies
    10
    Views
    1,035

    Re: Internet Browser

    I think I'm doing something wrong or I'm not doing something based on the bold in your quote^

    Do I actually have to add the webbrowser component to my project, and when you say the "webbrowser...
  15. Replies
    10
    Views
    1,035

    Re: Internet Browser

    I'm still getting an error pertaining to the naviation line :confused:

    This is what I have tried thus far, with no luck in getting it to work:

    Private Declare Function ShellExecute Lib...
  16. Replies
    10
    Views
    1,035

    Re: Internet Browser

    object.Navigate( _
    url As String, _
    [Flags As Variant,] _
    [TargetFrameName As Variant,] _
    [PostData As Variant,] _
    [Headers As Variant])

    There's the syntax, I just need to...
  17. Replies
    10
    Views
    1,035

    Internet Browser

    I'm aimed at making an internet browser of some sort...I 'tweaked' someones code and came up with this:

    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As...
  18. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    It works flawlessly, but just a bit curious:

    What is "CLng?"

    Thank you very much for your help sir.
  19. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    Basically I want to fill list1 and list2 and then calculate the sum of the corresponding elements in list 1 and list 2 (0 + 0, 1 + 1, etc) and put that in list 3, then, say there are 10 elements...
  20. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    I've got everything working now except for one thing:

    I need to calculate the sum of every number in List 3

    Essentially, I haven't the slightest clue as to where to start.

    Again, any help is...
  21. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    The problem was that I had for c = 1 to numelts, when it should be c = 0 to numelts.

    Numelts is an integer, and yes, I'm filling two lists and multiplying the corresponding numbers in the list and...
  22. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    Private Sub cmdCalc_Click()
    Dim c As String
    For c = 1 To numElts
    lstList3.List(c) = Str(Val(lstList1.List(c)) * Val(lstList2.List(c)))
    Next c
    End Sub

    The error I get is the following and...
  23. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Re: Listprod

    Yes it is homework actually, and that's why I was only looking for help and not the whole thing ;) So thank you very much for your help.
  24. Thread: Listprod

    by Zervic
    Replies
    17
    Views
    1,180

    Listprod

    Just looking for some help/guidance:

    I'm trying to create a program that contains the following:

    1. three lists will be included. Each list will have a label (not what I need help with).

    2....
  25. Thread: Problems

    by Zervic
    Replies
    5
    Views
    551

    Re: Problems

    I don't have it at hand as I'm at school at the moment. Basically I can read the health amount from the game and place it into a text box. Then when the val of that text box is <= 80 I want to...
  26. Thread: Problems

    by Zervic
    Replies
    5
    Views
    551

    Re: Problems

    Thank you ;)

    A health pack is like, when you are hurt you can use a health pack and it will regenerate some of your health. So if I have the command bound to Z and I want to input Z to the game...
  27. Thread: Problems

    by Zervic
    Replies
    5
    Views
    551

    Problems

    Hello, I am trying to code something for a game called F.E.A.R. where if I have say, 80 health, it inputs the command to use a health pack. I've figured out how to read the health and I can print...
Results 1 to 27 of 27



Click Here to Expand Forum to Full Width