Hallo zusammen,
ich benötige bitte eure Hilfe.
Ich möchte bei einem langen ListEx-Gadget auf das letzte Element scrollen und diese Zeile markieren. Ein einfaches ListEx::SetState(ListEx::CountItems()) reicht ja nicht.
Vielen Dank für eure Hilfe.
English translation by DeepL (Kiffi)
Hello ...
Search found 24 matches
- Tue Nov 12, 2024 5:24 pm
- Forum: Applications - Feedback and Discussion
- Topic: [Modules] ListEx (all OS / DPI)
- Replies: 485
- Views: 198681
- Wed Mar 27, 2024 11:34 am
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
Re: [6.10 beta 9] Assembler error
The line
is missing. The other lines are in purebasic.c
Code: Select all
typedef struct { char a[1278]; } ft_1278;
- Wed Mar 27, 2024 8:54 am
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
Re: [6.10 beta 9] Assembler error
Ok, this is
#pragma pack(1)
typedef struct s_strucsatzdbuv {
ft_8 f_ke;
ft_4 f_anuv;
ft_1278 f_uvtab;
} s_strucsatzdbuv;
#pragma pack()
Und die zugehörige Structure im Quellcode
Structure StrucSatzDBUV
KE.s{4}
ANUV.s{2}
UVTAB.s{639} ; 9*71
EndStructure
Protected DBUV.StrucSatzDBUV
#pragma pack(1)
typedef struct s_strucsatzdbuv {
ft_8 f_ke;
ft_4 f_anuv;
ft_1278 f_uvtab;
} s_strucsatzdbuv;
#pragma pack()
Und die zugehörige Structure im Quellcode
Structure StrucSatzDBUV
KE.s{4}
ANUV.s{2}
UVTAB.s{639} ; 9*71
EndStructure
Protected DBUV.StrucSatzDBUV
- Tue Mar 26, 2024 3:49 pm
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
Re: [6.10 beta 9] Assembler error
PS C:\Program Files (x86)\PureBasic\Compilers> .\pbcompilerc.exe v:\personal\personal.pb --commented
PureBasic 6.10 LTS beta 9 - C Backend (Windows - x86)
Compiling v:\personal\personal.pb
Loading external libraries...
Starting compilation...
Including source: Includes\pbPDFModule.pbi
Including ...
PureBasic 6.10 LTS beta 9 - C Backend (Windows - x86)
Compiling v:\personal\personal.pb
Loading external libraries...
Starting compilation...
Including source: Includes\pbPDFModule.pbi
Including ...
- Tue Mar 26, 2024 10:25 am
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
Re: [6.10 beta 9] Assembler error
This procedure is in the Modul PDFModule from Thorsten1867
Procedure FileHeaderTTF_(FileName.s,*Font.TTF_Header_Structure, UseFontName.i=#False)
Define.i i, utf, HeaderID, Result, Position, Length, Size, Number, LoadFontFile=#True
Define.i Skala, Encoding, Blocks, maxGID, NumGID, GID
Define.s ...
Procedure FileHeaderTTF_(FileName.s,*Font.TTF_Header_Structure, UseFontName.i=#False)
Define.i i, utf, HeaderID, Result, Position, Length, Size, Number, LoadFontFile=#True
Define.i Skala, Encoding, Blocks, maxGID, NumGID, GID
Define.s ...
- Mon Mar 25, 2024 1:22 pm
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
Re: [6.10 beta 9] Assembler error
I think it is in this procedure
Procedure.i GetRessourceAdress(RN.s)
Protected.i GRU
Protected *Puffer
If OpenPack(#filRessource,"Personal.res",#PB_PackerPlugin_Zip)
If ExaminePack(#filRessource)
While NextPackEntry(#filRessource)
If PackEntryName(#filRessource)=RN
GRU=PackEntrySize ...
Procedure.i GetRessourceAdress(RN.s)
Protected.i GRU
Protected *Puffer
If OpenPack(#filRessource,"Personal.res",#PB_PackerPlugin_Zip)
If ExaminePack(#filRessource)
While NextPackEntry(#filRessource)
If PackEntryName(#filRessource)=RN
GRU=PackEntrySize ...
- Mon Mar 25, 2024 12:49 pm
- Forum: Coding Questions
- Topic: [6.10 beta 9] Assembler error
- Replies: 14
- Views: 6355
[6.10 beta 9] Assembler error
Hi,
I tried to compile my project with C-Backend for the first time. There is the following error message:
error: unknown type name 'ft_1278'
66709 | ft_1278 f_uvtab;
| ^~~~~~~
purebasic.c: In function 'pdfXf_fileheaderttf_':
purebasic.c: 179597: 59: warning: cast to pointer from integer
of ...
I tried to compile my project with C-Backend for the first time. There is the following error message:
error: unknown type name 'ft_1278'
66709 | ft_1278 f_uvtab;
| ^~~~~~~
purebasic.c: In function 'pdfXf_fileheaderttf_':
purebasic.c: 179597: 59: warning: cast to pointer from integer
of ...
- Thu Mar 14, 2024 3:05 pm
- Forum: Coding Questions
- Topic: [PB 6.10 beta 8] Error in pdfX_fileheaderttf
- Replies: 1
- Views: 314
[PB 6.10 beta 8] Error in pdfX_fileheaderttf
Hello,
I tried to compile my project with C-backend for the first time.
I get the following error message:
error: unknown type name 'ft_1278' 66802 | ft_1278 f_uvtab;
| ^~~~~~~
purebasic.c: In function 'pdfXf_fileheaderttf_':
purebasic.c: 179889:59: warning: cast to pointer from integer
of ...
I tried to compile my project with C-backend for the first time.
I get the following error message:
error: unknown type name 'ft_1278' 66802 | ft_1278 f_uvtab;
| ^~~~~~~
purebasic.c: In function 'pdfXf_fileheaderttf_':
purebasic.c: 179889:59: warning: cast to pointer from integer
of ...
- Fri Aug 05, 2016 2:56 pm
- Forum: Tricks 'n' Tips
- Topic: Editmask module with customizable symbols
- Replies: 9
- Views: 4189
Re: Editmask module with customizable symbols
Very nice code. Thanks for your work.
It would be cool if during the input "fixed" signs comes automaticly.
For example: If the mask is "##::##" and the first 2 digits are inputed, then "::" comes automaticly.
Is this possible?
It would be cool if during the input "fixed" signs comes automaticly.
For example: If the mask is "##::##" and the first 2 digits are inputed, then "::" comes automaticly.
Is this possible?
- Mon Sep 07, 2015 10:16 am
- Forum: Announcement
- Topic: COMatePLUS version 1.2
- Replies: 339
- Views: 228993
Re: COMatePLUS version 1.2
Thank you for your work, Thomas!
- Mon Jun 24, 2013 10:41 am
- Forum: Coding Questions
- Topic: [5.20b] Endless Event-Loop
- Replies: 8
- Views: 1413
Re: [5.20b] Endless Event-Loop
Ahh ok.
But I have to switch Debug "off" because it generates an Assembler-Error.
Thx
But I have to switch Debug "off" because it generates an Assembler-Error.
Thx
- Mon Jun 24, 2013 10:20 am
- Forum: Coding Questions
- Topic: [5.20b] Endless Event-Loop
- Replies: 8
- Views: 1413
Re: [5.20b] Endless Event-Loop
Please can anybody correct my code, so that it's work.
Thanks a lot.
Thanks a lot.
- Mon Jun 24, 2013 9:44 am
- Forum: Coding Questions
- Topic: [5.20b] Endless Event-Loop
- Replies: 8
- Views: 1413
Re: [5.20b] Endless Event-Loop
Hi Demivec,
I tried your suggestion - but it helps nothing.
In my 5.11 installation it works without any problems. Curious.
ThoPie
I tried your suggestion - but it helps nothing.
In my 5.11 installation it works without any problems. Curious.
ThoPie
- Mon Jun 24, 2013 8:45 am
- Forum: Coding Questions
- Topic: [5.20b] Endless Event-Loop
- Replies: 8
- Views: 1413
[5.20b] Endless Event-Loop
On 5.11 my code works, on 5.20b2 I got an Endless Event-Loop. Whats my mistake?
Enumeration
#wndWindow
#strEingabe
#btnSuche
#btnAbbrechen
#txtTreffer
EndEnumeration
Procedure Test()
Protected.i ENDE,YPOS,ANZ
Protected.s ST
; ENDE - Schleifenabschluss
; YPOS - Y-Position
; ANZ - Anzahl ...
Enumeration
#wndWindow
#strEingabe
#btnSuche
#btnAbbrechen
#txtTreffer
EndEnumeration
Procedure Test()
Protected.i ENDE,YPOS,ANZ
Protected.s ST
; ENDE - Schleifenabschluss
; YPOS - Y-Position
; ANZ - Anzahl ...
- Fri Dec 21, 2012 7:18 pm
- Forum: Coding Questions
- Topic: [PB 5.10 B1] UnpackMemory
- Replies: 5
- Views: 2494
[PB 5.10 B1] UnpackMemory
Hi,
first a big "Thank You" for PureBasic 5.10 beta 1.
I use UnpackMemory() in my project. PB 5.10 b1 says "UnpackMemory is not a function, array, list, map or macro!".
Is this a bug or is something changed?
Thanks.
ThoPie
first a big "Thank You" for PureBasic 5.10 beta 1.
I use UnpackMemory() in my project. PB 5.10 b1 says "UnpackMemory is not a function, array, list, map or macro!".
Is this a bug or is something changed?
Thanks.
ThoPie