Jump to content

SISBLU Software

uniGUI Subscriber
  • Posts

    196
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by SISBLU Software

  1. OK... I'm printing an HTML page... Using uniURLFrame . This function works when viewing PDF, but HTML does not work... UniURLFrame1.URL :=UniMainModule.AUrlPrint + '#page=1&zoom=150';
  2. I understand. But I have to click My button on my form and then click SEARCH Button again Isn't there a way for me to just click on my FORM button and run the button without showing the UNIFILEUPLOAD FORM?
  3. What is the solution to this? I want to click on a button to apply CTR + V, But Clipboard does not work on the client only on the server procedure TUniNF.UniButton1Click (Sender: TObject); begin Uniedit1.text: = Clipboard.AsText; end;
  4. Solution: procedure TUniMainModule.UniGUIMainModuleBeforeLogin(Sender: TObject; var Handled: Boolean); begin UniSession.AddJS('document.oncontextmenu = document.body.oncontextmenu = function () { return false; }'); end;
  5. Hi ..this problem 1º Preparing Document... Not close 2º Print 2 pages..
  6. PRINT QUALITY IS BAD. HOW CAN I IMPROVE THE QUALITY OF PRINTING?
  7. How can I implement this for printing? UNIMHTMFRAME, OR URLFRAME function sendUrlToPrint(url){ var beforeUrl = 'intent:'; var afterUrl = '#Intent;'; // Intent call with component afterUrl += 'component=ru.a402d.rawbtprinter.activity.PrintDownloadActivity;' afterUrl += 'package=ru.a402d.rawbtprinter;end;'; document.location=beforeUrl+encodeURI(url)+afterUrl; return false; } // jQuery: set onclick hook for css class print-file $(document).ready(function(){ $('.print-file').click(function () { return sendUrlToPrint($(this).attr('href')); }); }); // or direct <a href="#" onclick="return sendUrlToPrint('http(s)://yousite.com/test.txt');">.txt</a>"; link: https://rawbt.ru/start.html
  8. Okay ... I tried several ways for UNIGUI, SCRIPT, but I couldn't. I already knew this solution. If you know any other way to solve this, tell me.
  9. UniMainModule-> DocumentKeyOptions-> dkDisableF3 Is POSSIBLE????
  10. Solved (USING IIS) I had to PUT ALL my private DLLs in the folder: SysWOW64 Unigui did not accept DLLs in the application folder (EXE or DLL)
×
×
  • Create New...