| |
|
|
- Page 1 - |
|
Stefan Landsberg | Hi, I interest me very heavy for program, Have but except for one little scripten in the Konsole of XP none Schimmer of it. I Have me jetz for Profan decided weils Yes soo simply his should, and white nevertheless not How and where I begin should.
1. should I XProfan Free or Profan² 6.6 take??? (what is the Difference) 2. Gibts any books or must one itself everything with Ner befehlsreferenz self procure???
first thing Program wished I something program what defined computer in the heimnetzwerk anpingt and then indicating whether these accessible are or not. with cmd Have I the already hinbekommen (The batch File is in the attachment), but with profane white I garnich with which I begin should.
it would nice if your me help on could. |
|
|
| |
|
|
| |
|
- Page 3 - |
|
|
Dietmar Horn |
and i'm not clear, Why Dietmar not hereon hinweist: its MMJ-Qellcodesammlung [...] with over 1600 Examples. heard simply to profane 6.6² How the manuals.
hereon I had in others Threads number of times hingewiesen. i think time, who here and in the RGH-Forum to some extent regularly mitliest, the becomes the already sometime find. since the install the Downloadzählers watts the manager over hundred time runtergeladen (thereby are not yet time diejenigen mitgezählt, which the program by Direktlink wander). up to this Time (means to the count the Downloads) I had already ca. 60 Mails with the angeforderten Installationspasswort sent. currently come in the incision per week further 5 Password-Anforderungen hinzu - zumehmend too of XProfanern, its names I weder here yet in the RGH-Forum before red having.
The Quellcodesammlung is solely a Auskopplung from the XProfan-manager for such people, The yet without DSL on the way are. The manager becomes of me in the rule weekly updated. The Codes in the manager are means always current as in the MMJ-Quellcodesammlung.
Currently contain my Arbeitsversion concise 1700 Source code, 56 DLLs, 22 Units, 46 Include-Files with ausführlichen Demos moreover and -zig (or quite hundreds?) small Helferleinchen To all possible Topics. short Einführungskurse for Beginner are ditto include (so z.B. too one already something älterer MMJ-basic course from of my feather - so How there described, lead I methodisch too since years vaguely my Beginner-Programmierkurse through).
into Quellcodesammlung the Managers (baby-Box) can too Own Codes take in, The then ditto from the Suchfunktionen found go. Own Codes go with UpDates not überschrieben, because I them another Extension verpaßt have (*.bbx).
it functions of course not everything with eachone (X)Profan-Version, still the überwiegende part verträgt itself too with Profan² 6.6.
Sometime must I as an afterthought inadvertently a integrally stupid Bug in whom manager installed having, whom yet hardly of/ one notice has: If one functions aufruft, The the into Projekteinstellungen eingebundene Runtime grab, then becomes the Runtime allegedly not found. I have no idea, How long it whom Error already gives. Diesen bow could I the day before yesterday eliminating. thanks on Stephan Lührsen for Info!
ex friday evening becomes the next Update to that Download bereitstehen.
The Downloads the named programs (and another slightly More) are on ours Vereins-Homepage to find [...] The very as Community on the Server of iF lying and of iF already jahrelang dankenswerter point gesponsert becomes.
Greeting Dietmar |
|
|
| Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V. [...] Windows 95 bis Windows 7 Profan² 6.6 bis XProfan X2 mit XPSE Das große XProfan-Lehrbuch: [...] | 04/08/08 ▲ |
|
|
|
|
| Ausgesperrt becomes under this address serverside nothing. |
|
|
| |
|
|
|
Thomas Zielinski | Stefan Löwen
sound well, but by me becomes only ne php File to that donwload offered if I on The quellcodesammlung click.
the is comic. by me working The Page correct(I Have se indeed written ... partly). here dr direct Downloadlink: (https://mmj.mxii.com/download/mmjsetup.zipper) Greeting Thomas |
|
|
| XProfan X4; Win10 x64 Der Kuchen ist eine lüge! | 04/09/08 ▲ |
|
|
|
|
| Verschoben of:
Mainpage » The XProfan-Community » Programming / generally / Beginner-Questions » I know not at all How/where I begin should !!!
to: Mainpage » The XProfan-Community » The Regulars Table of XProfan Community » I know not at all How/where I begin should !!! |
|
|
| |
|
|
|
Stefan Landsberg | Hi, I bins again. and because I again Ner Anfängerfrage anrücke wished I none new Thread open. I Have jetz started the introduction and the course in the Profan² 6.0 manuals To reading and be there on The Memory-Variable punched. i see but not so correctly. wozu The serves and what this Variable zuteilen can and what read can. can the Maybe someone short describe or NEN info give where the declared is?
would nice!
PS: and what very are arrays?? |
|
|
| |
|
|
|
Dietmar Horn | Hello Stefan,
I try time a simple Statement on the example the Speicherns and Auslesens of Strings:
with of/ one Memory-Variables can as Programmer a Speicherbereich (means a defined amount of Bytes) for its Program to that take off and Wiederauslesen of data reservieren.
first of all must the Speicherbereich one Bezeichner allocated go:
Declare area#
needs one z.B. 13 Bytes to that Save one Textes (or whatever), then results with the the instruction:
Dim area#, 13
we fill whom area z.B. with a Text:
String area#,0 = Test
that is, of nullten byte on becomes the reserved area with the characters T, e, s and t filled. they say moreover too instead: ... of Offset 0 on.
String area#,4 = Program
that is, of fourth byte on becomes the reserved area with the characters p, r, o, g, r, a, m and m filled. they say moreover too instead: ... of Offset 4 on.
the Reading the Bytes can How follows erfolgen: CompileMarkSeparationdeclare text1$,text2$
Declare Bereich#
Dim Bereich#,13
String Bereich#,0 = Test
String Bereich#,4 = programm
text1$ = String$(Bereich#,0)
Messagebox(text1$,I N F O,4160)
text2$ = String$(Bereich#,4)
Messagebox(text2$,I N F O,4160 n>
generally:
String$(V,A)
V: Memory-Variable A: LongInt - address
Result: String - Zeichenkette ex address A
These function determined a Zeichenkette ex address (Offset) A in the Memory-Variables V. the String go any characters ex A added To either one characters with the code 0 vorkommt or The maximum String-Length access is. is A outside the with DIM tuned Bereiches of V, results a Error Message.
At the latest on the End of program is the reserved Speicherbereich with the Bezeichner area# with
Dispose area#
of Programmer again freizugeben.
Why now this umständliche lane over a Memory-Variable, if this evident with normalen String-variables plenty plainer to go shining? integrally simply: the lying on it, that many API-functions or DLL-functions as Übergabe-Parameter Memory-Variables or Adressen of Speicherbereichen expect.
One simple example this (under Using the SKControl.dll): CompileMarkSeparationClrBlinkButton:
string area#,0 = ClrBlinkButton
tb2& = SKCtrl_CreateClrBlinkButton(%hwnd,string#,300,RGB(0,128,255),160,270,110,50,%hInstance)
Lauffähige Source-Beipiele this with everything thatswhy and Dran find You in the SKControl-pkg of Sebastian king [...]
further API-, (X)Profan- and other Grundkurse with -zig Helfern, Tools and around the 2000 demonstration-Source code find You z.B. in my XProfan-manager on [...] if it you solely around the demonstration-Source code goes, reicht too our MMJ-Quellcodesammlung from.
Manchen Anfängern wealthy however too The weiterführenden Notes in the XProfan-Help, after tappt im dunkeln whom Entry (see supra) first time gerafft having.
still altogether counts here: without Fleiß no Price!, that is: very plenty herumprobieren, References reading, on demonstration-Source code herumbasteln, etc.
Greeting Dietmar |
|
|
| Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V. [...] Windows 95 bis Windows 7 Profan² 6.6 bis XProfan X2 mit XPSE Das große XProfan-Lehrbuch: [...] | 04/20/08 ▲ |
|
|
|
|
Sebastian König | iF
Ausgesperrt becomes under this address serverside nothing.
had we the Topic not Schonmal? many Download-manager come with the PHP-Skript for Downloads not zurecht... |
|
|
| Windows XP, XProfan/Profan² 4.5 bis 11 Profan2Cpp-Homepage: [...] Alte Profan²-Seite: [...] | 04/20/08 ▲ |
|
|
|
|
| Jain, only moreover comes that here quite no PHP phoned becomes... |
|
|
| |
|
|
|
Stefan Landsberg | thanks Dietmar. super declared. Jetz Have ichs understood. and already Have I again something dazugelernt.
and with the Arrays i was a little bit To quick. This will too in the manuals declared. Have so did i understood. |
|
|
| |
|
|
|
Sebastian König | iF
Jain, only moreover comes that here quite no PHP phoned becomes...
Ähm, I thought now, it went around the Downloads here... and the left are still any from the shape .../download.php?id=irgendwas, or not? |
|
|
| Windows XP, XProfan/Profan² 4.5 bis 11 Profan2Cpp-Homepage: [...] Alte Profan²-Seite: [...] | 04/20/08 ▲ |
|
|
|
|
E.T. | ...whether it now around the Downloads went or not: Beautiful be- and written, Dietmar !!
Mario |
|
|
| 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... | 04/20/08 ▲ |
|
|
|
|
| Sebastian king
iFJain, only moreover comes that here quite no PHP phoned becomes... Ähm, I thought now, it went around the Downloads here... and the left are still any from the shape .../download.php?id=irgendwas, or not?
not vordergründig because the Download the failed was no PHP-Download separate a direct File. |
|
|
| |
|
|