Search results for query: *

  1. J

    Encrypting a text file before email

    Hey Boys 'n Girls... I have developed a application that captures data into a csv file from the client and then transmits at the end of the month to my MS-CRM queue. All works perfectly, but due to the nature of the data, i need to encrypt the entire csv file. I need to "When the user saves"...
  2. J

    Exporting from Microsoft Access to Excel or .csv

    CSV instead of DB - Resolved Hi Guys, Thanks for information, I was having problems saving to the database after creating the setup, so i changed to AddRecord() to write to a CSV file using streamwriter. My thanks again for the support. Jefferson
  3. J

    Application not seeing Database after setup.msi created

    Database Hi, I have changed the database path to the install directory in the application, but that does not work? Need idea's please. Jefferson
  4. J

    Application not seeing Database after setup.msi created

    Hi Guys, I know this is problably a stupid question, but i just don't know anymore!!! I have created a Windows Application with .Net and used a Access Database to save the information that the users have typed in. The connection was created via the server tools and is...
  5. J

    Call email Client from VB.NET Windows Application

    SMTP problems Hi BadgerByte, I got the mail to work, and can see it in the sent box of Outlook, But it does not get to the address it should. Do i need to add SMTP / POP3 settings??? Rgds Jefferson
  6. J

    Call email Client from VB.NET Windows Application

    Outlook Hi, This is what i have found so far, but it does no seem to register the the parts marked in red. Private Sub mnuDBEmail_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuDBEmail.Click Dim oOutlook As New Outlook.Application Dim oMailitem As...
  7. J

    Call email Client from VB.NET Windows Application

    Hi Guys, How would i call and email from vb.net windows forms and attach a document to send to a specified address??? I can't find anything in the help file. Jefferson
  8. J

    Exporting from Microsoft Access to Excel or .csv

    Hi, I have no idea how to start this or what code would be required, seeing as i lost my VB.NET manual. Basically, I have an application that reads in data from Textbox's, Combo's and datetimepickers from users and adds this to a Access Database. I need to export the information from the...
  9. J

    Combobox Item Collection - working with a selection change

    combobox selecteditem - Resolved Hi, Thanks for that, Seems that i was entering the text incorrectly - did not realize that it was case sensitive. Enjoy your day. Jefferson
  10. J

    Combobox Item Collection - working with a selection change

    Hi, I am trying to disable textbox's on the change of the items in a combobox, I have tried using the combobox_selectionchangecommited() combobox_selectedvaluechanged() combobox_selectedIndexChanged() and finally with the code attached Private Sub cboBoxEmploymentStatus_Click If...
  11. J

    Convert a 13 Character string to a Integer for access DB

    int64 - Resolved :) Hi, I changed the fields in the Database from Number to text for the ID and Telephone numbers, and then reconnected the database to vb.net... All seems to be working fine now, thanks for the help!!!
  12. J

    Convert a 13 Character string to a Integer for access DB

    Hi, I have created an application that reads information typed by a user in a textbox into a Dataset then updates this to a Access Database. I use this Textbox to capture the values of the Field in the Database of which the DB field is a Text field, but when executing the Line *** drw1("ID") =...
  13. J

    Getting data from Textbox's withing a Tabcontrol

    TabControl - Resolved Hi, I removed the Try statement for error catching, and then changed the line of code "drw1("ID") = int64.parse(txtID.text)" to rather read "drw1("ID") = Long.parse(txtID.text)" and all seems to work well from here. This is the perfect example of a communication error...
  14. J

    Getting data from Textbox's withing a Tabcontrol

    TabControl Hi, This is what i though as well, but ran a little check on it after your post, unfortunatley this did not help. I did create another 4 textbox's on the main form, and they wrote perfectley to the database, but when selecting them off the tabcontrol (or at least trying to) they...
  15. J

    Getting data from Textbox's withing a Tabcontrol

    TabControl No error message, Just skips past the rest of the code and hits my Catch eError. How do i read textbox's off of a tabcontrol.Tabpage??? I think this is my main problem.
  16. J

    Getting data from Textbox's withing a Tabcontrol

    Tabcontrol & Textbox's Hi, When i run the debug, the mintue the code reaches the {drw1("ID") = txtID.Text} line, then the application throws an error. Mind you, the Code for this is on frmMain and declared as a Private Sub. The Textbox's are under the TabControl1 - Tabpage1, Tabpage2 and...
  17. J

    Getting data from Textbox's withing a Tabcontrol

    Hi, I am a little new to VB.net, and am having some problems, If someone would be gracious enough to help out, i would truely appreciate it. I have a TabControl with three tabs on it, each tab contains about 10 Textbox's that capture data from the User. The idea is to get the data from the...
  18. J

    Connecting to SQL Server with VB.NET

    Hey, Thats the next step, Thanks. Will rather code the connection, but you know how it is, Server Explorer looked like a faster way to do things :-) Rgds Jefferson
  19. J

    Connecting to SQL Server with VB.NET

    Hello again, I am trying to connect to SQL Server with VB.NET to make ajustments to the Microsoft CRM. I have VB.NET 2003 standard edition on an XP box. Each time i try this, VB.NET kicks out the following error... "Unable to connect to the Database It is only possible to connect to SQL...
  20. J

    Already member of debuggers group, but cant debug asp.net?

    Finally cracked it, Seems that i needed to add http://localhost to the trusted sites before it would debug the application. Rgds Jefferson
Back
Top