Many many commands won't work...

Archives Forums/BlitzPlus Bug Reports/Many many commands won't work...

Stamm(Posted 2010) [#1]
Here is a list of command that don't work in my ide:
-CreateProcess()
-Evereything about html views except the create, go, back and forward functions
-HotKeyEvent
and some others i don't remember...
i am using the latest version of b+ (bought it just a few weeks ago... 19th april 2010)
could anyone in the research team please fix that?


Mahan(Posted 2010) [#2]
On my computer (Win 7 professional) CreateProcess certainly seems to work fine for me:

I modified the example in the helpfile:
process$ = "ipconfig" 
s = CreateProcess (process) 

While Not Eof(s)
	DebugLog ReadLine(s) 
	If MilliSecs() - t >= 1000 Then 
		DebugLog "process " + process + " running" 
		t = MilliSecs()
	EndIf 
	Delay(1) 
Wend 

DebugLog "process " + process + " terminated" 

Stop
End  



Try this example in debugmode and see if you get some output in the debuglog. On my computer it prints the output of the ipconfig command to the errorlog in debugmode.

Also regarding the other issues, it would be great if you could:
1) Post some source-code that generates the errors.
2) Describe what you expected to happen.
3. Describe what actually happened.

That will make it much easier to try to classify possible bugs in the language.


blackgecko(Posted 2010) [#3]
"i am using the latest version of b+ (bought it just a few weeks ago... 19th april 2010)"

B+ is selled as Version 1.11, the current version is 1.47

=> Go here and make an update.


Stamm(Posted 2010) [#4]
thanks for link had trouble finding it...


Stamm(Posted 2010) [#5]
just to mahan who asked it (i know its too late..):
1) the errors were generated with any sourcecode using these commands
2) i just expected the commands to work as described in the helpfile
2) it gave me an error message "Function 'blahblah' not found"