User Profile

Collapse

Profile Sidebar

Collapse
mygirl22
mygirl22
Last Activity: Apr 15 '09, 04:14 PM
Joined: Feb 26 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jayawardhana
    jayawardhana posted a Visitor Message for mygirl22
    I installed VS.NET 2005 on my windowsXp mechine successfully but when i try to installed MICROSOFT SQL SERVER 2005, setup windows saying

    "SQL Server 2005 Setup has detected incompatible components from beta versions of Visual Studio, .NET Framework, or SQL Server 2005. Use Add or Remove Programs to remove these components, and then run SQL Server 2005 Setup again. For detailed instructions on uninstalling SQL Server 2005, see...
    See more | Go to post

  • mygirl22
    replied to text editor in vb 2005
    ok i did the find method but i have a problem..it also needs to act as a "find next"...meaning that
    1.when i click the find button,
    2.in the main form, it should find the text
    3. and when i click it again
    4. it should find the same text again ..if it's in the main form

    i can't figure out how to write the loop..plz help...
    this is what i have so far
    Code:
     Private Sub xFindButton_Click(ByVal
    ...
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to text editor in vb 2005
    thanks, i appreciate it..
    See more | Go to post

    Leave a comment:


  • mygirl22
    started a topic text editor in vb 2005

    text editor in vb 2005

    Hi,
    I wanted to know how to add a replace method to a text editor (notepad) to search for a word and replace it
    1. say in (notepad) you type something in the textbox1-------"me"
    2. then am suppose to type "me" in text box 2---and
    3. click the find button and it suppose to find the text in textbox1
    4. then you type in textbox3---- "us" and
    5. click the replace button and it replaces...
    See more | Go to post

  • thank



    thanks i figured it out...
    See more | Go to post

    Leave a comment:


  • mygirl22
    started a topic textchanged event trigger with enter key

    textchanged event trigger with enter key

    hi,
    How do i code an enter event textchanged event to only work when the enter key is pressed?

    1. i have a text button that has a value, or a user can enter their own value
    2. however when they enter their own value, the total value doesn't changed because they need to press the enter key to validate the event....am stuck, plz help
    See more | Go to post

  • mygirl22
    replied to enter to trigger event
    got it

    thanks for the reply, helped alot...i got it to work.
    See more | Go to post

    Leave a comment:


  • mygirl22
    started a topic enter to trigger event

    enter to trigger event

    i am trying to allow a user to press enter in a text box to trigger a text change of an object...

    1. say u put 2 in a text box called "Number" and
    2. when you press enter,
    3. another object named and shaped as a book to change it's text, that u can see on the picture to "write"..
    4. originally the book will have the text "Start" on it

    do i changed the "number text...
    See more | Go to post

  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    thanks

    Thanks i figured it out..i create another private sub called animation in my program and i figured how to do the loops
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    this is what i have so far but the problem is that the button (animation) is not moving five times before it stop and it is moving too fast..any ideas anyone?


    Code:
       Private Sub ForNextButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xForNextButton.Click, xTimer.Tick
            'Me.xTimer.Enabled = False
            'Me.xTimeStartButton.Click.enabled = False
    
            For i As
    ...
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    the question revised

    Oky, i finally got the directions right...

    Hi,
    I wanted to know how to create a "for...next loop" to up date an animated ball location? the ball moves in a form and bounces off four walls...the "for...next loop" will be activated when the "for..next button" is clicked...then the ball will move to another location.....it has nothing to do with time...
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    translated

    DO i have this right?

    Code:
        * Dim TimeOut As DateTime = DateTime.Now.AddSeconds(30)
        * ' Use a variable for the 30 so as to make it more dynamic
        * While DateTime.Now <= TimeOut
        *     ' Move the button one step
        *     Application.DoEvents()
        *     ' so the application isn't hung up
        * End While
        * ' This is what happens
    ...
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    thanks..i'll try and translate, thought i don't think i get it....
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    you are too funny..lol

    I want the counter to control the animation time..when the button named " For Next..."is clicked.....say maybe 30 seconds, then the loop should stop without clicking the "For..NExt Button again".......
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to FOR...NEXT LOOP in VB 2005
    Question
    How do i write a for next loop structure that has a counter that controls the time?
    If that makes sense
    See more | Go to post

    Leave a comment:


  • mygirl22
    started a topic FOR...NEXT LOOP in VB 2005

    FOR...NEXT LOOP in VB 2005

    1.I have created a moving object (which is a button) in a form (rectangle box) called "Enjoy Button" and it moves when
    2. a specific button named "Start Timer" is pressed...When the "Start Timer" button is pressed, the
    3. "xTimer" event is called and the button moves in a rectangle box and bounces of the walls...=animat ion

    4. However, i need to write a For..Next Loop in the
    ...
    See more | Go to post

  • mygirl22
    replied to timer event in vb 2005
    got it

    thanks i solved it...
    See more | Go to post

    Leave a comment:


  • mygirl22
    replied to timer event in vb 2005
    i got it ...but not i want to stop the timer and button when i click the timer start button..how do i do that?
    See more | Go to post

    Leave a comment:


  • mygirl22
    started a topic timer event in vb 2005

    timer event in vb 2005

    Hi ,
    I already created a button "enjoy button" that i want to move in a form when the "timer start button" is clicked.
    how do link the timer to the
    "timer start button" and make it move?

    this is what i tried so far..then am blank
    first

    Code:
        Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ...
    See more | Go to post
    Last edited by Frinavale; Mar 16 '09, 08:57 PM. Reason: Moved to VB.NET from .NET and changed [quote] tags into [code] tags

  • thanks..i solved it.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...