It is currently Sun May 19, 2013 2:45 pm

All times are UTC + 1 hour




Post new topic Reply to topic  [ 1514 posts ]  Go to page Previous  1 ... 93, 94, 95, 96, 97, 98, 99 ... 101  Next
Author Message
 Post subject: Re: jaPBe 3.11.8 [IDE for PB 4.xx]
PostPosted: Mon Aug 22, 2011 8:01 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
ozzie wrote:
Whenever I install a new version of jaPBe I lose my indentation preferences and have to restore Syntax\jaPBe_Indentation.pref from my backup drive. Can you change the instaler so that the file is only created if needed, thereby preserving any existing changes to the indentation preferences?
Unfortunately, it isn't an installer, but an ordinary 7-ZIP SFX archive.
This means you can open it (as an archive using WinRAR or 7-ZIP for example) and extract the files you need.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.10 [IDE for PB 4.xx]
PostPosted: Mon Nov 21, 2011 5:28 am 
Offline
Enthusiast
Enthusiast

Joined: Sun Apr 06, 2008 12:54 pm
Posts: 217
Location: Brisbane, Qld, Australia
I'm getting a crash in jaPBe on clicking the 'select source' button. I've used this button successfully a few times recently but now it crashes every time. The message is:

Image

_________________
Mike


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.10 [IDE for PB 4.xx]
PostPosted: Mon Nov 21, 2011 10:29 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
ozzie wrote:
I'm getting a crash in jaPBe on clicking the 'select source' button. I've used this button successfully a few times recently but now it crashes every time...
Hmm...
At line 28391, there is a single 'CreatePopupMenu()' call.
According to the PB3.94 manual, it should return 0 if failed, not crash... and unfortunately, I cannot reproduce this.
Try to erase jaPBe.pref ?

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.10 [IDE for PB 4.xx]
PostPosted: Mon Nov 21, 2011 11:18 pm 
Offline
Enthusiast
Enthusiast

Joined: Sun Apr 06, 2008 12:54 pm
Posts: 217
Location: Brisbane, Qld, Australia
Thanks for your reply. Erasing jaPBe.pref didn't help. After re-starting jaPBe I then just reset the 'Source Directory' preference and tried various clean closes and re-opens but the 'Select Source' button would always crash with that same message. Eventually I re-installed jaPBe and it's now working OK!

_________________
Mike


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.10 [IDE for PB 4.xx]
PostPosted: Tue Nov 22, 2011 7:09 am 
Offline
Enthusiast
Enthusiast

Joined: Sun Apr 06, 2008 12:54 pm
Posts: 217
Location: Brisbane, Qld, Australia
Crashing again. I'll avoid using that button.

_________________
Mike


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Fri Dec 02, 2011 1:26 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Update

Changes :
- fixed issue with bookmarks and codepage <> 0 (French accents etc...)

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Sat Dec 17, 2011 3:36 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Jul 09, 2003 11:33 am
Posts: 283
Location: France
Hi,

A problem with "Structure" and "List"

Example

Code:
Structure PageObjetInfo
   Nom.s
   Objet_Rack.l
   Objet_Reseau.l
   Architecture_Index.l
   ObjetGlobal_Index.l
   L5X_Index.l
   XML_Index.l
   XML_Objet_Index.l
   x.l
   y.l
   Detail.s
EndStructure
Structure PageInfo
   Nom.s
   Parent.s
   Numero.l
   Suivant.s
   Precedent.s
   Retour.s
   x.l
   y.l
   y_Bas_Rack.l
   y_Haut_reseau.l
   List Objet.PageObjetInfo()
EndStructure
Global NewList Page.PageInfo()


And now i write "Page()\"
I get autocompletion
And in auotcompletion list, i don't have "Objet(" but "ListObjet"


Another bug, this one crash jaPBe so it's nervous me a lot because i lost my work a lot of time

Copy this code
Code:
Structure GlobalObject_Parameter_Info
   Numero.s
   Valeur.l
   Description.s
EndStructure
Structure HMI_XML_Object_Info
   Nom.s
   x.l
   y.l
   Largeur.l
   Hauteur.l
   x_ST.l
   y_ST.l
   Largeur_ST.l
   Hauteur_ST.l
   List Parametre.GlobalObject_Parameter_Info()
