Jump to content
Xtreme .Net Talk

atesh

Avatar/Signature
  • Posts

    43
  • Joined

  • Last visited

Personal Information

  • Visual Studio .NET Version
    Vb.NET Standard v2003
  • .NET Preferred Language
    Vb.NET

atesh's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. How would I go about making a chart for data in VB.net, similar to when viewing files in Explorer with Details view (see the attachment pic.)
  2. To set which form is the initial form, goto Project, Properties, and you'll see a drop down box called Startup Object where you select this.
  3. I've noticed that after installing Visual Studio .NET now when I boot up the user sign on screen comes up although I only have one account so it is unnecessary. When I goto control panel / user accounts, an "ASP.NET Machine A..." has been added. This must be what is causing the user signon screen to come up. Is there a way to get rid of it? If i delete that account will it affect my VS .NET? Thanks.
  4. Also, in case you didn't know, the system running any applications created with any of the Visual Studio .NET developing apps require the .NET Framework to be installed on that system to work. (At least with VB.NET, I think the others are the same.)
  5. show us the code you have please
  6. For x as integer = 1 to Len([i]StringName[/i]) Console.WriteLine([i]StringName[/i]) Next
  7. Dim GetRan As New Random GetRan.Next(1, 50) Why is it that this will never return the number 50? I thought the first number (in this case 1) is supposed to be the lowest possible number to return, and the second number (in this case 50) is supposed to be the highest possible number to return. But apparently, the highest number it can return is 1 - the second number (in this case 49).
  8. Is there a simple way to set up controls such as textboxes or listboxes so that the user can click on the border and resize them (like with the form)?
  9. 2 questions: (1) How do I create the bitmap to use as my drawing surface? and (2) After I draw the final image can I save it to hard disk as BMP?
  10. Can you show me brief code to do this: User selects bitmap files and enters the coordinates for each one to be put onto one large bitmap with all the selected images. Thanks.
  11. Is there any reason why some objects in VB.NET count with the first item being 0, instead of 1. (e.g. the listbox) Anybody know why they do this? It ends up making things more confusing/complicated.
  12. Why do I get 'Specified argument was out of the range of valid values.'? Dim z as integer = 0 While srReader.Peek() > -1 z += 1 ListBox(1).Items.Item(z) = srReader.ReadLine() ListBox(1).Items.Add(ListBox(1).Items.Item(z)) End While Total it is supposed to load a little over 7000 lines into the listbox. I don't know if this has anything to do with it.
  13. here's what i did which works: If e.KeyChar.IsLower(e.KeyChar) Then e.Handled = True TextBox.Text &= e.KeyChar.ToUpper(e.KeyChar) SendKeys.Send("{END}") End If The pressing END key is so the caret is at the end of the textbox instead of the start.
  14. System.Diagnostics.Process.Start("F:\program files\MozillaFirebird\MozillaFirebird.exe", "www.microsoft.com") Note though that this is for mozilla firebird, not internet explorer. Find out the standard location of iexplore.exe, I can't tell you what it is because I tried my best to get rid of that program on my machine.
  15. what's the code at the keypress event that'll make a pressed lowercase letter uppercase. here is what tried, which obviously doesn't work but you get the idea: Private Sub TextBox_KeyPress(ByVal sender As Object, _ ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox.KeyPress If e.KeyChar.IsLower(e.KeyChar) Then e.KeyChar = e.KeyChar.ToUpper(e.KeyChar) End Sub
×
×
  • Create New...