Search found 420 matches

by lagraf
Tue May 14, 2024 7:30 am
Forum: Deutsches Forum
Topic: Installationsroutine per InnoSetup für X# App
Replies: 4
Views: 261

Re: Installationsroutine per InnoSetup für X# App

Ich hab mich da ev. falsch ausgedrückt: Ich weiß schon, wie man ein InnoSetup Script erstellt, habe ich bei VO Programmen oft genug gemacht. Aber wie finde ich heraus, welche X# DLLs ich benötige: Auf einer nackten VM die X# EXE starten und schauen, welche DLLs verlangt werden? Oder gibt es eine Rou...
by lagraf
Wed May 08, 2024 11:59 am
Forum: Deutsches Forum
Topic: bBrowser 1.4 für X#
Replies: 2
Views: 144

Re: bBrowser 1.4 für X#

Ok, danke
Dann muss ich den bBrowser kaufen und die Kosten dafür dem Kunden verrechnen.
Franz
by lagraf
Wed May 08, 2024 6:20 am
Forum: Deutsches Forum
Topic: bBrowser 1.4 für X#
Replies: 2
Views: 144

bBrowser 1.4 für X#

Hallo zusammen,
ich habe in meiner VO Sammlung ein einziges Prog, wo ich den kostenlosen bBrowser 1.4 verwende, um Fotos und mehrzeilige Texte in einem Browser darzustellen. Gibt es unter X# auch eine kostenlose, abgespeckte Variante?
Franz
by lagraf
Tue Apr 23, 2024 3:52 pm
Forum: Deutsches Forum
Topic: Extended VO Classes with own Methods
Replies: 6
Views: 205

Re: Extended VO Classes with own Methods

Hi Wolfgang,
thank you for the code, but I think you meant oControl in "PostMessage(Control:Handle(), EM_SCROLLCARET, 0, 0L )".
It compiles without error in this Method.
When I have corrected the remaining errors in this app I will see if it runs.
Franz
by lagraf
Tue Apr 23, 2024 3:49 pm
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 427

Re: EXIT in FOR Loop

Hi Chris,
I edited it to Codeblock and now it compiles.
Franz
by lagraf
Tue Apr 23, 2024 6:39 am
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 427

Re: EXIT in FOR Loop

Hi Robert, I did the #pragma options ("memvars", on) at the beginning and the #pragma options ("memvars", default) at the end of the method. Compiling shows same errors as without #pragma! Compiler switch at Properties, Compiler, /memvar works but I get other errors at MCompile /...
by lagraf
Tue Apr 23, 2024 6:14 am
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 427

Re: EXIT in FOR Loop

Ok, thank you Chris,
pls keep me informed if the #pragma works.

Is there another way to compile user defined formulas?

Franz
by lagraf
Mon Apr 22, 2024 4:50 pm
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 427

Re: EXIT in FOR Loop

Hi Chris,
the privates are because of the Macrocompiler later in this Method, it compiles user defined formulas.
I changed properties to /memvar
Franz
by lagraf
Mon Apr 22, 2024 12:51 pm
Forum: Deutsches Forum
Topic: Extended VO Classes with own Methods
Replies: 6
Views: 205

Re: Extended VO Classes with own Methods

Hallo Wolfgang, ich habe die Methode für die Control Klasse dann so implementiert: STATIC CLASS ControlExtensions STATIC METHOD PostFocus() PostMessage( GetParent(SELF:Handle()) , WM_NextDlgCtl , DWORD( _CAST , SELF:Handle() ) , 1L ) IF IsInstanceOf(SELF,#SingleLineEdit) PostMessage(SELF:Handle(), E...
by lagraf
Mon Apr 22, 2024 12:17 pm
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 427

Re: EXIT in FOR Loop

Hi Robert,
Class ends with END CLASS.
Here's the class transported from VO to X#, if you need whole project, pls tell me.