Search:

Type: Posts; User: TBeck

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Thread: C# and 3d Max 9?

    by TBeck
    Replies
    4
    Views
    2,038

    Re: C# and 3d Max 9?

    It has been a while since I have looked at it, but if I remember correctly, there is a tool or plugin included in microsoft's directX developers kit that allows you to convert from 3ds to .x files...
  2. Replies
    1
    Views
    764

    Re: help me guys problem with my game

    what method are you currently useing to load the images?
  3. Replies
    3
    Views
    621

    Re: How to Clean Virus

    you have to go back to the origional source code of the exe and remove the virus component of it, but I am assuming you did not make the exe (or if you did you shouldnt make viruses in the first...
  4. Replies
    5
    Views
    592

    Re: Number String Help [vb6]

    this one doesnt seem to match... all of the other cases seem to change the last two digits to the third last one, but this case doesnt do that. Is this case right? or when does it do something like...
  5. Re: Probability, expectation, significance and related statistics

    I believe the expectation you are refering to is another term for the Expected value. http://en.wikipedia.org/wiki/Expected_value

    edit: in adition to the sumation way of calculating, each...
  6. Replies
    2
    Views
    803

    Re: still need help

    Yes the whole code would be helpful, right now I am wondering what the GetSecondItem(firstLabel.Text) method does
  7. Replies
    6
    Views
    910

    Re: Extract Source Code

    i know my version of .net has a
    File > Open > Convert
    feature that allows you to convert a vb6 application into a vb .net 2005 application. you might what to check to see if the express version...
  8. Replies
    3
    Views
    610

    Re: Creating a type with a array in the type.

    which line, and what is the text of the error message?
  9. Thread: Click a Button

    by TBeck
    Replies
    14
    Views
    1,015

    Re: Click a Button

    no x-y coords nessisary, simply call the click method of the button, like so:

    Private Sub Command1_Click()
    MsgBox "hi"
    End Sub

    Private Sub Command2_Click()
    Call Command1_Click
    End Sub
  10. Replies
    3
    Views
    975

    Re: memory game newbie help please

    it would appear thay you are assigning the tiles their values when the label is clicked for the first time. the assignment of values to the tiles should be done in the form_load (and new game)...
  11. Replies
    6
    Views
    713

    Re: Remove text from String

    try this

    Text2.Text = Left(Text1.Text, InStrRev(Text1.Text, "/"))

    the InStrRev returns the position of the last occurance of the specified string. and left returns the first n characters of...
  12. Replies
    3
    Views
    975

    Re: memory game newbie help please

    i would reccomend putting the files for your project in a zip file and upload it to the form. with games it is usually easier and more effective to open the same project so things are in the same...
  13. Replies
    3
    Views
    687

    Re: Resize A Form On Button Click

    you can change the form.width and form.height to what you want... these values are measured in twips, so you will need to convert to pixels (15 twips in one pixel)

    Private Sub Command1_Click()...
  14. Replies
    1
    Views
    541

    Re: problem with calculations in vb6 or below

    here is a way of using for loops to calculate factorials

    Dim num As Single
    Dim result As Single

    Private Sub Command1_Click()

    result = 1
    num = Val(Text1.Text)
  15. Re: [RESOLVED] Randomize display order of multiple choice answers

    No problem... I tend to be pretty good at taking a problem and simplifying it... I am also pretty good at taking solutions I have made elsewhere and applying them to other concepts... that is what I...
  16. Re: Randomize display order of multiple choice answers

    ok i see what you mean, this methood I have chosen swaps the order of two of the choices, and I decided 20 sounded like a good number of times to do this to make the order random
    you will need a...
  17. Re: Randomize display order of multiple choice answers

    an array could probably simplify the code probably, how exactly are the 24 things implemented?
  18. Replies
    29
    Views
    1,567

    Re: And or If Statement

    ok i can see the contition for 0A now, but where do you give it 0B?
  19. Replies
    10
    Views
    857

    Re: Form Only Clickable Thing

    yes, as said above, not allowing the user to click on other stuff is very bad practice... if you want or need nothing else to be selectable for some reason, set the window to maximized
  20. Replies
    2
    Views
    879

    Re: VScroll1+mouse Scroll

    some info about wheel scrolling in vb6
    http://support.microsoft.com/kb/837910
  21. Replies
    3
    Views
    718

    Re: Timer control and control arrays

    timers code will automatically loop when the timer is enabled, so you do not need to loop and call it in the form_load. try this:

    Dim i As Integer

    Private Sub Form_Load()
    i = 0
    End Sub

    ...
  22. Replies
    29
    Views
    1,567

    Re: And or If Statement

    the conditon1 and condition2 need to be replaced with boolean statements, but I wasn't sure what the statements were. condition1 = conditions when to output 0A before it and condtion2 = conditions...
  23. Re: MOD of 1st 7digit = the 8th digit of a 8 digit number ?

    if not sure what exactly you are asking, is this it:
    Dim num1 As Single
    Dim num2 As Single
    Private Sub Command1_Click()
    num1 = Left(Text1.Text, 7)
    num2 = Right(Text1.Text, 1)

    If num1 Mod num2...
  24. Thread: Auto Shutdown

    by TBeck
    Replies
    6
    Views
    823

    Re: Auto Shutdown

    what do you mean by auto save? so you mean like in word do a file save the document? and is it the same programs each time or can it be different?
  25. Thread: Auto Shutdown

    by TBeck
    Replies
    6
    Views
    823

    Re: Auto Shutdown

    the shutdown code differs depending on which operating system you are using. which one (or ones) will your software be running on?
  26. Replies
    17
    Views
    979

    Re: Error Messages in vb 5

    what is the method signature for the procedure? the error seems to suggest that the parameters being passed to it are missing something
  27. Replies
    17
    Views
    979

    Re: Error Messages in vb 5

    did you make calculateNumbersCatagory or is it built in, if it is the first, it would be helpful to see the code for it, if it is the later, Catagory is spelt Category so that might change things
  28. Replies
    4
    Views
    581

    Re: Restrict resize of forms

    change the borderStyle property of the form to fixed single

    edit: damn you and your faster typing skills :P
  29. Thread: DoEvents

    by TBeck
    Replies
    11
    Views
    957

    Re: DoEvents

    With outputting stuff to the screen, you will usually have a loop (as rhino has) in a game, or similar realtime application, you will have a timer/managed loop, and it is good practice to add...
  30. Thread: DoEvents

    by TBeck
    Replies
    11
    Views
    957

    Re: DoEvents

    DoEvents returns control to the operating system temporarily, allowing it to process other events that may have occurred. It is useful if you are outputing stuff to the screen. It goes after your code
  31. Replies
    6
    Views
    889

    Re: Looping replace Problem

    aparently i cant read :S my bad... ill take a look at this after class and see if my code can be easily modified or if there is a nother nifty method
  32. Replies
    6
    Views
    889

    Re: Looping replace Problem

    you can use the built in replace function to replace all occurances of Z++ with an empty string

    Dim word As String
    word = "Z++saffsaZ++Zad++"
    MsgBox Replace(word, "Z++", "")
  33. Replies
    4
    Views
    587

    Re: Form resize

    the easiest way would be to disable the max button. the form has a property called MaxButton and if you set it to false, you cannot maximize the form
  34. Replies
    1
    Views
    634

    Re: Help for a project

    Hello, and welcome to the forums. We are glad to help with any issues you run into while doing your homework, but we will not do the work for you.

    i can give you this to get started, it will...
  35. Thread: pls help me....

    by TBeck
    Replies
    12
    Views
    1,197

    Re: pls help me....

    how exactly do you need to rearage the letters, what is the method or is it random?
  36. Replies
    8
    Views
    914

    Re: VB 6 strComp() Help!

    what exactly is it supposed to do? and what exactly is happening that is wrong?
  37. Re: Write selected combo button to file

    declare and use a String variable like so:

    Private Sub opt_team_Click(Index As Integer)

    dim favTeam as String

    Select Case Index
    Case 0
    favTeam =...
  38. Replies
    32
    Views
    2,249

    Re: Resetting all values

    are the controls on another form than the one where you are calling this code form?
    if so you must enter the form before the control, something like

    frmMain.txtMainWidth.Text = ""
  39. Replies
    29
    Views
    1,567

    Re: And or If Statement

    ok, i'll take a look when i get home... i have never really used access so I wasnt sure what the warning was about
  40. Replies
    29
    Views
    1,567

    Re: And or If Statement

    when I try to open the file in access it gives me a security warning and says it may be a macro virus, any ideas what would be causing that?
    and also, since you are doing visual basic embedded in...
Results 1 to 40 of 256
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width