Search results for query: *

  • Users: waraq
  • Content: Threads
  • Order by date
  1. W

    Adding Data to a ListView Control

    List View Display I have a problem putting all the text that I read from different text files and then place on the listview. The idea is to read each single file and place it on the corresponding column on the listview that should be like this: Instead I got this: This is what I did: Dim...
  2. W

    Not Change on the Form

    I'm using VB.NET 2005 and some times I made some change on my application but VB.NET do not made any change when I run it. There is any setting that I need to changed? I will appreciate any help. Thank You Will
  3. W

    Open File for reading "SMDR(backup10-6-2007)"

    The scenario is this and please bear with me I'm learning this VS.NET 2005 and I'm trying to open a file with a name "SMDR(backup10-6-2007)" I create an instance of the file: Dim NArchivos As String = Path.GetFullPath("..\..\SMDR(backup10-6-2007)") Then I did my best to open the fila that exist...
  4. W

    Image load from docx

    I have several images that I need to load in a picture box. The extention is .docx. How can I load these images? I tried this: Archivo.Filter = "All Images|*.BMP;*.GIG;*.GIF;*.JPEG;*.JPG;*.TIF;*.EXIF;*.EMF;*.ICO;*.PNG;*.WMF;*.DOCX" If Archivo.ShowDialog = DialogResult.OK Then...
  5. W

    protect Folders & Files.

    Hi John! I have some problems with my folders and files. I need to protect them from being deleted by users. I created some folders and files that are not important but I would like to keep them from being deleted. This is the line of code to create a folder, but there is nothing to prevent...
  6. W

    Windows Forms close/hide

    I have two Windows forms open on the screen and I close one of the two Windows by clicking on the uper red X conner "Close Button" of the Windows form. The second form on the screen have a button that will open the form again, but I have a message that said: An unhandled exception of type...
  7. W

    Deployment Problem

    I deploy the app. and everything seems fine until the first message appears. After I click Continue the application said "has been Succesfully Installed," but there is a problem when I use the mouse and hoover the command button, and then another message pops up "An unhandled exeption has...
  8. W

    Deployment App. unhandled exception

    I deploy the app. and everything seems fine until the first message appears. After I click Continue the application said "has been Succesfully Installed," but there is a problem when I use the mouse and hoover the command button, and then another message pops up "An unhandled exeption has...
  9. W

    open a new e-mail

    Hi! I would like to open a new e-mail with a command button from my application. This is the code that "I think will open a new e-mail pane": PrivateSub Application_NewMail() Dim objApp As Outlook.Application Dim objExplorer As Outlook.Explorer objApp = CreateObject("Outlook.Application")...
  10. W

    Reading Date

    Hi! I'm trying to read the month from a DateTimePicker1 and then compare it to Dim Meses AsString = Now.ToString("MMMM"). I just need the month from the DataTimePicker. The DataTimePicker is the date that the user select. I would like to know the best solution to this problem, or if there is...
  11. W

    Background Image

    Hi! I'm having problems changing the background image on a command button once the application is installed in a sencond computer. I get the following message every time I mousehover the command button: An unhandled exception of type 'System.IO.FileNotFoundException' occurred in...
Back
Top