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: Dorff
  • Content: Threads
  • Order by date
  1. Dorff

    Pointer trouble.....

    I'm having a heck of a time with this code....I think my concept of pointers is a little screwy. Maybe someone can help.... #include <stdio.h> #include <conio.h> void main(void) { int *num, num2, encrptNum, i; num = getche(); clrscr(); for (i=0;i<strlen(num);i++) { num2 = num2...
  2. Dorff

    Calling VBSCRIPT from Javascript....

    I know this sounds easy but the problem is actually very difficult. I have a VBScript function that allows me to communicate with a printer through the COM port. I have a recordset on my page and I pass these records to the function to print labels with the information. The problem I am having...
  3. Dorff

    Passing variables to function.....

    I am passing multiple variables to a VBSCRIPT function and I keep getting the same error, though I can't see the problem. The function call looks like this... call openComm(<%=ord_key%>,<%=price%>,<%=pcode%>,<%=ename%>,<%=qty%>,<%=manID%>) Everytime I load the page I get the message that I...
  4. Dorff

    Sending info to com port???

    I have a function that allows me to send information to a com port but unfortunately the commands such as line break are being ignored. Anyone know anything about this? function openComm If MSComm1.PortOpen = True Then MSComm1.PortOpen = False If MSComm1.PortOpen = False Then MSComm1.PortOpen =...
  5. Dorff

    Datamax Label Printer....

    I'm trying to design a new version of our old Clipper program to handle label printing from an intranet app. I'm having some trouble with the coding for the Datamax Label Printer and was wondering if anyone has had any success with ASP and this piece of hardware. Any help would be appreciated...
  6. Dorff

    Bypass CD-key entry on Install...

    We have purchased our copy of XP Professional along with the licenses, but require a way to automatically have the CD-Key pop up in the text boxes during install. The time it takes us to update 400 computers and type in every key is far too long. I have seen this done in previous versions of...
  7. Dorff

    Datamax Printer....

    Anyone know how to connect to these Label printers? I can't find information anywhere and the manuals are useless. Ryan rmindorff@hotmail.com
  8. Dorff

    Query from Select Box

    I have a select box on my page near the bottom of my form. When the user is done filling out the form they select one of the options from this select box and I want them to be able to see the information pertaining to the selected option in a generated table on the same page. In plain english...
  9. Dorff

    Validation Error....I'm stumped....

    I get this error on line 36 which I marked below. The field names are fine and so is the logic I believe. I can't see the error. Any ideas? <script type=&quot;text/javascript&quot;> <!-- function validate() { x=document.myForm column1=x.column.value testValue=x.testValue.value...
  10. Dorff

    Custom Logon...

    We are using our Exchange box to host a site for our company intranet, allowing users to login from home using their email accounts and gain access to the application. I have designed a new login screen for the public directory which our application resides in, but I'm unsure as to how to use...
  11. Dorff

    Parentheses not allowed?

    I am executing a simple VBScript from my web site. The script is being executed but I get this error. &quot;Cannot use parentheses when calling a sub.&quot; This is the code for the script. Set WshShell = Wscript.CreateObject(&quot;Wscript.Shell&quot;) WshShell.Run...
  12. Dorff

    Mac Icons....

    Anyone have any idea how to convert these to Windows icons?
  13. Dorff

    Mac Icons....

    For my latest intranet app I need to use some icons to assist the user. Say what you will but the Mac has the best icons and I would like to use them. Anyone know of a way to display these on the net? *.icns files I believe. Thanks in advance. Dorff
  14. Dorff

    I don't know where to begin....

    I have a one form VB app I want to execute from IE. I know I need an ActiveX object but when I start a new one in VB6 I just have no idea where to even begin. Any help would be greatly appreciated.
  15. Dorff

    VB App from VBScript.....

    I have a VB program that allows the user to select a Folder from a browser dialog window. How would I code this to allow it to be executed from a button on a web page?
  16. Dorff

    URGENT! Crash on build.....

    Everytime I try to compile my program I get the error saying: MSDEV.EXE Application Error. The instruction at &quot;0x10312ea4&quot; referenced memory at &quot;0x02546000&quot;. The memory could not be &quot;written&quot;. Once I get past that error I get another error referring to the...
  17. Dorff

    Intranet App Question....

    I'm designing a program for one worker in my department. This program recieves a recordset and must and then translates this information into three files types. That much I have figured out, but my problem arises when trying to save. I have to be able to have a function that allows the user to...
  18. Dorff

    Intranet App Question....

    I'm designing a program for one worker in my department. This program recieves a recordset and must and then translates this information into three files types. That much I have figured out, but my problem arises when trying to save. I have to be able to have a function that allows the user to...
  19. Dorff

    Intranet app question....

    I'm designing a program for one worker in my department. This program recieves a recordset and must and then translates this information into three files types. That much I have figured out, but my problem arises when trying to save. I have to be able to have a function that allows the user to...
  20. Dorff

    Creating User accounts...

    I recently purchased a new computer for my office which will eventually house our website. Since I am only a part time employee I will not be sitting in front of this computer all the time and other users will have to access it to make changes to certain programs we are running. I have created...

Part and Inventory Search

Back
Top