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 strongm 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. louie728

    VPN connection Problem if on same network

    Thanks nsvoy. Here is the routing table from a computer on the same network that connects to the VPN but cannot access resources. =========================================================================== Interface List 0x1 ........................... MS TCP Loopback interface 0x10003 ...00...
  2. louie728

    VPN connection Problem if on same network

    I am using the router which is a Netopia and these are the settings: ------------------------------------------------------------ Change Connection Profile Profile Name: VPN Profile Enabled: Data Link Encapsulation... PPTP Data Link...
  3. louie728

    VPN connection Problem if on same network

    Hello all, I currently have a VPN set up that works great if the connection is not from the same network. Example if the client 's computer has an address of 192.168.0.xxx, it connects via vpn everything is great. If the client has an address 192.168.1.xxx it connects, but cannot see anything...
  4. louie728

    GWIA install on SLES 9.0 LDAP Authenticaion problems

    Hello all, I am installing GWIA on SLES 9.0 and am having trouble when I get to the point where I have to authenticate with LDAP. I get an incorrect password error. The password is correct and I have tried setting Require TLS for Simple Binds with Password on/off. Any help would be greatly...
  5. louie728

    How to know if a table is used by another user

    Why not use the USED() function? IF USED('tablename') ?"Table is being used" ELSE ?"table is not being used" USE tablename in 0 ENDIF HTH
  6. louie728

    Printing via menu command

    Mike, The log file is actually a cursor so yes that would work, but I really just wanted to print a text file. I did a workaround by launching wordpad , but I would still want to know how I can add the regular old print feature. DECLARE INTEGER ShellExecute IN shell32.dll ; INTEGER hndWin...
  7. louie728

    Printing via menu command

    Thanks for the reply Mike, but the AKA log file is an indication for the user in this instance telling him what has been processed. Printing is essential. Thanks
  8. louie728

    Printing via menu command

    Hello all, I am using the codebook framework and have added a menu item print, just like the regular VFP ide print. The problem is that I do not know the command to execute in the menu to print. I have tried to use SYS(1500,'_MFI_SYSPRINT','_MSM_FILE') to no avail since it will not work from...
  9. louie728

    Paste into input type file

    Thank you for your reply Dan, but I already went this route and the value property cannot be set on an input type=file that is why I would like to paste.
  10. louie728

    Paste into input type file

    Hello all. I have a situation with a input file type. I cannot set the .value due to security reasons and I cannot set focus to the control then do a document.execCommand("paste"); (to paste from the clipboard) because of the same reason, these two methods work fine with regular input text...
  11. louie728

    Mail merge to Word vfp 8.0

    Thanks Marcia the white paper is very helpful. I am going to post another question about printing maybee you will be able to help.... Thanks :-)
  12. louie728

    Mail merge to Word vfp 8.0

    Thank you everyone for responding. I was using code from a HENTZENWERKE book (Microsoft office automation with visual foxpro) and it wasn't working out too good. I sat down and came up with the following code which is working out for me alot better. I am going to look for the bookmark...
  13. louie728

    Mail merge to Word vfp 8.0

    Hello all, I want to be able to do the quickest mail merge to word possible from vfp 8.0 using a table or cursor (merge to new document or printer). Right now I have a program that creates a temp word document on the fly with tables and populates the document from a vfp table. I would rather...
  14. louie728

    Url Parsing VFP

    Thank you Mike :-)
  15. louie728

    Url Parsing VFP

    Hello all, I am developing an application that will send via a url querystring a path to a file for upload to a webpage. (example: http://www.example.com?path=c:\path) The path will have spaces because it will be sending files from the users my documents folder, right now I am just using...
  16. louie728

    Enumerated Types

    KenBw, Do you mean convert to Integer? CInt(Emp.Director) VarType(CInt(Emp.Director)).ToString 'returns Integer HTH,
  17. louie728

    command/immediate window

    Thanks for replying everyone.... I can't believe that .net doesn't have some sort of way of doing that and VB6 does, That is why I assumed that it could be done. Bigfoot your probably right about the compiled vs Interpreted (I didn't even think about that).... The command window in Foxpro is...
  18. louie728

    command/immediate window

    Hello, I would like to be able to use the command/immediate window to try code before I use. I am used to FoxPro's command window, where I can test something before I write the code to avoid errors. I assume that the command/immediate window will let me do this, but I haven' been able to. I...
  19. louie728

    How to return variable type at runtime?????????

    Hello all, I would like to know how to return a variable type at runtime in vb .net. I am used to programming in Foxpro and I would do something like: TYPE(cExpression) which would return the datatype of its contents. If it is an object would return "O", character "C" and so on. Any help...

Part and Inventory Search

Back
Top