Search results for query: *

  • Users: waraq
  • 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

    It works Thank you again. I'm glad with have VB.NET FORUM :D I delete bin and odj folders and then rebuild. Thank you Willy
  3. W

    Not Change on the Form

    Thank you so much guys. I will try your advise. Willy
  4. W

    Not Change on the Form

    Design Form I have some problems with my form design and click event. I was trying to create a click event on my btnSave_Click. I want the button (btnSave) to beep one time every time the button is clicked. I did the following: Private Sub btnST_Click(ByVal sender As System.Object, ByVal e As...
  5. 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
  6. W

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

    I create the file in the Desktop for the purpose of practice and reading the file. But the true is that this files will be on the C:\Directory. What is the difference between Environment.GetFolderPath(Environment.SpecialFolde r.DesktopDirectory). and the one I'm using.? Also how can implement...
  7. W

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

    This is my msgbox respond: Could not find file 'C:\Document and Settings\Me\Desktop\Howker Project\Telefono.vb\Telefono.vb\bin\debug\SMDR(backup10-6-2007)' I don't understand why is divided in two lines this message this is the actual loctation of the file "C:\Documents and...
  8. 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...
  9. W

    Image load from docx

    Thank you for the link. I know is not an image file, becouse I create the image in word document. Then the question is how I open the file wiht extention *.docx (which is word document with an image in it). I know you just said that you don't know and I appreciate your help. Willy
  10. 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...
  11. 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...
  12. W

    Windows Forms close/hide

    Forms I really appreciate your help Jhon. I will try that line of code. You must know this computer languege well, I remember the las time you help me with some other problem. I hope you making big money doing so. Also, I did try this line of code: Portada.ShowDialog() Me.Show() But...
  13. 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...
  14. W

    Deployment Problem

    Not and I think that's the problem :D Thank you so much. Willy
  15. 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...
  16. 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...
  17. W

    open a new e-mail

    Hi Thank you for your help. I'm a new in VB.net and the book that I am reading it is not very clear on how to open a new email. I think you have an eassy way to explain. Please be more specific in the Proces Class. I will appriciate it. Waraq
  18. 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")...
  19. 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...
  20. W

    Background Image

    Hi! Thank you, it really helped me and the code was very easy to understand. I see that you use XML file to access the desire directory, I haven't read much about XML, but the only knowlege I have is that ADO.NET and XML go hand in hand. XML is a method of representing structured data. I...
Back
Top