Jump to content
Xtreme .Net Talk

nd54

Members
  • Posts

    8
  • Joined

  • Last visited

About nd54

  • Birthday 11/09/1982

Personal Information

  • Occupation
    STUDENT
  • Visual Studio .NET Version
    Visual Basic .NET Standard
  • .NET Preferred Language
    vb.net

nd54's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. How would I add a property procedure
  2. hello all I am trying to set a textbox text so when I click a button it sets the text on that form into the textbox on another form here is what I got dim F3 as new form3 f3.textbox1.text = textbox1.text when I click the button it doesnt add the textbox to the form3 textbox what am i doing wrong
  3. I am trying to get all sub directorys, and load them into a treeview. its only getting the first subdirectory. how can I get all of the subdirectories dim Drive dim Drives = Directory.GetLogicalDrives() Dim Folder, Folders For each Drive in Drives With TreeView1.Nodes.Add(drive) Folders = Directory.GetDirectories(drive) For each folder in folders .nodes.add(folder) next end with next
  4. Is there a way to have the error provider in a statusbar panel
  5. How Do you remove the first item in a listview
  6. Hello All, How Would you add horizontal text on the left to a menu in vb.net like Here on Virtual drive 7 http://www.geocities.com/nile_54/HorizontalText.JPG [edit]fixed[/edit]
  7. Thank You Divil... I guess im still use to vb6
  8. Hey all trying to get this Open File Dialog to work... When I hit cancel on the second time it adds the file to the list anyways Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click Dim ofd As New OpenFileDialog() Dim lv As ListViewItem ofd.Title = "Select FILE TO OPEN..." ofd.Filter = "All Files(*.*)|*.*" ofd.ShowDialog() If ofd.FileName = "" Then Exit Sub lv = ListView1.Items.Add(ofd.filename lv.subitem.add("test") lv.subitem.add("testing") end sub Thank You
×
×
  • Create New...