Search found 152 matches

by SHirsch
Mon Sep 30, 2024 2:40 pm
Forum: Deutsches Forum
Topic: Arbeitsauftrag übers Internet vor Ort eingeben
Replies: 14
Views: 907

Re: Arbeitsauftrag übers Internet vor Ort eingeben

Du musst ja nicht alles neu machen, nur den Teil den du brauchst. Im einfachsten Fall stellst du im Backend die nötigen Daten bereit und holst dir die erstellten Arbeitsaufträge ab und importierst sie in dein VO-Programm. Noch cooler wird die Sache, wenn du im Backend direkt auf die VO-Datenbank z ...
by SHirsch
Mon Sep 30, 2024 10:02 am
Forum: Deutsches Forum
Topic: Arbeitsauftrag übers Internet vor Ort eingeben
Replies: 14
Views: 907

Re: Arbeitsauftrag übers Internet vor Ort eingeben

Hallo Franz,

wie wäre es mit einer 'Progressive Web App'? Die hätte dann offline Funktionalität. Der Entwicklungsaufwand ist etwas höher, aber wenn man das von Anfang an macht, muss man nicht hinterher irgendwas 'basteln' oder komplett umbauen.

Stefan
by SHirsch
Wed May 08, 2024 6:58 pm
Forum: Product
Topic: DBServer replacement
Replies: 25
Views: 6051

Re: DBServer replacement

Thank you, Wolfgang.
I will have a look later this week.
I am a bit further with my server class. Workarea switching is working as expected. So my class is fine now.

Stefan
by SHirsch
Thu May 02, 2024 12:48 pm
Forum: Product
Topic: DBServer replacement
Replies: 25
Views: 6051

Re: DBServer replacement

thank you
by SHirsch
Thu May 02, 2024 7:27 am
Forum: Product
Topic: DBServer replacement
Replies: 25
Views: 6051

Re: DBServer replacement

Hello Wolfgang, is this lib still available somewhere to test? I could not find it. I need a lightweight data access possiblity in core dialect for dbfcdx. My own tests just worked with one dbf open at a time. Switching workareas did not work properly. Normally I just use ADS via ADO.net. So my ...
by SHirsch
Thu Mar 16, 2023 7:47 am
Forum: 3rd party products
Topic: The future of ReportPro
Replies: 54
Views: 16443

The future of ReportPro

<t>Hi Robert,<br/> that is great news.<br/> <br/> 1. Your RP Version RP2[ ] RP3[X]<br/> 2. Uses [ ] VO [X] XSharp<br/> 3. As a database you use. [X] DBFs [X] Temporary DBFs [ ] SQL<br/> 4. Approximately how many installations of RP2 you have [ ] 0-100 [ ] 101 - 1000 [X] > 1000 (RP3 not RP2)<br/> 5 ...
by SHirsch
Thu Mar 02, 2023 8:23 am
Forum: Product
Topic: Async question
Replies: 43
Views: 5817

Async question

<r>Hi all,<br/> <br/> here is a good description of asynchronos programming:<br/> <URL url="https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/"><LINK_TEXT text="https://learn.microsoft.com/en-us/dotne ... ogramming/">https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous ...
by SHirsch
Wed Mar 01, 2023 2:31 pm
Forum: Product
Topic: Async question
Replies: 43
Views: 5817

Async question

<r>maybe you can also change your code <CODE><s>[code]</s><i> </i>method _Connect( cHostName as string, cUserName as string, cPassword as string ) as logic local lReturn as logic local oTask as Task _oClient := AsyncFtpClient{ cHostName, cUserName, cPassword } oTask := _oClient:Connect() oTask:Wait ...
by SHirsch
Wed Mar 01, 2023 2:26 pm
Forum: Product
Topic: Async question
Replies: 43
Views: 5817

Async question

Hi Wolfgang

since you are not using the return value you can set the return type to VOID.
You are using
lReturn := _oClient:IsConnected

Otherwise you should have used
lReturn := await oTask

Stefan
by SHirsch
Wed Mar 01, 2023 1:49 pm
Forum: Product
Topic: Async question
Replies: 43
Views: 5817

Async question

Hi Wolfgang,

change to return value just to LOGIC.

Stefan