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

    ...Requistion?IssueDate?Buyer?Budget?Budget(US$)?Price?ExngRate?Price(US$)?Variance? 0?0639570-00-117?111406-2??03/23/07?THOMAS KAUFFMAN?USD? 0? 0?***********?***********?***********?***********? 321794? 3275? 191?Vendor Total:?USD?USD?P.O Count:?Sup.Count:?F.L.SMIDTH INC. - MANHEIM...
  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

    ...in DBase said i need to grab a proportional font. I searched all over and cant find anything about it. Was hoping someone can help me out. ** in addition its not only the ones missing part numbers.. if u look at the text file all of the items line up properly. But when placed into the...
  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

    ...Dim sql AsString = "SELECT * FROM IMINVLOC_SQL WHERE Reorder_Lvl = 0 AND Ord_Up_To_Lvl = 1" Dim ad AsNew Odbc.OdbcCommand(sql, myConn) Dim ds AsNew DataSet myConn.Open() Dim da AsNew Odbc.OdbcDataAdapter da.SelectCommand = ad da.Fill(ds, "MyData") count = ds.Tables(0).Rows.Count Do...
  16. dilbert0610

    Having Trouble Reading A Database

    ...myConn.ConnectionString = "ServerDSN=MAC;TransportHint=TCP:SPX;DSN=MAC;ArrayBufferSize=8;ArrayFetchOn=1;ServerName=manmac.1583;UID=****;DecimalSymbol=." Dim sql AsString = "SELECT Item_No FROM IMITMIDX_SQL" Dim ad AsNew Odbc.OdbcCommand(sql, myConn) Dim reader As Odbc.OdbcDataReader...
  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