Search results for query: *

  1. ankitsharma.220@gmail.com

    Using variables from one form in another

    Create a separate class and update variable values by creating object to the class Efficient approach
  2. ankitsharma.220@gmail.com

    add text to textbox?

    For alphabetic key you can use <code> Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If e.KeyChar = "a" Then MsgBox("got it") End If End Sub </code> But for enter key you can try...
  3. ankitsharma.220@gmail.com

    how to remove Close button on the form

    a more sophisticated way of doing that is Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None End Sub This makes your form immovable and you might have to program yourself to...
  4. ankitsharma.220@gmail.com

    Web Gallery Creator

    Hi this is a basic but good looking web gallery creator and contains codes relating to embedding resources like images and other files. Give it a try!! hope u like it technical specs : vs2010 and .net 4.0(client)
  5. ankitsharma.220@gmail.com

    Wallpaper Changer

    wallpaper changer oh!! i did not mention the technical aspects. :P my bad compiler required : visual studios 2010 dot net framework : .net 4.0 (atleast client profile) though you can always design the same gui in visual studios 2008 and copy the code step by step then it won't make any...
  6. ankitsharma.220@gmail.com

    Wallpaper Changer

    Hi, i've created a desktop wallpaper changer and added some animation part to it. As this is my first post any help whatsoever is appreciated.
Back
Top