Search results for query: *

  • Users: dpan
  • Content: Threads
  • 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

    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...
  3. 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
  4. 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?
  5. 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...
  6. dpan

    tooltip property

    Ok this is silly I know but I can't find it on any control. Where did tooltip property go? I'm using vb 2005.
  7. dpan

    fill picturebox via xml ref -Newbie

    Ok I'm tring to load an image that is refernced in an xml file. Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ConfigOpt.Initialize("MyConfig.cfg") ReadConfigValues() End Sub Private Sub...
  8. dpan

    xml as app config

    I want to use an xml file to store some vars for my app. I new to vb.net and I have been trying to find a good source for this info. I have found so much that now I'm just realy confused. Could someone show me what my xml flie sohould look like, maybe a template would be helpful. and what is...
  9. dpan

    if statement ... newbie

    I'm having a hard time here is my code: If DataGridView1.CurrentCell.Value = "" Then Label1.Text = "empty" Else Label1.Text = DataGridView1.CurrentCell.Value End If just tring to print empty if the feild is null
Back
Top