Jump to content
Xtreme .Net Talk

soadlink

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by soadlink

  1. What is a good way to assure that all my program users will actually get to open and use my program without getting missing file errors and whatnot? i tell them to make sure the latest .net framework is installed but still many people get errors when using my programs, and there are too many different errors to name specifically.... it seems to work for me... what do i have that they do not that could keep them from usingmy programs... any tips and info would be helpful. thank you in advance ;)
  2. When I create a program in Visual Basic .net, i build it and all that and i make sure my users get all the neccasarry files to open it themselves. but they seem to get an error upon loading it. I told them to install microsofts's .net framework update, and it still fails for them. what are some other problems keeping them from using my programs. they seem to work excellent for me... thanks :)
  3. So i thought i was done with my project... until now. I changed the forms icon in properties, to my own. I built the exe, and when I went to go find the exe file, the icon was no the one i chose, but i opened the program, and the icon i chose was the one in the taskbar..... how can i make BOTH the icon in the taskbar, and the icon on the exe file the same.... i got one, just need the other :( thanks in advance
  4. thank you, that completes my project. :cool:
  5. I want to have a specific button click, and perform the onclick code in it, when the user presses enter on their keyboard. what code or setting makes this possible? thanks.
  6. edited post: woo hoo! works! and i got it to filter out so it only saves as a .txt. thank you :)
  7. :( i have no clue how to do it, so assuming the save file dialogs name is savefiledialog1, how would the code look if the code i have now is the following: Dim x As Integer Dim writer As New IO.StreamWriter("c:\somefile.txt") 'create a new streamwriter to write to the file For x = 0 To idlist.Items.Count - 1 'make sure to go through every item writer.WriteLine(idlist.Items(x)) 'write the item to the file Next writer.Flush() 'make sure everything is dumped into the file writer.Close() 'close the stream thank you, i really appriciate the help :)
  8. Ok i got it to work, but i want it use the savefiledialog thingy so they can CHOOSE where the file will be saved. how could that be pulled off? thanks ;)
  9. then dont respond, im sorry if im pushy its just so simple for you people but hard for me, so if you arent gonna post good help then dont post.
  10. i want them to be able to pick where it will be saved at.. so that code is wrong. please just make a form with a save button and listbox, and make it save all the contents of that listbox as a txt file.. please only reply now if you are going to attach the file
  11. lets put it this way, too many errors for my lazy self to post =\
  12. it gave me a buncha errors, could you just make a little form with a save button, listbox, etc and upload it for me to dl? :( i just cant get it.
  13. cant seem to get it to work .. if possible could u attach the source to all the projects files? or give a different way?
  14. yes, take everything in the listbox, and save it as a txt file.
  15. Hello I am trying to save a listbox as a txt file. Language: visual basic .net i used the code below, and it actually saved the file, but the contents that where in the listbox were not saved with the file. if someone could modify my code below, or even better, make a small example :D, i would greatly appriciate it! code i used: SaveFileDialog1.Filter = "Text Documents (*.txt)|*.txt|All Files|*.*" SaveFileDialog1.ShowDialog() If SaveFileDialog1.FileName <> "" Then FileOpen(1, SaveFileDialog1.FileName, OpenMode.Output) PrintLine(1, listbox1.Text.Length) FileClose(1) End If thank you
×
×
  • Create New...