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 Mike Lewis 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. wibenji

    I'm a little lost ... VFP or not VFP .... ???

    I think Griffs advice is the best you can get. Benni "it works for me ¯\_(?)_/¯
  2. wibenji

    How to use QR barcodes in an easy way

    Yeah it´s "just a wish". Some of our clients have really bad hardware companies, and we try to minimize any interaction with them.
  3. wibenji

    How to use QR barcodes in an easy way

    When i start the .exe from my local drive everything works fine. When i put the folder on our network share i get the "Unable to load Clr Instance"-error. But when i put a file named "vfpqrcodertest.exe.config" with <configuration> <runtime> <loadFromRemoteSources enabled="true"/>...
  4. wibenji

    How to use QR barcodes in an easy way

    I´m not sure if this is still directed to me, or just an info for everyone. I just want to let you know that we are doing something similar. The problem with the dll on an network share was just me messing around in our development environment. Benjamin Trinkaus
  5. wibenji

    How to use QR barcodes in an easy way

    Hey Olaf the "Unable to load Clr Instance"- Error was because of the .dll being on a network drive. I fixed it with this https://webconnection.west-wind.com/docs/_3rf12jtma.htm
  6. wibenji

    How to use QR barcodes in an easy way

    Ah the puzzle pieces are slowly making sense to me. I think i can work with that. I also solved the "Unable to load Clr Instance"-Problem by putting the vfp9.exe.config file into the right path. I will now work on making the helper assembly work with all our needs. Again thank you all very very...
  7. wibenji

    How to use QR barcodes in an easy way

    how do you know that? If that´s the case i could easily use the bridge. DO wwDotnetBridge loBridge = GetwwDotnetBridge() ? loBridge.GetDotnetVersion() When i use this i´m getting "Unable to load Clr Instance" errors.(wwDotnetBride.dll is not blocked) Sorry but i´m really helpless. Maybe i need...
  8. wibenji

    How to use QR barcodes in an easy way

    The point is that .NET bridge needs .NET Framework which still needs installation. I need a solution that´s fully working without admin rights. I´m not making that decision, i just need to find a way. I will keep trying to find a solution for me. A big thanks to everyone who tried to help me.
  9. wibenji

    How to use QR barcodes in an easy way

    I´m just in the process of trying this. I will report back when i´m done Edit1: The working .dll i made with Olaf´s help is not registering with the regsvr function. It generates the following error: ERROR: Library VFPQRCode has no entry point for DllRegisterServer
  10. wibenji

    How to use QR barcodes in an easy way

    Short answer: admin rights. But thanks anyway for your code, maybe i can use this sometime in the future Also thanks Olaf for your explanation with the .net Bridge. I´ll have to look deeper into that.
  11. wibenji

    How to use QR barcodes in an easy way

    So i got this working with LOCAL qrcoder as VFPQRCoder.VFPQRCode qrcoder = CREATEOBJECT("VFPQRCoder.VFPQRCode") qrcoder.CreateImage(LC_CSV,"C:/arbeiten/img.jpg") but this means i have to register the .dll file. Is there a way to use the CreateImage() method with a DECLARE CreateImage in...
  12. wibenji

    How to use QR barcodes in an easy way

    Olaf I'm looking for the exact same thing. So no problem for hijacking :-P. I'll take a look at your last post when I have the time.
  13. wibenji

    How to use QR barcodes in an easy way

    That´s a great solution Nigel, but we need an solution that´s working offline. I didn´t say that in my initial post. Maybe someone else has an idea
  14. wibenji

    How to use QR barcodes in an easy way

    We were using FoxbarcodeQR for the longest time, but just realized that it´s QR capabilities are capped to 255 characters. Is anyone using something free/cheap that´s comparable to Foxbarcode? Best regards Benjamin
  15. wibenji

    Windows 10 and Server 2016 running VFP compiled exe

    Sorry just wanted to share what we did do deal with corrupting indexes etc. Thought this might help here too. Wibenji
  16. wibenji

    Windows 10 and Server 2016 running VFP compiled exe

    John have you tried some of this: http://www.eduadmin.com/oplock.htm
  17. wibenji

    QUIT in EXE COM SERVER causes OLE exception

    I´m also getting "OLE lDispatch exception code 0 from ?: ?.." when doing o.Quit() (VFP9 Win10 latest Update)
  18. wibenji

    iPhone browsers (chrome and safari) output different compared to other browsers

    Try adding -webkit-transform: translate(-50%, -50%); to your CSS from the Example/* Style the button and place it in the middle of the container/image */ .container .btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%)...
  19. wibenji

    Create incremental IDID as group

    Try adding this after Mike´s Code FOR I=1 TO LNID GNMAXIMUM = 0 && Initialize minimum value SCAN FOR JUNK.IDID=I GNMAXIMUM = MAX(GNMAXIMUM, JUNK.QTY) ENDSCAN LOCATE FOR JUNK.QTY=GNMAXIMUM AND JUNK.IDID=I REPLACE JUNK.MAX_QTY WITH 1 GNMAXIMUM = 0 ENDFOR

Part and Inventory Search

Back
Top