topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday May 9, 2024, 5:55 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: [1] 2 3 4 5 6 ... 10next
1
Nice thread! I actually also looked for something like that recently, and after a long search, I've been happy with... Notepad++! But wait, the secret trick was to add a little-known plugin called "Preview HTML". It might not have all the bells and whistles that other programs have, but it's auto-refreshing, stable, free, and I've been very happy with it. Here's a screenshot.

Untitled.png
2
General Software Discussion / Re: is it possible to easily build a GUI mockup?
« Last post by firace on March 08, 2015, 03:16 AM »
yes, something like this! how you created it?

I used SmartGUI Creator, as it was lying on my HD. However, it's abandonware and there are much better tools, as suggested in the other posts.
3
General Software Discussion / Re: is it possible to easily build a GUI mockup?
« Last post by firace on March 07, 2015, 07:07 AM »
Something along the lines of this? (I did not implement everything because I'm running out of time now)

4
Skwire Empire / Re: (Pre) Release: sChecklist
« Last post by firace on July 20, 2014, 11:14 AM »
I've just tested it with a standard listview and it works beautifully for me...  Even with accented characters!
I hope you can actually use this in sCheckList.

EDIT: Cleaned up code.




Gui, Add, ListView, r20 w330 gMyListView, Name|Size (KB)

Loop, C:\*.*
    LV_Add("", A_LoopFileName, A_LoopFileSizeKB)

LV_ModifyCol() 
LV_ModifyCol(2, "Integer") 

Gui, Show
return

MyListView:
if A_GuiEvent = DoubleClick
{
LV_GetText(RowText, A_EventInfo) 

if  checked%A_EventInfo%
out := Unstrike(RowText)
else
out := Strike(RowText)

checked%A_EventInfo% := !checked%A_EventInfo%  
LV_Modify(A_EventInfo,Col1, out)

}

return

Strike(str)   {
    loop % strlen(str)
      result .= SubStr(str, A_Index, 1) Chr(0x336)
return result
}


Unstrike(str)   {
    loop % strlen(str)
      StringReplace, result,str, % Chr(0x336),, All
return result
}
 
GuiClose: 
ExitApp
5
Skwire Empire / Re: (Pre) Release: sChecklist
« Last post by firace on July 20, 2014, 10:29 AM »
Any chance the checked items can also have strikethrough?

Unfortunately, I'm pretty positive AutoHotkey cannot strikethrough individual lines in its listview handling options.  The best I could do would probably be to offer colouring options for the rows.  However, that involves a separate library and comes with its own set of potential issues.

Assuming Listviews accept Unicode characters, this simple hack should work, hopefully... :)
I've just tested it under AHK 1.1, Win XP, and MS Word.  Unfortunately, I can't remember where I came across this trick.

^#v::
  str := clipboard, out := ""
  loop % strlen(str)
    out .= SubStr(str, A_Index, 1) Chr(0x336)
  SendInput %out%
return

6
Skwire Empire / Re: sCheckbook
« Last post by firace on June 08, 2012, 12:03 AM »
Website | Download
v1.0.6 - 2012-06-07
    + Added a Save button to the toolbar.  (Thanks, Nick)
    + Added a "Last used date" button to the add/edit transaction diaglogue.
      (Thanks, Nick)
    ! Memo column wasn't exported in HTML report.


Awesome! Thanks again for this great tool.
7
Skwire Empire / Re: sCheckbook
« Last post by firace on April 16, 2012, 04:22 AM »
Many thanks for this program  - I find it very useful.  Good choice of icons too!  
 Just curious, is the source code available?

And I've noticed two (very minor) bugs:
 -the Ctrl-O shortcut doesn't work upon launching the program (it does when a file is already open)
 -the update check seems to create an empty .SCB file.
Pages: [1] 2 3 4 5 6 ... 10next