Search found 7 matches
- 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.
- Sun Mar 12, 2006 10:54 am
- Forum: Coding Questions
- Topic: PB4 Beta 6
- Replies: 6
- Views: 1092
- Sun Mar 12, 2006 9:04 am
- Forum: Coding Questions
- Topic: PB4 Beta 6
- Replies: 6
- Views: 1092
- Sat Mar 11, 2006 8:21 pm
- Forum: Coding Questions
- Topic: PB4 Beta 6
- Replies: 6
- Views: 1092
- 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 ...
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 ...
- Mon Mar 06, 2006 5:45 pm
- Forum: Coding Questions
- Topic: Input/Output PB 4.0 Beta 5
- Replies: 2
- Views: 775
- 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 ...
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 ...