Search:

Type: Posts; User: Binarybot

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Re: [VS2012]Some Basic questions about WPF forms

    so...
    i just made a performance report by VS2012 Pro , performance analyser , i just used that height increase and decrease function with animation
    and this is what is says



    first i dont...
  2. Replies
    5
    Views
    1,057

    Re: [VB2010] Display a label in the TrayBar

    well , it doesn't seem like its possible with simple ways ( it maybe possible with communicating with windows shell and bla bla stuff , that i need to learn yet ) , anyway if u want something to be...
  3. Replies
    6
    Views
    3,799

    Re: make new copy from vb.net form

    well , if u want to use multiple instances of same form , like in chat application new window opens for each chat with different person (i.e. 1 window for each person u r chatting with ) u can easily...
  4. Replies
    23
    Views
    3,373

    Re: Problem with ScrollToCaret

    try removing this line
    TransparentRichTextBox1.ScrollToCaret()
    from timer code , and put that line in RichTextBox.TextChanged event , it works :) , i had same problem when i was making chat...
  5. Re: [VS2012]Some Basic questions about WPF forms

    @szlamany
    well i meant that , i want to control whole wpe window through vb code only , is there a way i can do it ? so that i skip learning XAML ( as i can do all things with help of vb code , i...
  6. Re: how do you give users a choice of measurement input units? (mm,cm,in,ft...etc)

    just use radiobuttons to select unit (or dropdown box) and get value in textbox , u can convert them to other by multiplying by constants which can be found on google
  7. Replies
    4
    Views
    947

    VS 2010 Re: Playing Sound

    Well IanRyder
    using timer is way heavy for processor (when interval is low) , instead the TextChanged event is nice to use , u can even try a new method , its different but it works
    create a...
  8. Re: New line with one label and automatic scroll down ?

    u may use a listbox and add items to it , or u can also use a Richtextbox , don't stick to labels (there may be but i don't know any way to put scrollbar in labels ) when there are other options...
  9. VS 2012 Re: Removing the Headers from a ListVeiw Object

    Or u can even keep the height of header cells to 0
  10. Replies
    10
    Views
    7,269

    VS 2012 Re: Need help choosing the right control

    use classic controls from telerik , or there are many others choices search google
  11. Replies
    9
    Views
    2,278

    Re: For ... Next loop help?

    its becoz u r only using 1 label , atleast put 5 different labels , or create a string containing 5 lines of (Grade Entered: _ ) put each 1 on new line and then add that string to label
    ie

    Dim...
  12. [VS2012]Some Basic questions about WPF forms

    Hello
    I am new to WPF (first day today) , i have nice experience with windows forms with Vb , now i am starting wpf forms with VB (I dont know much XAML yet) but i feel like we can do all with...
  13. Replies
    1
    Views
    1,149

    Bouncing Ball not working properly

    Hello , Im creating a game like bounce , for that i was creating a code for continues bouncing of ball , it will bounce after getting to bottom of form
    i have added a acceleration to make bouncing...
  14. Replies
    4
    Views
    1,219

    Re: CrossThreadCallingException ??

    Ok , i didn't used timers.timer i used Windows.Forms.Timer to work with , but in that case it used to use much cpu and form totally lags , it doesn't respond at all.
    so when i was googling it i...
  15. Replies
    4
    Views
    1,219

    Re: CrossThreadCallingException ??

    well first i was using timer control , but with that we cannot get totally perfect time like with stopwatch class , so i changed code to stopwatch class
    i will follow ur code bank submission ...
  16. Replies
    4
    Views
    1,219

    [RESOLVED] CrossThreadCallingException ??

    Hello friends ,
    Today i started Coding in C# , ( I have some experience of coding in VB.net ) , I was creating a simple stopwatch with using stopwatch class



    using System;
    using...
  17. VS 2010 Re: Hey All, I am trying to "encrypt" a string but substituting all the letters with.

    Well its good what u r trying to do , but changing just letters with some other letter is too simple encryption(anyone can decompile ur .exe to get what encryption u use ) , its ok for starting but u...
  18. Replies
    15
    Views
    1,253

    Re: More graphic components used

    Well i have not seen any more things that can make ur form look better , but u can create and add ur own animations for ur form , but ofcource it needs lots of time and good knowledge of Graphics and...
  19. Replies
    8
    Views
    1,696

    Re: Screen resolution in VB.net

    no they are properties for controls , see properties of any control u can find it
  20. Replies
    15
    Views
    1,253

    Re: More graphic components used

    #edited post #9 Push
  21. Replies
    8
    Views
    1,696

    Re: Screen resolution in VB.net

    anchoring is good option , u can get screen resolution and set form and components size according to ur needs
  22. Replies
    15
    Views
    1,253

    Re: More graphic components used

    You can also use XcoolForms library , u can find that on code project , it is good too
  23. Replies
    15
    Views
    1,253

    Re: More graphic components used

    Well for more good looking and for more functionality applications you can use dotnetbar library it is really good
  24. Replies
    8
    Views
    1,031

    Re: Is this VB code or C# code?

    well simplest way to differ VB and C# is after every line C# has ";" but VB dont use ";" ;)
  25. Replies
    2
    Views
    1,237

    VS 2010 Re: raw tcp Packet crafting and streaming

    well ok , i asked because i have seen many people doing it , many use a tool called privoxy
  26. Replies
    2
    Views
    1,237

    VS 2010 raw tcp Packet crafting and streaming

    Hello
    hello ,

    I want to inject raw tcp packets in a live tcp connection , where i can send(inject) self coded packet (FOR EDUCATION PURPOSE ONLY , it will help me to understand tcp layers...
  27. Replies
    4
    Views
    1,358

    Re: draw line on picture box

    Thanks i got it :)
  28. Replies
    4
    Views
    1,358

    Re: draw line on picture box

    well , but i need to create a application showing projectile motion , so , i need to create a picture box or 2 to show a moving projectile on background , then how i can do that .
    means if i want...
  29. Replies
    4
    Views
    1,358

    [RESOLVED] draw line on picture box

    hello
    i want to draw line on picture box , but its not working correctly



    well from code , picturebox1.paint event works correctly , but line to draw in form1.load don't draw ,

    plzz help ...
  30. Replies
    5
    Views
    1,616

    Re: Sharting new to C#

    i was asking because i read many places that older is good than newer , so i was confused and asking
  31. Replies
    5
    Views
    1,616

    Re: Sharting new to C#

    and what should i prefer to use , VS2010 pro or VS2012 pro ?
  32. Replies
    5
    Views
    1,616

    [RESOLVED] Sharting new to C#

    Hello all
    Im a Vb.net user , (i know basics and bit high level in Vb ) , i want to start learing C# now , so from where i should start ? , and ebooks , or website for tutorials , i have VS 2010 and...
  33. Replies
    2
    Views
    747

    set shortcut keys to form

    hello
    i want to set some shortcuts for form
    they should work even when person is not on form
    means if he is playing a game (full screen) , and press shortcut key then also it should work , and...
  34. Replies
    8
    Views
    2,497

    VS 2010 Re: info about cursor (advance)

    sry , double post , cannot find how to delet
  35. Replies
    8
    Views
    2,497

    VS 2010 Re: info about cursor (advance)

    thank you edgemeal and espanolito
    this is what i wanted thanks :) +1 rep :)
  36. Replies
    8
    Views
    2,497

    VS 2010 Re: info about cursor (advance)

    no , this not what i want , this is form handles , but i want out of form links , etc
    for more clearly , move ur cursor to "reply to thread" then it will change its type(image) , i want to detect...
  37. Replies
    8
    Views
    2,497

    VS 2010 [RESOLVED] info about cursor (advance)

    Hello
    i want to get advance info about cursor , as while we use any webbrowser , whenever we move cursor on a link , or clickable picture , cursor , change its picture , as in win07 basic ,...
  38. Replies
    5
    Views
    3,540

    Re: Fancy Windows forms

    It is still not working for me , in form1[Design] it shows right form , fancy one , but when i run it shows nothing from graphics
  39. Replies
    5
    Views
    3,540

    Fancy Windows forms

    Hello all
    I found a Article on code project , that gives fancy windows forms

    link:-http://www.codeproject.com/Articles/33716/Fancy-Windows-Forms
    i read it , and i was trying to make a form with...
  40. Replies
    3
    Views
    681

    Re: main form lagging

    Im. Currently on mobile so I dont have code now
    All packets are approximately 50 to 150 in data length.
    yes im using my extraction sub on my same form code my sub uses a listbox on my form so I I...
Results 1 to 40 of 97
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width