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 SkipVought 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: *

  1. OnQueIT

    BOM?

    Mike that's a good point. On the other hand, looking at a demo of an existing product might help them better understand what they want for their own application. The first question posted was asking how BOM's work.
  2. OnQueIT

    Win32Api - want to stuff keyboard in another application

    Mike, thanks a bunch for following up. The Microsoft site filled in a few more blanks. I've been busy coding and testing and last night got very thing working 100% correct. There is no way I could have completed this task without your help so for that I say thank you. In the future I promise...
  3. OnQueIT

    BOM?

    If its Pro Series you are working with or VisionPoint, you could always look at TIW's WorkShop. I thinks its www.tiwcorp.com. SBTBILL and I traverse the same code. I assume he is familar with Customization Manager. I have looked at the Pro Series BOM and I think WorkShop is a little more...
  4. OnQueIT

    BOM?

    When you build the finish good or sub of a finished good, the transactions for building are as follows. You will need to subtract the raw material and cost of raw material in IC. You will need to also make a addition to the finish good for the number you build. The cost of the finished good...
  5. OnQueIT

    Win32Api - want to stuff keyboard in another application

    After I sent the last post, I realized I also need to know other keys. Left and Right arrow and ENTER. Are these {LEFTARROW}, {RIGHTARROW}, {ENTER}. Is TAB, {TAB}?
  6. OnQueIT

    Client domain/workgroup in a remote desktop session

    This is information I found that Olaf posted for a different question but it might help with your problem. OlafDoschke (Programmer) 1 Aug 09 12:35 Win32 API functions are case sensitive, so either you DECLARE GetAdaptersInfo ... AS GETADAPTERSINFO or you use it as it is. It lists all NICs...
  7. OnQueIT

    Win32Api - want to stuff keyboard in another application

    I think this will work for me. How do I send a Function key(F5 or F2)?
  8. OnQueIT

    Win32Api - want to stuff keyboard in another application

    The SendKeys function did insert the string but did not insert the keystrokes at the current cursor location. From the initial application screen there is an input box selected from the menu and is the current form in the application. The SendKeys function sends the data to the first/current...
  9. OnQueIT

    Win32Api - want to stuff keyboard in another application

    2 part question: (1)Is there a list of functions available from win32api. (2) I figured out how to popup(bring to the front) another application by using the BringWindowToTop(win32api) and ShowWindow(win32api). Actual question: I want to send data to that application after it becomes the...
  10. OnQueIT

    Need tools to communicate with USB device

    I've got one from Radio Shack on the shelf and it does work. I just didn't know if there was something else I needed to be using. I appreciate you reminding me to check my closet every now and then. Didn't know about the Sewell brand, I will check this one out also. The ones from radio shack...
  11. OnQueIT

    Need tools to communicate with USB device

    I have a program to read data from scales but the type and brand of the scale may very and with COMMTOOLS(as you know) you need to know how to communicate with the scale(baud rate, databits, parity, stopbit) and what strings command to send the different scales to request the weight. Since the...
  12. OnQueIT

    Need tools to communicate with USB device

    I've been using COMMTOOLS to communicate with serial ports and now I need to move up to USB ports. Are there tools out available for VFP that I can use to replace my old code? In my control file, the user can select the device name along with port, baud, data bits, stop bits and parity. Not...
  13. OnQueIT

    XML: Text is not what the server sent

    I receive this text, display it to the end user and get some additional information. The additional information along with the text (EULA) gets sent back to the server that originally sent it to me. Its then verified to make sure the text has not been alter from what they originally sent. The...
  14. OnQueIT

    XML: Text is not what the server sent

    I tried the UTF-8 but this did not solve my problem. Parsing the received xml is easy, its what happens to it between it getting sent and my program receiving it. I'm getting """ and "'" in place of quote marks and apostrophy marks. The server "people&quot...
  15. OnQueIT

    XML: Text is not what the server sent

    I am receiving a EULA from a server. When I get it and look at what I got, the text has been changed. Some of the EULA is in French which has words with a grave accent (è) encoded, but when I get it, the letters are changed to a question mark(?). Example: pr?ntes should be présentes. Any...
  16. OnQueIT

    UNLOCK Changes Data

    also, make sure you are on the correct record in the data file.
  17. OnQueIT

    XML text received is not what was sent by server

    I start by creating lcXML and the first line of it is: lcXML = [<?xml version=&quot;1.0&quot; encoding = &quot;ISO-8859-1&quot;?>] lcXML = lcXML + CHR(10) + [<Request>] lcXML = lcXML + CHR(10) + [<TransactionReference>] fill in the rest your self lcXML = lcXML + CHR(10) +...
  18. OnQueIT

    XML text received is not what was sent by server

    I am receiving a EULA from a server. When I get it and look at what I got, the text has been changed. Some of the EULA is in French which has words with a grave accent (è) encoded, but when I get it, the letters are changed to a question mark(?). Example: pr?ntes should be présentes. Any...

Part and Inventory Search

Back
Top