Search results for query: *

  1. dilbert0610

    New To Serial Port Programming

    I have been asked to create an application that will take a text file containing lines of code for a CNC machine and send it line by line to a CNC controller. The lines will have to be send through a serial port. I have a basic understanding of serial ports but starting my computer work after...
  2. dilbert0610

    String.split method problems

    I am currently using the string.split method to parse a delimited file. The files is using "?" to seperate the fields. The problem I am having is sometimes the field is blank (thus leaving data?data??data?data). When the field is blank it is totally ignoring it all together which is messing up...
  3. dilbert0610

    Maximum Length Of Listbox

    Yeah I do have the scrollbar set to true. I am not sure whats happening. I changed the font size of the listbox to 7.85 instead of 8.25 and now all the characters show up. If I go back to anything higher than 7.85 it cuts off the last 12 characters. I have it set to 7.85 so I guess its fixed for...
  4. dilbert0610

    Maximum Length Of Listbox

    I am pulling lines of data from a text file and putting them into a listbox. I am noticing that it is cutting off some of the data towards the end of the line.. Is there a maximum length or ammount of characters that can be placed into one line of a listbox? If not are there some setting that i...
  5. dilbert0610

    Listbox Alignment Problems

    Thank you very much for this.. This fixed my issues :)
  6. dilbert0610

    Listbox Alignment Problems

    I have an application that searches for something in a line of text from a text file. If the search finds a match it will place the whole line into the listbox. The line contains a part number, PO number, quantities and dates. The text file has all the rows lined up properly (like the dates and...
  7. dilbert0610

    ODBC for Windows Mobile 5.0

    It will be to connect to mysql running on a machine on the local network.. thats why i need odbc :)
  8. dilbert0610

    ODBC for Windows Mobile 5.0

    Does anyone know of a software download to allow ODBC to be used with windows mobile 5.0?
  9. dilbert0610

    Very Simple Report Request

    I am writing a very basic application for a friend. He runs a small company and needs to create reciepts. Right now he is using an old excel file he made a long time ago. I want to write a program that will allow him to place some info into text boxes and then click a print button and it will...
  10. dilbert0610

    Bringing up Outlook's New Message Dialog

    Thanks. I will give that a shot when I get back to work.
  11. dilbert0610

    Bringing up Outlook's New Message Dialog

    I built an application that will search through a couple of folders for specific files. The user puts in a file name to search and it will find it. It allows wildcards and such so they can find the specific one without really knowing the name exactly how it is set. Once they click on it I have a...
  12. dilbert0610

    Framework 2.0 Security Problems

    I think I found the answer to my own question. For anyone else with this problem here is the solution. The 2.0 framework distribution does not include the config utilities. You would need the SDK for that. In order to change the security level you need to use the caspol.exe program in the...
  13. dilbert0610

    Framework 2.0 Security Problems

    I currently Upgraded from VS2003 to VS2005. I have a few applications that run off of a network mapped drive. These programs also access files from the network. In the 1.1 framework I could use the .NET configuration wizard under the control panel to set the Intranet security level to Full...
  14. dilbert0610

    Issues with DataAdapters

    Thanks. I will give that a shot.
  15. dilbert0610

    Issues with DataAdapters

    Ok. I am just starting to do some programming for my work. My boss came to me with a simple request to see if I was able to do it. Well I get almost to the end of his request and then I get stuck. Here is what was needed. I need to go through our parts list in a table named IMINVLOC_SQL (this...
  16. dilbert0610

    Having Trouble Reading A Database

    Hello. I am new to data access with vb.net. I have done extensive work with php and data access, but this is new to me. I can connect to the database but from there im lost. I looked over a few examples but just couldnt get them working. PrivateSub Button1_Click(ByVal sender As System.Object...
  17. dilbert0610

    Calling a public Sub from a class

    At this current time I have the webserver app running. My only issue is when it is sending the header it is actually displaying some of the header as text on the page. This is what I'm seeing when I access the page: Accept-Ranges: bytes Content-Length: 54 I have looked over this code about a...
  18. dilbert0610

    Calling a public Sub from a class

    Ok.. I will let you know what im working on then give you the link. I am writing an app for work that will allow me to monitor a program running on the server. If the program crashes it will reboot it. I also wanted the option of being able to restart, stop, and start the server program via...
  19. dilbert0610

    Calling a public Sub from a class

    That worked perfect :) thanks a ton. Now I just have to figure out why it dont work :)
  20. dilbert0610

    Calling a public Sub from a class

    I found some code on how to create a webserver. I guess it assumes you are really good with .net. Well im a beginer and am attempting to start the application. It was written in a class so I placed it into a class file. Now I would like to attempt to use a command button on a form to start the...
Back
Top