| View previous topic :: View next topic |
| What should happen to this project? |
| Let's work on it, I'll help |
|
14% |
[ 13 ] |
| Keep it alive |
|
80% |
[ 74 ] |
| Let it go |
|
1% |
[ 1 ] |
| I don't care |
|
4% |
[ 4 ] |
|
| Total Votes : 92 |
|
| Author |
Message |
ahkuser
Joined: 27 May 2005 Posts: 9
|
Posted: Sat Jan 19, 2008 5:53 am Post subject: |
|
|
I added your code above and uploaded a new zip file. _________________ This ID is used by a team of AHK users working together.
Feel free to ask if you want to join.
_________________ |
|
| Back to top |
|
 |
BlaXpirit
Joined: 12 Aug 2008 Posts: 2
|
Posted: Wed Aug 13, 2008 2:00 pm Post subject: |
|
|
Much better than Smart GUI Creator...
Much more bugs...  _________________
 |
|
| Back to top |
|
 |
Fry
Joined: 01 Nov 2007 Posts: 885
|
Posted: Mon Aug 18, 2008 10:06 pm Post subject: |
|
|
Wish this was still being developed.
 |
|
| Back to top |
|
 |
darklight_tr
Joined: 29 May 2008 Posts: 21 Location: Madison, WI
|
Posted: Tue Aug 19, 2008 5:30 pm Post subject: |
|
|
| I wish either this or SmartGUI Creator were still being developed. I use SmartGUI because of its interface but I dread the day that neither one works... |
|
| Back to top |
|
 |
toralf n-l-i Guest
|
Posted: Tue Aug 19, 2008 8:07 pm Post subject: |
|
|
| You could step in an do some development. It happens that I do not have time and will probably not have in the near and long term future. Sorry. |
|
| Back to top |
|
 |
darklight_tr
Joined: 29 May 2008 Posts: 21 Location: Madison, WI
|
Posted: Wed Aug 20, 2008 5:20 pm Post subject: |
|
|
| toralf n-l-i wrote: | | You could step in an do some development. It happens that I do not have time and will probably not have in the near and long term future. Sorry. |
Unfortunately both apps are way beyond my meager knowledge of AHK. I would end up making things worse.
Hey, you developed this for free on your own time. I completely understand the fact that you are unable to support it anymore. |
|
| Back to top |
|
 |
rani
Joined: 18 Mar 2008 Posts: 192
|
Posted: Sat Oct 11, 2008 6:58 am Post subject: |
|
|
I asked this question in other AHK discussions , with no answer,
may be in this forum it can be answered:
table/grid properties:
freeze columns
1. is it possible to define 'fixed columns' means:
on scroll left-right the specific signed columns will not move ?
Image control
is there an Image control in this tool ?
so I set the image file and see it in the GUI ?
if yes:
can the image control create, by setting it's properties,
scrollers vertical and horizontal ?
so user can scroll the image both directions ?
I asked this question because the AHK standard picture gui
I cannot set the scrollers left/right or up/down
or there is a simple way to do it ?
but of-course the best thing will be if it will be a standard property
of the Image control in this project ,lil builder
any help will be apprecieated.
rgrds
rani |
|
| Back to top |
|
 |
cerewa notloggedin Guest
|
Posted: Wed Jan 07, 2009 10:51 pm Post subject: |
|
|
This looks like a great project.
Wonder if it's appealing enough that people would pay money to see it developed...
If people don't have time to work on it but want to see it done...
maybe they'd pitch in a couple dollars to see it improved...
I personally feel like automatic gui-creators are a huge part of AHK's appeal. |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7299 Location: Australia
|
Posted: Thu Apr 23, 2009 5:47 am Post subject: |
|
|
I realise Lil Builder probably isn't being actively developed, but I have a suggestion to fix a rather annoying bug: if the selection window's borders aren't exactly 3 pixels wide/high, selecting a control resizes it slightly. This is because Selector_Set2PosSize uses a simple -= 6 adjustment before resizing the Gui with Gui, 1:Show. This isn't adequate, especially on Vista (or 7) where the borders are larger. Instead, Selector_Set2PosSize should use WinMove to size the Gui, or calculate the actual size of the borders. (SysGet 32 or 33 should return the size of one border, but on my system they return 7 when 6 is the correct value.)
I also chose to disable "Aero" rendering of the window border (and the window's shadow):
| Code: | | DllCall("dwmapi\DwmSetWindowAttribute", "uint", WinExist(), "uint", 2, "int*", 1, "uint", 4) |
|
|
| Back to top |
|
 |
Fry
Joined: 01 Nov 2007 Posts: 885
|
Posted: Thu Apr 23, 2009 4:21 pm Post subject: |
|
|
| Lexikos you will be a god if fix this. I beg of you. BEG OF YOU |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Thu Apr 23, 2009 5:14 pm Post subject: |
|
|
Ill post module you can use to fix this one of next days. Its called Win.ahk and brings usefull windows functions in uniform and convinient API.
Win_Get function can return bunch of win information, one of them to be border size which depend on bunch of things, like OS, skin, etc...
All of the things having different values with different skins (tittlebar, borders, etc..) can be done with it.
I wont fix the code tho, but the line can be simply changed to something like
| Code: | | x -= Win_Get(hwnd, "Bx") ;returns border width |
_________________
 |
|
| Back to top |
|
 |
mAdDoG
Joined: 29 Dec 2004 Posts: 75
|
Posted: Sun Jan 10, 2010 3:28 pm Post subject: |
|
|
Guys, looks like it would be great, but I immediately get this error when trying to add a standard control:
Hope someone can help soon! _________________ -buttons, buttons,...
I like to push all the buttons!!! |
|
| Back to top |
|
 |
randallf
Joined: 06 Jul 2009 Posts: 678
|
Posted: Tue Jan 19, 2010 6:38 pm Post subject: |
|
|
| So how exactly does one view or edit the gui code once one has created a gui? |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Wed Jan 20, 2010 12:20 pm Post subject: |
|
|
Right click on the toolbar and choose export. _________________
 |
|
| Back to top |
|
 |
randallf
Joined: 06 Jul 2009 Posts: 678
|
Posted: Wed Jan 20, 2010 4:22 pm Post subject: |
|
|
| majkinetor wrote: | | Right click on the toolbar and choose export. |
Thanks! For my 2c this does look really cool, worlds beyond the packaged item... honestly I think you should package this with AHK instead of SmartGUI... (except that it's full of crash bugs... but the interface is really epic) |
|
| Back to top |
|
 |
|