Re: jaPBe 3.10.9 [IDE for PB 4.xx]
Posted: Thu Mar 31, 2011 12:07 pm
Should be fixed in build 850 (uploaded).HeX0R wrote:I guess i found a bug (and remember something similar within the IDE, but can't find the report anymore...)
http://www.purebasic.com
https://www.purebasic.fr/english/
Should be fixed in build 850 (uploaded).HeX0R wrote:I guess i found a bug (and remember something similar within the IDE, but can't find the report anymore...)
Better, but still not perfectgnozal wrote:Should be fixed in build 850 (uploaded).
Should be fixed in build 851 (uploaded) ?HeX0R wrote:Better, but still not perfect
If i start JaPBe with no open Files the Shortcut won't work.
Code: Select all
; http://msdn.microsoft.com/en-us/library/microsoft.directx_sdk.idirectsoundbuffer8.idirectsoundbuffer8.lock(v=VS.85).aspx
I don't think it's a jaPBe issue especially if it also happens with the PB editor.Le Soldat Inconnu wrote:Hi Gnozal, i have this bug
i'm not sure it's come from jaPBe, i thinks it's debugger problem.
look this thread :
http://www.purebasic.fr/english/viewtop ... 41#p351541
I have the same problem with PB editor. So it's PB debugger error or it's jaPBe and PB editor error.
Hi Richard,RichardL wrote:jaPBe underlines everything up to the closing bracket ...... VS.85) but not the bracket or the ".aspx"Code: Select all
; http://msdn.microsoft.com/en-us/library/microsoft.directx_sdk.idirectsoundbuffer8.idirectsoundbuffer8.lock(v=VS.85).aspx
Code: Select all
http://msdn.microsoft.com/en-us/library/microsoft.directx_sdk.idirectsoundbuffer8.idirectsoundbuffer8.lock%28=VS.85%29.aspx
Hi Richard,RichardL wrote:I copy the link directly from Explorer because its quick and easy and am usually in too much of a hurry to go editing control codes into them... I will have to live with it and MS will have to put up with me forgetting to add a closing bracket every now and again! (Unless you are thinking the same as me...)
Code: Select all
; InsertURL Plugin
;-Global
Global jaPBe_Handle
Global jaPBe_Version
#timeout=5000
;-Window-Message
#mywm_Plugin_Cancel = #WM_USER+18
;-Window-CopyData
#WMCD_InsertText = 2
Procedure SendDataS(ziel,Type,Message$)
cd.COPYDATASTRUCT
cd\dwData=Type
cd\cbData=Len(Message$)+1
cd\lpData=@Message$
ProcedureReturn SendMessage_(ziel,#WM_COPYDATA,WindowID(1),cd)
EndProcedure
Procedure SendData(ziel,Type,adr,len)
cd.COPYDATASTRUCT
cd\dwData=Type
cd\cbData=len + 1
cd\lpData=adr
ProcedureReturn SendMessage_(ziel,#WM_COPYDATA,WindowID(1),cd)
EndProcedure
;-Send
Procedure jaPBe_InsertTextS(Text$) ; Insert the Text in the current Source Code
SendDataS(jaPBe_Handle,#WMCD_InsertText,Text$)
EndProcedure
;
If OpenWindow(1,0,200,200,200,"jaPBe-Plugin", #PB_Window_Invisible)
a$=ProgramParameter()
If a$="jaPBe"
jaPBe_Handle=Val(ProgramParameter())
jaPBe_Version$=ProgramParameter()
;
;- plugin code start ---------------------
;
Line$ = InputRequester("Insert URL", "", "")
Line$ = ReplaceString(Line$, "(", "%28")
Line$ = ReplaceString(Line$, ")", "%29")
jaPBe_InsertTextS(Line$)
SetFocus_(jaPBe_Handle)
SetForegroundWindow_(jaPBe_Handle)
;
;- plugin code end ---------------------
;
PostMessage_(jaPBe_Handle,#mywm_Plugin_Cancel,0,WindowID(1))
Else
MessageRequester("jaPBe Plugin","This is a jaPBe-Plugin"+Chr(10)+"You can't run it without jaPBe",0)
EndIf
CloseWindow(1)
Else
MessageRequester("jaPBe Plugin","Can't open a window!",0)
EndIf
End
Iirc, jaPBe only lists "msdn.microsoft.com" in the available SDKs if an Internet connection is detected.Le Soldat Inconnu wrote:Why jaPBe unchecks "use msdn" options ?
I need frequently to check again this option.
Should be fixed in build 853 : once MSDN is selected, it doesn't deselect if no Internet connection is available.Le Soldat Inconnu wrote:and if i don't have internet connection, it's unchecks automatically ?
So, when i use jaPBe without connection because i not at home, it uncheks my options ?
------------------------------------------------
Sorry, french mode, i don't know how to said in english. But good point for me Gnozal is french![]()
En fait, au boulot j'ai un PC portable que je trimbale donc qui n'est pas toujours connecté au net. Alors ça m'agace d'avoir cette option qui se décoche toute seulesi tu vois ce que je veux dire.