English
Kompilierer

XProfan X4, Subscription

 
- Page 1 -



RGH
its so far: After completion can now The subscriber too The final Version here download. the notwendige Installationspasswort finds itself in the Textdatei, which next to the Installationsprogramm in the ZIP-File befindet.

Download/ into Cart
19,95 €
inkl. MwSt.
no Shipping fee


Prerequisite is a installed Full Version of XProfan X3.x.

18.109 kB19,95 €
inkl. Tax.
no Shipping fee
item:DE-10900
Bezeichnung:XProfanX4, Subscription
Version:Fertige Version X4 (13.05.2018)
Hochgeladen:05/17/17
Download
 
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
05/17/17  
 



 
- Page 2 -



RGH
OK, with the whom DropDownButtons have I now installed. If one The Menu-ID as negativen worth types, becomes this small arrow next to the Button displayed.
with @MenuItem(ID) asks one How dwelt whom actual Button ex, with @MenuItem(-ID) whom small DropDownButton. then can z.B. with CreateMenu one Untermenü produce ... or what integrally other do.

Greeting
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
06/24/17  
 




Michael
W.
Uwe long (24.06.2017)
there we straight with the Toolbar are,
can these yet so far strain the one The Toolbar too on whom Fensterrändern means right or. left space can?


goes loudly Delphi-practice too: [...] 

Style: [...] 

Control: [...] 

VB: [...] 
 
Alle Sprachen
System: Windows 8/10, XProfan X4
Programmieren, das spannendste Detektivspiel der Welt.
06/25/17  
 




RGH
Yes, with the VCL does it. but in XProfan use I Yes not The VCL, separate "nur" The windows-API. and there's this of my Wissens unfortunately not vorgesehen. (OK, too The Toolbar under diving in the Microsoft-API-Doku not ...)

Greeting
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
06/25/17  
 




RGH
... and the new version with the supra beschriebenen expansion the Toolbar (and one small Beispielprogramm) uploaded.

plenty Fun so
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
06/25/17  
 




RGH
Vergeßt The supra beschriebene Syntax for DropDown-Pfeile with the Toolbar. The thing with the negativen ID bite itself intern with the ItemIDs. so becomes it means now objectively his:

The Toolbar-functions "AddButton", "AddTextButton", "InsertButton" and "InsertTextButton" it hold a optionalen additional Parameter. is this 0 or not present, there none DropDownPfeil, is it larger as 0, there whom DropDown-arrow for Button.

The ID the squeezed DowpDown-Pfeiles is to the WaitInput in the System-Variables %DropDownID and can also with the new function DropDown(ID) quizzed go. Similar How with the function MenuItem() is the Return Value the function 1, if the suitable arrow klicked watts.

the updated example:
Declare hToolBar&, hBild&, end%
Window Style 63
Cls
hToolbar& = Create("TOOLBAR", &hWnd, 0, 0, 2, 2000, 1)
Toolbar("AddButton", hToolBar&, 0, 2000, "Button 1", 1)
Toolbar("Separator", hToolbar&)
Toolbar("AddButton", hToolBar&, 5, 2005, "ENDE")

WhileNot end%

    WaitInput
    locate 10,30

    If %KEY = 2

        end% = 1

    ElseIf %KEY = 4

        SetWindowPos hToolbar& = 0, 0 - 0, 0; 0

    ElseIf MenuItem(2000)

        MessageBox("Schnipp schnapp!", "Test", 0)
        cls rgb(255,255,255)

    ElseIf DropDown(2000)

        CreateMenu
        AppendMenu 101,"&blau"
        AppendMenu 102,"&rot"
        AppendMenu 103,"&grün"
        Separator
        AppendMenu 2005,"&Ende"
        TrackMenu %MouseX,32

    EndIf

    If MenuItem(2005)

        end% = 1

    ElseIf MenuItem(101)

        cls rgb(0,0,255)

    ElseIf MenuItem(102)

        cls rgb(255,0,0)

    ElseIf MenuItem(103)

        cls rgb(0,255,0)

    EndIf

EndWhile

DeleteObject hBild&
End

Greeting
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
07/02/17  
 




jacdelad
Hm, now must one only yet calculate where the Dropdown-Menu there should. usually is Yes directly under Button, means concisely To which linker downstairs edge. ought to but no trouble his.
 
07/04/17  
 




RGH
and the next Upload the Subscriptionsversion!

ftp("ListDir", File[, mode])
If mode omitted becomes or 0 is, becomes How yet one ausführliches Listing into File geschriebn, is the mode <> 0, stand in the File only The Filenames, The about with move("FileToList", File) into Listboxliste written go can.

HashArray[] = json("Hash", Jsondatei)
The JSON-File into Hash-aray read!
Boolsche values having whom "*TRUE*" or "*FALSE*".
an list has the value "[n]", one Objekt the value "{n}", where n the suitable lever is. One example:
Declare string Dateiname, Schluessel, worth, \
long js,                            \
hash HashArray[]
window 1500,1000
Dateiname = LoadFile $("Wähle a JSON-Datei","*.json")

If Dateiname > ""

    js = Create("json", Dateiname)
    HashArray[] = json("Hash", js)
    ForEach HashArray[], Schluessel, worth
    Print Schluessel + " = " + worth
    EndFor

EndIf

Print
Print "Taste pressing ..."
WaitInput
End

the Result sees z.B. so from:
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
07/23/17  
 




E.T.
...on the side: when get the new Version The version number 14 ??
question only wegens the Unübersichtlichkeit halber
 
XProfan X3
Grüße aus Sachsen... Mario
WinXP, Win7 (64 Bit),Win8(.1),Win10, Win 11, Profan 6 - X4, XPSE, und 'nen schwarzes, blinkendes Dingens, wo ich das alles reinschütte...
07/27/17  
 




Ostfriesenjack
RGH (17.05.2017)
The next XProfan-Version standing short to yours publication.


when becomes because The Version X4 on CD get out and is a Upgrade from the X2 possible?

best Regards,
Jack
 
08/09/17  
 




RGH
new Version uploaded:

New is the MailEmpfang with XProfan.
Also watts the File-Download by FTP in the background allows, Create("Icon",...) extended and yet some More.

any Neuerungen there here to that Nachlesen: [...] 

Greeting
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
08/16/17  
 




RGH
Ostfriesenjack (09.08.2017)
when becomes because The Version X4 on CD get out and is a Upgrade from the X2 possible?


i think, that The CD (or the USB-Stick?) in the september or october ready becomes.

Updates becomes it How dwelt from the last (X3) and vorletzten (X2) Version give. Version 11.2 becomes then to Freeware.

Greeting
Roland
 
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
08/16/17  
 




RGH
... and again a new Version:

now goes too the FTP-Upload in the background, one can whom Content of/ one ZIP-File read and one can now arbitrary Own Containerfunktionen create, them How with whom installed Containern with SUBPROC further functions added can.

and a couple smaller ones Bugs get too eliminating.

an Description the Neuerungen there soon on usual place.

Greeting
Roland
 
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
09/06/17  
 




Rezension verfassen


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

66.057 Views

Untitledvor 0 min.
Kutsche vor 31 Tagen
ByteAttack10/16/24
Rschnett08/24/24
Hans-Jürgen Trog07/29/24
More...

Themeninformationen



Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie