Search found 25 matches

by Micoute
Sat Feb 08, 2025 8:57 am
Forum: General Discussion
Topic: compiler too slow
Replies: 6
Views: 1901

Re: compiler too slow

It was indeed a few viruses.
by Micoute
Fri Feb 07, 2025 6:01 pm
Forum: General Discussion
Topic: compiler too slow
Replies: 6
Views: 1901

Re: compiler too slow

I don't understand, it used to work fine, but now it's not working with all versions.
by Micoute
Fri Feb 07, 2025 3:26 pm
Forum: General Discussion
Topic: compiler too slow
Replies: 6
Views: 1901

compiler too slow

Why does PureBasic take so long to say ‘Welcome aboard’ and when you run a program, the message is ‘The compiler is not yet ready... Please try again’?

en français

Pourquoi PureBasic met-il autant de temps à dire "Bienvenue à bord" et quand on lance un programme, le message est "Le compilateur n ...
by Micoute
Mon Sep 18, 2023 12:01 pm
Forum: Coding Questions
Topic: Why can't I start Purebasic with RunProgram()?
Replies: 8
Views: 1045

Re: Why can't I start Purebasic with RunProgram()?

Code sent to first post
by Micoute
Mon Sep 18, 2023 8:22 am
Forum: Coding Questions
Topic: Why can't I start Purebasic with RunProgram()?
Replies: 8
Views: 1045

Why can't I start Purebasic with RunProgram()?

I used to be able to launch Purebasic by clicking on a button, but since version 6.03 this no longer works.
What should I do to get it working again?


;Mes Applis Btn RBUTTON
;{ Fichiers inclus
XIncludeFile "D:\Programmation\Prg Perso\B\Boutons\RButton\RButton.pb"
XIncludeFile #PB_Compiler ...
by Micoute
Tue Aug 16, 2022 8:30 am
Forum: Coding Questions
Topic: Problem with Purebasic v6.00
Replies: 45
Views: 5287

Re: Problem with Purebasic v6.00

it works very well with DirectX 9
by Micoute
Thu Oct 22, 2020 8:26 am
Forum: The PureBasic Editor
Topic: Change blue tabs when adding files to a project?
Replies: 4
Views: 6701

Re: Change blue tabs when adding files to a project?

Enumeration
#uxTheme
#MainForm
#Panel
#Wrapper1
#Wrapper2
#Option
#Check
#AnotherCheck
#Combo
EndEnumeration

Global WindowColor.i, TabPanelBackGroundColor, TabPanelColor.i

WindowColor=RGB(215, 251, 190)
TabPanelBackGroundColor = CreateSolidBrush_($B2FCFD)
TabPanelColor = RGB(0, 0, 0 ...
by Micoute
Sat Oct 19, 2019 12:48 pm
Forum: Coding Questions
Topic: Window with no titlebar but resizable
Replies: 9
Views: 3227

Re: Window with no titlebar but resizable

EnableExplicit

Enumeration
#Fenetre_principale
#Canvas
#Btn_Quitter
EndEnumeration

Global Btn_SourisPresse, DecalageX, DecalageY, Quitter

OpenWindow(#Fenetre_principale, 100, 100, 300, 90, "", #PB_Window_BorderLess | #PB_Window_ScreenCentered)
CanvasGadget(#Canvas, 0, 0, 300, 90, #PB_Canvas ...
by Micoute
Fri Oct 04, 2019 1:21 pm
Forum: Announcement
Topic: New PureBasic website is up
Replies: 64
Views: 31683

Re: New PureBasic website is up

Is it planned to put in French?
by Micoute
Sat Jul 20, 2019 1:14 pm
Forum: Tricks 'n' Tips
Topic: Mini Thread Control
Replies: 16
Views: 9532

Re: Mini Thread Control

Thank you for sharing.
by Micoute
Mon Apr 29, 2019 7:50 am
Forum: Coding Questions
Topic: Listview problem
Replies: 4
Views: 1134

Re: Listview problem

Merci pour le partage
by Micoute
Tue Apr 23, 2019 8:30 am
Forum: Feature Requests and Wishlists
Topic: Enumeration Multi constant definition in the same enum level
Replies: 7
Views: 2559

Re: Enumeration Multi constant definition in the same enum l

Enumeration Windows
#Window
EndEnumeration
Enumeration Gadgets
#ImageGadget
#TextStatus
#TextViewer
EndEnumeration
Enumeration Images
#Image
EndEnumeration

Debug #ImageGadget
Debug #Window
Debug #Image
Debug #TextStatus
Debug #TextViewer ...
by Micoute
Tue Apr 02, 2019 12:50 pm
Forum: Announcement
Topic: Happy Birthday, Fred!
Replies: 18
Views: 9041

Re: Happy Birthday, Fred!

Fred, je te souhaite un merveilleux anniversaire célébré dans l'allégresse, entouré de tous ceux qui te sont chers.
by Micoute
Thu Jun 28, 2018 6:54 am
Forum: Windows
Topic: Check if a date value was in DST or not?
Replies: 3
Views: 3250

Re: Check if a date value was in DST or not?

Good morning,
The code is written in French, but I think you'll understand the basics.
Macro Bissextile(Annee)
Bool(((Not Year(Annee)%4)And Year(Annee)%100)Or(Not Year(Annee)%400))
EndMacro
Procedure.b JoursDansMois(Annee=-1,Mois=-1)
;Retourne le nombre de jours dans le mois donné (28..31)
;Si l ...
by Micoute
Sun May 20, 2018 6:12 am
Forum: Game Programming
Topic: Transparent Layers
Replies: 8
Views: 3762

Re: Transparent Layers

Thank you for sharing