EndStructure
Structure HMI_Screen_Objet_Info
   Suivant.HMI_XML_Object_Info
   Precedent.HMI_XML_Object_Info
   Retour.HMI_XML_Object_Info
   Detail.HMI_XML_Object_Info
EndStructure
Structure HMI_Screen_Info
   Fichier.s
   Zone.rect
   Objet.HMI_Screen_Objet_Info
EndStructure
Global HMI_Ecran.HMI_Screen_Info



And know, try to write
HMI_Ecran\Objet\Suivant\
by using autocompletion

when you write \ after "suivant", crash

Thanks for correction

_________________
LSI


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Mon Dec 19, 2011 1:43 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Le Soldat Inconnu wrote:
...
Thanks for correction
Should be fixed in build 862.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Tue Dec 20, 2011 10:29 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Jul 09, 2003 11:33 am
Posts: 283
Location: France
Ok for second bug, thank you very much, merci beaucoup, dziękuje bardzo

Stay first about "List" in structure 8) Pleaaaaase, Allez, steplait :mrgreen:

_________________
LSI


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Tue Dec 20, 2011 11:21 pm 
Online
Addict
Addict
User avatar

Joined: Mon Jul 25, 2005 3:51 pm
Posts: 2393
Location: Utah, USA
Le Soldat Inconnu wrote:
Stay first about "List" in structure 8) Pleaaaaase, Allez, steplait :mrgreen:

The new build corrected the autocomplete problem of "List" and "Array" in structure for me.

_________________
Image


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Wed Dec 21, 2011 10:04 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Demivec wrote:
Le Soldat Inconnu wrote:
Stay first about "List" in structure 8) Pleaaaaase, Allez, steplait :mrgreen:

The new build corrected the autocomplete problem of "List" and "Array" in structure for me.
Yes, it should be fixed.
Works here using LSI's example.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Sat Dec 24, 2011 11:49 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Jul 09, 2003 11:33 am
Posts: 283
Location: France
Why for me, it doesn't work ?

Look
Image

i just copy new exe, may be it's cause the problem ?

_________________
LSI


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Sat Dec 24, 2011 12:53 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Le Soldat Inconnu wrote:
Why for me, it doesn't work ?
i just copy new exe, may be it's cause the problem ?
I tried with different settings, I can't reproduce the issue with build 862.
Could you try with a 'clean' jaPBe installation ?

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Sat Dec 24, 2011 6:28 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Jul 09, 2003 11:33 am
Posts: 283
Location: France
Sorry, in french for Gnozal to write more fast and be more comprehensible.
To explain fast, i delete japbe parameter, select my options and try again. Same problem.
----------------------

Donc,

J'ai télécharger de nouveau jaPBe histoire d'être certain d'avoir la dernière version.
j'ai supprimé le fichier de Pref de jaPbe, j'ai recoché mes options et j'ai toujours le même soucis.
J'ai supprimé le contenu du dossier Syntax : Idem

Le problème, c'est que avec les options par défaut, je n'ai pas d'autocompletion directement proposé après avoir tapé le \

Si tu veux, je te passe mes fichiers de paramètres pour essayer, ce sera peut-être plus simple, donne moi un mail en MP.

Si j'ai le temps, j'essaierais de regarder les sources pour trouver. Mais je pense que tu iras plus vite que moi :D

++ Et bonnes fêtes

_________________
LSI


Top
 Profile  
 
 Post subject: Re: jaPBe 3.11.12 [IDE for PB 4.xx]
PostPosted: Sun Dec 25, 2011 3:50 pm 
Offline
User
User

Joined: Mon Aug 01, 2011 6:16 pm
Posts: 37
hi, gnozal...

I found a bug in jaPBe 3.11.12 build 862.

In preferences the option associate PB... with jaPBe don't work.

show the message it's associate but don't associates.

I use windows 7 x64 pro


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1514 posts ]  Go to page Previous  1 ... 93, 94, 95, 96, 97, 98, 99 ... 101  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye