+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 16 of 16

Thread: FGCBA Handler UI v0.03

  1. #11
    Join Date
    Aug 2006
    Posts
    7

    Default

    Just a quick question. . . or two

    Is there anything stopping you compiling the FGCBA with the Handler? (if they use different command switches I can't see a problem. . . also the FGCBA really needs to benifit from the UI as well (say a viewable log that you can copy the information from). It should work out easier to maintain 1 program than two.

    Hell you could even bring up the problem inf or ini for direct editing and then recompile the addon when editing completed and FGCBA re tested.


    I know you've put a lot of time an effort into this project, any chance you'll open source it for me? I'd love to see all the inf parsing you've created and mabey I could help you out more than I have been.

    Well anyways these are just ideas and you can dismiss them at your lesuire!

    Nightwolf81 (Nightwolf_GLC AT hotmail dot com)
    Follow Siginet's latest software venture on Facebook!
    Just click on the LIKE button on his new website here:

    www.ITTechware.com

  2. #12
    Join Date
    May 2006
    Location
    Cairo, Egypt
    Posts
    50

    Default

    Actually, I have actually considered this many times already...

    In fact, I actually started the handler as a part of FGCBA's main executable, but one thing came in my way...

    I thought of launching the handler when a special switch was specified...etc., but ran into a problem that a blank console window would be left running behind the Handler's form. There is no way in C# to hide windows without some API interop and the console would still flash briefly even if accomplished... and if I compile FGCBA as a Windows Forms app there will be no console at all and there would be no way to show it... (and I'm a long way from making FGCBA a GUI app, I like it being a console app because it eases the use in batch files).

    So I thought a good compromise would be this scenario, I will still investigate other possibilities and eventually, the 2 apps maybe united...

    As for viewing the log into the GUI, that is very possible, and I will implement it in the next version...

    As for open-sourcing, I do plan to release its source when I reach 1.0 (as I state on the site, it's written in C#) when I've cleaned up everything and fully documented the code...

    (small note: I obfuscated your email in your post, it's not very wise to post your email in clear format on a public message board... ).

  3. #13
    Join Date
    May 2006
    Location
    Cairo, Egypt
    Posts
    50

    Default

    As promised, here's the batch file that does the registry redirect loop to register the handler to all supported extensions .
    It's a bit slow but works 100% correctly and doesn't require any 3rd party programs.

    Code for register_fgcba.cmd (copy the code in the block, paste it into notepad and replace <tab> with a tab key on the keyboard or the code will not work properly):
    @Echo Off
    setlocal enableextensions enabledelayedexpansion
    :lookforFGCBAHandler
    For %%i IN (FGCBAHandler.exe) Do set FGCBAHandlerLocation=%%~$PATH:i
    If not defined FGCBAHandlerLocation (For %%i In (FGCBAHandler.exe) Do If exist %%i set FGCBAHandlerLocation=%%~dpnxi)
    If not defined FGCBAHandlerLocation goto error
    Echo.
    Echo * PLEASE WAIT: Registering FGCBAHandler to supported extensions...
    FOR %%i IN (.ini .inf .cab .7z .zip .rar) Do call :registerloop "%%i"
    Echo * SUCCESS: FGCBAHandler has been successfully registered.
    goto end

    :error
    Echo * ERROR: Cannot find FGCBAHandler.exe in any of the folders defined by %%PATH%%.
    goto end

    :registerloop
    If "%~1"=="" goto :EOF
    set currentkey=%~1
    Echo * Registering: %~1
    :loop
    REG QUERY "HKCR\%currentkey%\shell" 1>NUL 2>NUL
    If errorlevel=1 (For /F "usebackq tokens=3 delims=<tab>" %%i IN (`@reg query HKCR\%currentkey% /ve ^| find /I "REG_SZ"`) Do set currentkey=%%i
    goto loop) ELSE (
    set basekey=HKCR\%currentkey%\shell\FGCBAHandler
    REG ADD "!basekey!" /ve /t REG_SZ /d "&FGCBA..." /f 1>NUL
    REG ADD "!basekey!\command" /ve /t REG_SZ /d "\"%FGCBAHandlerLocation%\" \"%%1\"" /f 1>NUL
    )

    :end
    endlocal
    It is best to use this batch file as the last item, especially after installing any archive-handling utilities, so that archive-type extensions are registered correctly.

  4. #14
    Join Date
    May 2006
    Location
    Cairo, Egypt
    Posts
    50

    Default

    Released v0.03, with more user-friendly nice-to-haves .

    See first post for updated screenshot and download link + md5 hash...

  5. #15
    Join Date
    Feb 2007
    Posts
    1

    Default

    File deleted!
    Please reuplaod.
    Thanks.
    Follow Siginet's latest software venture on Facebook!
    Just click on the LIKE button on his new website here:

    www.ITTechware.com

  6. #16
    Join Date
    Aug 2012
    Posts
    2

    Default

    KeyRocket has made the keyboard shortcuts very easy and funny. You can enjoy using the shortcuts by using this excellent software.

    ---------- Post added at 08:26 AM ---------- Previous post was at 08:25 AM ----------

    KeyRocket supports all the keyboard shortcuts of Windows Explorer. You can enjoy your Windows by using this software.
    Follow Siginet's latest software venture on Facebook!
    Just click on the LIKE button on his new website here:

    www.ITTechware.com

+ Reply to Thread

Similar Threads

  1. FGCBA is not dead
    By n7Epsilon in forum Project FGCBA (File Gatherer and Cab Builder for AddOns)
    Replies: 2
    Last Post: 08-12-2012, 09:24 AM
  2. FGCBA not seeing the correct file
    By OrcoXP in forum Project FGCBA (File Gatherer and Cab Builder for AddOns)
    Replies: 6
    Last Post: 04-14-2008, 06:16 PM
  3. [Bug?] FGCBA 0.89
    By Aserone in forum Project FGCBA (File Gatherer and Cab Builder for AddOns)
    Replies: 6
    Last Post: 10-24-2006, 04:49 AM
  4. Need Opinions: FGCBA Handler UI
    By n7Epsilon in forum Project FGCBA (File Gatherer and Cab Builder for AddOns)
    Replies: 2
    Last Post: 10-11-2006, 09:20 PM
  5. FGCBA v0.897 Beta Released
    By n7Epsilon in forum Project FGCBA (File Gatherer and Cab Builder for AddOns)
    Replies: 1
    Last Post: 07-21-2006, 01:19 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts