Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: aclayborne
  • Content: Threads
  • Order by date
  1. aclayborne

    How do I setup a new computer to run DOS programs

    I need to setup a computer to run a dos based CNC Program(The program cannot be run in vitual mode or a dos window) How do i accomplish this goal. Do I load Windows 95 or 98 and install the program.(Does the run on FAT,FAT32 of NTFS) Do I load DOS 6.22 and install(I would need to create a...
  2. aclayborne

    Folder Sync using FileSystemWatcher

    I'm using the FileSystemWatcher to sync 2 folders. I'm receiving errors. because the changed event fires multiple times. I'm good on file updates and deletions. It's the copies(a create even is kick off and then a changed event) Any suggestions. ' Init Sub Init Dim FSWL As FileSystemWatcher =...
  3. aclayborne

    Trying to display contents of access table using dbgrid

    Does anyone have any code snippets showing how to connect, load, and update and access table using a dbgrid? Also do you have control over how the fields are display? Ex. Can a boolean field be displayed as a check box. I'm a dbgrid begginner. :-)
  4. aclayborne

    What is a ctx file?

    What defines the CTX format?
  5. aclayborne

    Can you run VB 6 and VB net on the machine

    I'm a VB 6 programmer, I want to start learning VB NET, can I install VB NET without causing any problems to my VB 6 environment or existing projects?
  6. aclayborne

    Parsing for upper case letters ( isuppercase() ?)

    I need to convert "DoeJohn" to "Doe John" Is there a function in vb the will detect upper case letters? Or do I have to parse thru the string and verify each characters ascii value?
  7. aclayborne

    References and Components

    I'm recreating a sample project. But when I try to start my version I get and error starting to sdk is there another way other the checking to references and components to verify what my project is missing?
  8. aclayborne

    How do I start the windows explorer and set it to My Doc

    From my program how do I start the windows explorer and set the open folder to My Documents. Also how can I determine the last selected or currently open folder?
  9. aclayborne

    Directx 8(DirectShow ) and VB 6 Displaying Live Video

    I'm trying to find a good example of how to Display live video using a USB 2.0 camera. I need to learn how to load the camera display live video freeze video capture image I know about various 3rd party tools that will do this for me, but I would like to achieve this through WDM. And if...
  10. aclayborne

    Handling Hex Numbers through MSComm

    I know this is a pretty basic question for most of you all but the whole concept escapes me. I have an application that needs to send and receive information through MSComm the setting will be (9600,8,N,1) I will recieve a 5 byte packet ex: Offset1 = 0x7E Offset2 = 0x01 Offset3 = 0x02 Offset4 =...
  11. aclayborne

    How do I get an access db field size using dao

    I'm use DAO and I need to be able to get the size of a field. I really don't want to bind my text boxes to the database or enter a value in each of the text boxes maxlength property, any ideas.
  12. aclayborne

    Setting a form's backcolor

    Is there anyway to set a form's backcolor property to more than one color Ex. Have half the form green and the other half red? I tried setting the form's picture property to a red and green bitmap but when I load and unload controls with images in them the form flashes white. Acie Clayborne
  13. aclayborne

    Setting a form's backcolor

    Is there anyway to set a form's backcolor property to more than one color Ex. Have half the form green and the other half red? I tried setting the form's picture property to a red and green bitmap but when I load and unload controls with images in them the form flashes white. Acie Clayborne
  14. aclayborne

    What does rundll32.exe do?

    What does rundll32.exe do and what type of dlls work with it. I have a SDK that requires me to register the dll's with this command: ("RUNDLL32.EXE xxxx.DLL,Install /NOUI", 1) The OCX file associated with the dll won't run properly if I simply try to register the dlls. Is there anyway...
  15. aclayborne

    What does rundll32.exe do

    What does rundll32.exe do and what type of dlls work with it. I have a SDK that requires me to register the dll's with this command: ("RUNDLL32.EXE xxxx.DLL,Install /NOUI", 1) The OCX file associated with the dll won't run properly if I simply try to register the dlls. Is there anyway...
  16. aclayborne

    Package and Deployment Wizard not finding supporting files

    I have a couple third party controls that I use in my project the PDW doesn't automatically include all of the supporting dll's. I also noticed the OCX's don't have .DEP files like some of the Microsoft OCX's. Is the PDW looking for a .DEP file for these OCX's if so how can I create one?
  17. aclayborne

    Use of On Error statement question

    Here's my code: On Error GoTo 0 On Error Resume Next Verify = Dir(SysInfo.AccessDBLocation & "\Access.mdb", vbDirectory) If Err.Number = 52 Then Err.Clear MsgBox ("Database path is invalid!") End If I've been reading other articles posted on the use of the...
  18. aclayborne

    Calling C functions from a DLL

    I'm not sure how to approach calling a few functions written in C the reside in a DLL. I assumed I should create a bas file and declare the functions. BOOL (WINAPI *lpInitCapture)(int InitMode, HWND hWnd) void (WINAPI *lpExitCapture)() int (WINAPI *lpCheckTrigger)() int (WINAPI...
  19. aclayborne

    Calling C functions form a DLL

    I'm not sure how to approach calling a few functions written in C the reside in a DLL. I assumed I should create a bas file and declare the functions. BOOL (WINAPI *lpInitCapture)(int InitMode, HWND hWnd) void (WINAPI *lpExitCapture)() int (WINAPI *lpCheckTrigger)() int (WINAPI...
  20. aclayborne

    Detect when your form is move

    I'm trying to detect when a form has been moved, I've tried using the form's mouse down and clicked events and the are not detecting when I click on the title bar and move the form. It would also be nice to known what the forms new coordinates are. Acie Clayborne

Part and Inventory Search

Back
Top