Hallo PB-Gemeinde...
Ich habe ein wahrscheinlich relativ einfach zu lösendes Problem, allerdings konnte ich bis jetzt die Lösung noch
nicht finden. Ich arbeitete bis jetzt immer mit PB4.2 und jaPBe 3.11.8 unter Windows XP, SP3. Da ich mich nun
sehr an jaPBe gewöhnt habe. würde ich diese ...
Die Suche ergab 219 Treffer
- 02.01.2012 13:03
- Forum: Allgemein
- Thema: PureBasic V4.50 (x64), jaPBe unter Win7 (x64)
- Antworten: 12
- Zugriffe: 3048
- 13.09.2011 09:28
- Forum: Allgemein
- Thema: PureZip -> Programm hängt sich komplett auf ?!?
- Antworten: 4
- Zugriffe: 657
Re: PureZip -> Programm hängt sich komplett auf ?!?
Seit 2 Tagen bin ich auf der Suche nach einem mysteriösen Fehler, der mein Programm sich aufhängen lässt und kann inzwischen wohl nicht mehr klar denken.
...
Inzwischen habe ich folgende Zeile als Übeltäter ausgemacht:
PureZIP_AddFile(ZipDatei$, TempFile$, #PureZIP_DontStorePath) Hi Thorsten1867 ...
...
Inzwischen habe ich folgende Zeile als Übeltäter ausgemacht:
PureZIP_AddFile(ZipDatei$, TempFile$, #PureZIP_DontStorePath) Hi Thorsten1867 ...
- 22.03.2011 15:34
- Forum: Anfänger
- Thema: Splittergadget Layout Probleme
- Antworten: 2
- Zugriffe: 666
Re: Splittergadget Layout Probleme
Hello, I am not sure that it's exactly what you want :
Enumeration
#Window_0
EndEnumeration
Enumeration
#Container_Oben_1
#Container_Unten_1
#Container_Mitte
#Container_Oben_2
#Container_Unten_2
#Splitter_Links
#Splitter_Rechts
#Splitter_LM
#Splitter_Main
EndEnumeration
Procedure ...
Enumeration
#Window_0
EndEnumeration
Enumeration
#Container_Oben_1
#Container_Unten_1
#Container_Mitte
#Container_Oben_2
#Container_Unten_2
#Splitter_Links
#Splitter_Rechts
#Splitter_LM
#Splitter_Main
EndEnumeration
Procedure ...
- 11.12.2010 13:02
- Forum: Ankündigungen
- Thema: PBDev - PureBasic Developer - freeware version
- Antworten: 6
- Zugriffe: 6471
Re: PBDev - PureBasic Developer - freeware version
Hier : http://www.hellobasic.com/download.aspxPaulo0708 hat geschrieben:Kann mir jemand sagen, wo ich die Freeware Version herbekommen kann?
- 09.09.2010 12:21
- Forum: Bugs
- Thema: [PB 4.51 FINAL] Gridlines Bug vom ListIconGadget
- Antworten: 17
- Zugriffe: 5139
Re: [PB 4.51 FINAL] Gridlines Bug vom ListIconGadget
Auf :freak: s-Geheis:
Vielleicht unwesentlich, mich störts.
Die Gridlines vom ListIconGadget sind mal wieder erst im gefüllten Zustand komplett. :|
http://www.abload.de/img/grid11vaa.png http://www.abload.de/img/grid268t3.png
WinXP SP2 - PB 4.50 Final und PB 4.51 RC What about this little ...
Vielleicht unwesentlich, mich störts.
Die Gridlines vom ListIconGadget sind mal wieder erst im gefüllten Zustand komplett. :|
http://www.abload.de/img/grid11vaa.png http://www.abload.de/img/grid268t3.png
WinXP SP2 - PB 4.50 Final und PB 4.51 RC What about this little ...
- 07.09.2010 08:54
- Forum: Allgemein
- Thema: Alternative zu Tailbite?
- Antworten: 12
- Zugriffe: 2616
Re: Alternative zu Tailbite?
You may try Moebius.
It's a tool like Tailbite (I haven't tested it).
It's a tool like Tailbite (I haven't tested it).
- 12.08.2010 11:49
- Forum: Anfänger
- Thema: Umstieg JaPBe auf PB IDE Problem
- Antworten: 7
- Zugriffe: 900
Re: Umstieg JaPBe auf PB IDE Problem
The question is, what do japbe with missing but required fields. It simply provides an empty one.
Example (in RC) :
1. If ProductVersion is defined ("1.0.0.0") : VALUE "FileVersion", "1.0.0.0"
2. If ProductVersion is undefined ("") : VALUE "ProductVersion", ""
Example (in RC) :
1. If ProductVersion is defined ("1.0.0.0") : VALUE "FileVersion", "1.0.0.0"
2. If ProductVersion is undefined ("") : VALUE "ProductVersion", ""
- 11.08.2010 09:24
- Forum: Anfänger
- Thema: Umstieg JaPBe auf PB IDE Problem
- Antworten: 7
- Zugriffe: 900
Re: Umstieg JaPBe auf PB IDE Problem
Wäre jetzt natürlich hilfreich, wenn Du, z.B. mit dem ResHacker, das Script anguckst, ob
jaPBe das selber ergänzt usw.?
Anders kann ich mir das ansonsten auch nicht erklären. For information, jaPBe creates a resource script (RC) which is compiled to resource (RES) using PORC.exe (code in 'Compiler ...
jaPBe das selber ergänzt usw.?
Anders kann ich mir das ansonsten auch nicht erklären. For information, jaPBe creates a resource script (RC) which is compiled to resource (RES) using PORC.exe (code in 'Compiler ...
- 17.04.2010 09:39
- Forum: Anfänger
- Thema: Callback-Problem mit Version 4.50
- Antworten: 4
- Zugriffe: 1445
Re: Callback-Problem mit Version 4.50
Something like this should work : Procedure ComboProc(hWnd,uMsg,wParam,lParam)
Shared *OldWndProc
Select uMsg
Case #WM_COMMAND
If (wParam>>16)=#CBN_SETFOCUS
Debug "Shortcuts_Entfernen() "
ElseIf (wParam>>16)=#CBN_KILLFOCUS
Debug "Shortcuts_Zuordnen() "
EndIf
EndSelect
ProcedureReturn ...
Shared *OldWndProc
Select uMsg
Case #WM_COMMAND
If (wParam>>16)=#CBN_SETFOCUS
Debug "Shortcuts_Entfernen() "
ElseIf (wParam>>16)=#CBN_KILLFOCUS
Debug "Shortcuts_Zuordnen() "
EndIf
EndSelect
ProcedureReturn ...
- 12.04.2010 11:56
- Forum: Anfänger
- Thema: Callback-Problem mit Version 4.50
- Antworten: 4
- Zugriffe: 1445
Re: Callback-Problem mit Version 4.50
In PB4.50, the Windows ComboBoxGadget is a now a ComboBoxEx control ; this may explain the issue : http://www.purebasic.fr/english/viewtop ... 12&t=41683