Je poste dans débutant car c'est un problème de configuration, mais je ne vois pas lequel.
J'ai un petit problème avec le fonctionnement de l'interface de l'IDE. Ça n'est pas grand-chose mais ça me prends la tête.
J'ai ce formulaire Rot13Gui.pbf:
Code : Tout sélectionner
;
; This code is automatically generated by the FormDesigner.
; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled.
; Event procedures needs to be put in another source file.
;
Enumeration FormWindow
#Window_0
EndEnumeration
Enumeration FormGadget
#Editor_0
#Editor_1
#Combo_0
#Button_0
#Button_1
EndEnumeration
Procedure OpenWindow_0(x = 0, y = 0, width = 910, height = 600)
OpenWindow(#Window_0, x, y, width, height, "", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
EditorGadget(#Editor_0, 10, 10, 890, 250)
EditorGadget(#Editor_1, 10, 320, 890, 270)
ComboBoxGadget(#Combo_0, 330, 270, 150, 40)
For a = 1 To 25
AddGadgetItem(#Combo_0, -1, "Rot " + Str(a))
Next
ButtonGadget(#Button_0, 510, 270, 140, 40, "Code")
ButtonGadget(#Button_1, 160, 270, 140, 40, "Decode")
EndProcedure
Les fichiers suivants ont été modifiés lors de la fermeture du projet:
/home/jp/Bureau/Rot13/Rot13.pbp
et le fichier devient:
Code : Tout sélectionner
; This code is automatically generated by the FormDesigner.
; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled.
; Event procedures needs to be put in another source file.
;
Enumeration FormWindow
#Window_0
EndEnumeration
Enumeration FormGadget
#Editor_0
#Editor_1
#Combo_0
#Button_0
#Button_1
EndEnumeration
Procedure OpenWindow_0(x = 0, y = 0, width = 910, height = 600)
OpenWindow(#Window_0, x, y, width, height, "", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
EditorGadget(#Editor_0, 10, 10, 890, 250)
EditorGadget(#Editor_1, 10, 320, 890, 270)
ComboBoxGadget(#Combo_0, 330, 270, 150, 40)
AddGadgetItem(#Combo_0, -1, "Rot " + Str(a")
ButtonGadget(#Button_0, 510, 270, 140, 40, "Code")
ButtonGadget(#Button_1, 160, 270, 140, 40, "Decode")
EndProcedure