Search results for query: *

  1. A

    Paint App

    Hi jmcilhinney! I am able to draw the paint in Vb, but when i move the cursor fast its getting scatter , how do we avoid that? my code is: private void mouseMoveEventHandler(object sender, MouseEventArgs e) { Graphics g = this.CreateGraphics(); if (e.Button...
  2. A

    Follow the route - VB game

    Hi , thanks for quick reply , for example i said its a circle but in real case it shouldn't. it may be a curve path or something like Google map paths in that case i should compare the pixels values right?
  3. A

    Paint App

    Thank you! let me try out
  4. A

    Follow the route - VB game

    I am gonna draw one circle using VB paint. in that circle i want to move the object in anti -clockwise and counter clockwise direction. how can i implement this in C# .net or VB .net thanks, Ashok r
  5. A

    Paint App

    Hi, I would like to create paint application in vb.net.(i need only few brushes and default shapes) But it should draw same like MS paint (windows 7). something like this below ..
  6. A

    Question Serial Port Reception

    Hi everyone, I just created small application in Vb.net. i am trying to read the stream of data from micro-controller and storing into a buffer (16byte) so the micro will update the 16byte data for every 100ms once. I am facing the problem in reception , i could store the data in correct order...
  7. A

    Creating multi threads?

    Thank you, But in feature i may add more case statements inside the DataReceived Event. It should not affect my call routines. Problem is In minimum interval if i receives data, is there the chances to miss. So i thought to split the DataReceived Event into 2 or 4 threads inside of threads i...
  8. A

    Creating multi threads?

    your correct. but let take if i received the value of "01" and immediately the DataReceived event will start. meanwhile executing the DataReceived Event if i received another value of "02" what will happen?
  9. A

    Creating multi threads?

    I want to play the music files simultaneously based on the serial data.I am using 4 different media players inside my app
  10. A

    Creating multi threads?

    hi, I am reading serial port values in VB.net , after reading i'm comparing the received values in case statement. based on the received value i want start different process simultaneously. i know it could be possible with handling threads. but i dont know how to create. this i given my normal...
  11. A

    New to Graphics

    Hi , i have been working on VB .Net but i never used graphics in my application. now i want to make better glowing GUI for my application. so from where i can start? what are the supporting library's i need to download? thanks, ashok
  12. A

    Windows Application to send Facebook Request

    anyone have any idea about above my post?
  13. A

    Windows Application to send Facebook Request

    Hi, I would like to create application like, when you enter any gmail/Yahoo mail address in text box, application should search in Facebook and if the person is exist it will send Friend Request? How can i do this..? how to search in facebook and send request ? thanks in advance
  14. A

    Running Windows Command line by line

    if i have more than 3 process means how to handle ?
  15. A

    Running Windows Command line by line

    thank you john, I am just beginner so if u give small example code then i can easily understand :concern:
  16. A

    Running Windows Command line by line

    But, If i assign some value to process bar inside , throwing error !..? Public Sub m_Prc_Exited(ByVal sender As Object, ByVal e As System.EventArgs) Handles m_Prc.Exited m_PrcWorking = False m_prc.Dispose() ProcessBar1.Value=100 End Sub
  17. A

    Running Windows Command line by line

    Thank you ! JuggaloBrotha, Working fine :-)
  18. A

    Running Windows Command line by line

    sorry John I am not able to get the idea.. Any other way to do this..? My question is I tried the following way to display the message box... but it not works why? Public Sub m_Prc_Exited(ByVal sender As Object, ByVal e As System.EventArgs) Handles m_Prc.Exited m_PrcWorking =...
  19. A

    Running Windows Command line by line

    Thank you so much.. the code works ! but if i write the message box inside the event its not displaying. "" Public Sub m_Prc_Exited(ByVal sender As Object, ByVal e As System.EventArgs) Handles m_Prc.Exited m_PrcWorking = False MsgBox("Completed") m_prc.Dispose()...
  20. A

    Running Windows Command line by line

    Any other way is there to avoid myprc.WaitForExit() ...? because if i run my app in windows xp its getting struck highly or else can you give a sample code for that? actually i have set of commands in Batch file.. now with the help of Batch file iam running. Is it possible to execute the same...
Back
Top