Search found 7 matches

by Ninja
Mon Mar 27, 2006 7:51 pm
Forum: Feature Requests and Wishlists
Topic: Sendnetworkfile, Receivenetworkfile
Replies: 6
Views: 1367

Sendnetworkfile, Receivenetworkfile

How about adding an optional prameter, with a pointer to a function that is called by sendnetworkfile and receivenetworkfile with 1 parameter, that contains the current download state? Would help much, when sending big files.
by Ninja
Sun Mar 12, 2006 10:54 am
Forum: Coding Questions
Topic: PB4 Beta 6
Replies: 6
Views: 1092

Thank you!
by Ninja
Sun Mar 12, 2006 9:04 am
Forum: Coding Questions
Topic: PB4 Beta 6
Replies: 6
Views: 1092

uhm i just saw it doesnt work correct..

i changed to

Procedure.s GetSpecialfolder(CSIDL)


r = SHGetSpecialFolderLocation_(1, CSIDL, @IDL.ITEMIDLIST)
If r = #NOERROR
Path$ = Space(512)
r = SHGetPathFromIDList_(@*IDL, Path$)
folder$ = Trim(Path$)
Else
folder$=""
EndIf ...
by Ninja
Sat Mar 11, 2006 8:21 pm
Forum: Coding Questions
Topic: PB4 Beta 6
Replies: 6
Views: 1092

thanks, it works.
by Ninja
Sat Mar 11, 2006 6:32 pm
Forum: Coding Questions
Topic: PB4 Beta 6
Replies: 6
Views: 1092

PB4 Beta 6

Hi,
Why does this not work?


Procedure.s GetSpecialfolder(CSIDL)

Structure shItemID
cb.l
abID.b
EndStructure
Structure ItemIDlist
mkid.shItemID
EndStructure

r = SHGetSpecialFolderLocation_(0, CSIDL, @IDL.ITEMIDLIST)
If r = #NOERROR
Path$ = Space(512)
r = SHGetPathFromIDList ...
by Ninja
Mon Mar 06, 2006 5:45 pm
Forum: Coding Questions
Topic: Input/Output PB 4.0 Beta 5
Replies: 2
Views: 775

I've already tried it with readprogramdata, it doesn't work.
by Ninja
Mon Mar 06, 2006 5:16 pm
Forum: Coding Questions
Topic: Input/Output PB 4.0 Beta 5
Replies: 2
Views: 775

Input/Output PB 4.0 Beta 5

Hi i got a little problem with the Purebasic 4.0 Beta 5:


console.l = RunProgram("cmd","","",#PB_Program_Open|#PB_Program_Read|#PB_Program_Write)

Repeat

If AvailableProgramOutput(console)
Debug ReadProgramString(console)
EndIf

Debug "running"
Delay(500)
ForEver

The "running" should be ...