AutoHotkey Community

It is currently May 26th, 2012, 9:54 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 264 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18  Next

What should happen to this project?
Let's work on it, I'll help
Keep it alive
Let it go
I don't care
You may select 1 option

View results
Author Message
 Post subject:
PostPosted: January 19th, 2008, 6:53 am 
Offline

Joined: May 27th, 2005, 3:52 pm
Posts: 9
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.

_________________


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 13th, 2008, 3:00 pm 
Offline

Joined: August 12th, 2008, 2:28 pm
Posts: 2
Much better than Smart GUI Creator... :D
Much more bugs... :cry:

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 18th, 2008, 11:06 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Wish this was still being developed.

:(


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2008, 6:30 pm 
Offline

Joined: May 29th, 2008, 5:02 pm
Posts: 21
Location: Madison, WI
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...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 19th, 2008, 9:07 pm 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2008, 6:20 pm 
Offline

Joined: May 29th, 2008, 5:02 pm
Posts: 21
Location: Madison, WI
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 11th, 2008, 7:58 am 
Offline

Joined: March 18th, 2008, 4:04 am
Posts: 193
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 7th, 2009, 11:51 pm 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 23rd, 2009, 6:47 am 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7502
Location: Australia
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)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 23rd, 2009, 5:21 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Lexikos you will be a god if fix this. I beg of you. BEG OF YOU


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 23rd, 2009, 6:14 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 10th, 2010, 4:28 pm 
Offline

Joined: December 29th, 2004, 8:22 pm
Posts: 75
Guys, looks like it would be great, but I immediately get this error when trying to add a standard control:

Image

Hope someone can help soon!

_________________
-buttons, buttons,...
I like to push all the buttons!!!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 19th, 2010, 7:38 pm 
Offline

Joined: July 6th, 2009, 9:58 pm
Posts: 678
So how exactly does one view or edit the gui code once one has created a gui?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 1:20 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Right click on the toolbar and choose export.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 5:22 pm 
Offline

Joined: July 6th, 2009, 9:58 pm
Posts: 678
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)


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 264 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 18 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group