Search results for query: *

  • Users: dpan
  • Order by date
  1. dpan

    label not updating

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = "downloading file ...." My.Computer.Network.DownloadFile _ ("http://dl.winsite.com/files/650/ar2/win3/winsock/i-pal.zip", _...
  2. dpan

    MsgBox buttons

    How to send vars to a second form: Dim f2 As New Form2 f2.Label1.Text = myvar f2.Show() form name is whatever you saved it as. most of thee time if left alone it will be form2 or form3...
  3. dpan

    MsgBox buttons

    well if you want to show a form, just right click on your My project in yout solution explorer then add a new form. then in your code add form2.show If you want to luanch another exe then you would do this...
  4. dpan

    MsgBox buttons

    form2.show
  5. dpan

    MsgBox buttons

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsfctmsgbox.asp
  6. dpan

    MsgBox buttons

    May you just need to add a second form. I don't think you can have radios on a simple msgbox
  7. dpan

    download file

    And what more do you need? The entire sub is there.........
  8. dpan

    Submit a webbrowser form

    http://www.dotnet247.com/247reference/msgs/46/234077.aspx http://www.developerfusion.co.uk/forums/topic-25330
  9. dpan

    University Virtual Turntable Project (any advice?)

    a good place to start might be: http://www.google.com/search?q=vb.net+audio+programming
  10. dpan

    download file

    I am having a problem and I do not know why. I am tring to download a file while adding download progress to my progress bar. It works fine for most files, however if I try to download a file with a .php extention I get an error. Here is the code: Dim request As WebRequest Dim...
  11. dpan

    If var is empty

    Ok found it. incase someone else needs this if var1.Length <> 0 Then do stuff end if
  12. dpan

    If var is empty

    I just can't figure this out. I want to do something if my var is not empty. somthing like this: if var1 is not "" then ' in other words if var1 is empty do this... end if I just can't seem to figure out the right syntax
  13. dpan

    Icons for ContextMenu used in NotifyIcon

    I'm not sure about 2003 but you can do it at design in 2005. click on the menu item and under the properties panel change the image value.
  14. dpan

    oneclick program dir

    Ca I use NSIS- http://nsis.sourceforge.net to install my .net apps? If so is there anything else that needs to be done to install the program? The reason I ask is because I read somewhere that when tha app is installed it optimizes it's self for the opperating system, or is this done the first...
  15. dpan

    oneclick program dir

    How do I config oneclick to install my app in the programs dir? Also why do I get a security warning when I install on my second system?
  16. dpan

    urgent

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsDataGridClassBackColorTopic.asp
  17. dpan

    xml ado

    Ok just my luck... I looked and looked and looked then I asked for help... then guess what I found the anwser..... here it is in case somone else needs it. http://msdn.microsoft.com/vstudio/express/vb/learning/ look for lesson 10
  18. dpan

    xml ado

    Ok I need some real help. I have been searching the web for 3 or 4 days tring to understand this. Ok I have an xml document and want to loop through it and use the data to create an html document with the data. However I need to make some changes to the strings before I create the html document...
  19. dpan

    how to find a .xml's location after deployment?

    I am using refreances in my code as I listed above, without application.startuppath. to test this I copied my debug dir to my desktop changed a value in my xml file. I then ran the exe and everthing loaded fine. So my question is application.startuppath realy needed or will it work diffrent on...
  20. dpan

    how to find a .xml's location after deployment?

    I'm not sure but if the file is in the same dir as your app just use file.xml if it's in a sub dir of your app then "subdir/file.xml However I could be wrong I'm a real newbie
Back
Top