Search found 7 matches

by andyryu
Wed May 28, 2008 3:56 am
Forum: Coding Questions
Topic: Read console output
Replies: 5
Views: 2470

you can use write and read pipe with winapi,then readfile from pipe
but i think purebasic do it same way
some exe redirect output ,you can catch it
by andyryu
Wed May 07, 2008 9:37 am
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 589161

bug report

-build 309 1.99
1.when check "prepare multilanguage support" and select "procedure":
if purebasic was not install in "c:\program files",the temp language file will not be created
2.about window should be "modeless" like "visual designer",now it looks very strange
3.very hope for double-byte charset ...
by andyryu
Thu Dec 06, 2007 4:13 pm
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 589161

some string just like window title error with chinese char!

when i type chinese chars in window title like ("格式" ), i got ("袷?),
i think it would be an error about string read method , some double byte char can't be read like ascii.
hope author do something for it
i like pureform very much,but this error let me ......
by andyryu
Tue Jul 31, 2007 5:11 am
Forum: Coding Questions
Topic: listview gadget over string gadget,can not select item
Replies: 6
Views: 1760

got it

haha,i got it
1、hide ListViewGadget
2、set z-order of the 2 gadget ,listviewgadget insert after stringgadget
*if the z-order is correct,ignore this step
3、freeze the #wm_paint of stringgadget
4、show ListViewGadget
5、unfreeze the #wm_paint of stringgadget

ok
by andyryu
Mon Jul 30, 2007 9:23 am
Forum: Coding Questions
Topic: listview gadget over string gadget,can not select item
Replies: 6
Views: 1760

the 2 ways are all not good enough,when the listview cover half of string gadget ,it looks strange
i try pureform and other tools,and try z-order,but i can't get result i want
so i drop it and give up
thank you
by andyryu
Mon Jul 30, 2007 8:59 am
Forum: Coding Questions
Topic: listview gadget over string gadget,can not select item
Replies: 6
Views: 1760

sorry,but i only want place these gadgets like this,because i won't let the listview gadget always shown,but when they are all on screen,i can not select "test3"
by andyryu
Mon Jul 30, 2007 8:08 am
Forum: Coding Questions
Topic: listview gadget over string gadget,can not select item
Replies: 6
Views: 1760

listview gadget over string gadget,can not select item


OpenWindow(0, 216, 0, 600, 300, "i can't select test3" )
CreateGadgetList(WindowID(0))
StringGadget(0, 96, 91, 131, 20, "")
ListViewGadget(1, 128, 69, 105, 97)
AddGadgetItem(1,-1,"test1")
AddGadgetItem(1,-1,"test2")
AddGadgetItem(1,-1,"test3")

Repeat:Until WaitWindowEvent() = #PB_Event ...