Messages - TheQwerty [ switch to compact view ]

Pages: prev1 ... 12 13 14 15 16 [17]
81
Actually.. To be honest, i don't quite know how to retreive the information about the window being resizable or not :(
Maybe someone could give me a hand?
You could try basing it on the window's style.
WinGet winStyle, Style, A
if (winStyle & 0x40000) { ;0x40000 = WS_SIZEBOX = WS_THICKFRAME
   ;code to resize
}
I'm not sure if that'll work for all windows or even if you need to take into account the minimize and maximize/restore buttons as well.

82
Screenshot Captor / Re: Stop creation of InstallInfo.dat in AppData?
« on: October 10, 2007, 11:58 AM »
That would be most appreciated!   :Thmbsup:

Thank you!

83
Screenshot Captor / Stop creation of InstallInfo.dat in AppData?
« on: October 10, 2007, 11:23 AM »
I'm a new user of SC and I love what I see so far, but I was wondering if it's possible to get it to not create %AppData%\DonationCoder\Keys\DonationCoder_ScreenshotCaptor_InstallInfo.dat each time it is run?

I've tried updating the ConfigDir.ini file to force the use of the current directory but each time I start SC it recreates the file.

It's not a big deal but I prefer it if the portable applications I use are not writing to the host machine(s).

84
Living Room / Re: AHK Help anyone?
« on: September 21, 2007, 06:05 AM »
You probably want something like:
;Get the current time.
now := A_Now

;Subtract the creation time from current (give result in days, other options listed under EnvSub)
now -= %TimeToFix%, Days

if (now > 7) {
Run myjunk.exe
}
return

Pages: prev1 ... 12 13 14 15 16 [17]
Go to full version