José Roca Forum
Web Site
News: Attachments are only available to registered users.
Please register using your full, real name.
 
*
Welcome, Guest. Please login or register. September 09, 2010, 02:34:19 PM


Login with username, password and session length


PowerBASIC is a trademark of PowerBASIC, Inc.
This is not an official PowerBASIC site and we are not affiliated with PowerBASIC, Inc.
DISCLAIMER: The software and accompanying documentation are provided "as is" and without warranties as to performance or merchantability or any other warranties whether expressed or implied. Because of the various hardware environments into which the software may be used, no warranty of fitness for a particular purpose is offered. The user must assume the entire risk of using the software. In no case shall any of the contributors to this project be liable for any incidental, special or consequential damages or loss, including, without limitation, lost profits or the inability to use equipment or access data. This is true even if we are advised of the possibility of such damages. We also don't have any obligation of fix eventual bugs or to add new features.
Pages: « 1 2 3 4 5 »   Go Down
  Print  
Author Topic: "Of The Bay"  (Read 13803 times)
0 Members and 1 Guest are viewing this topic.
Emil Weiss
Guest
« Reply #30 on: November 03, 2008, 05:27:45 AM »

Quote
Now Emil, you should see something...

yeah .. work fine now .

can you send me a registered version of GDImage.dll?
or must buy it Smiley

i think a good idea is move all icon from the taskbar in to 'of the bay'
then i have clean it

greets Emil

Edit:
have found a problem
when move any folder or File to another Folder (right mouse) when 'bar' active then i can not show the cursor
or the icon any more

« Last Edit: November 03, 2008, 05:40:17 AM by Emil Weiss » Logged
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #31 on: November 03, 2008, 10:10:40 AM »

Emil,

GDImage is a commercial graphic toolkit as you can see it there.


The trial version is not time limited, and it allows you to try all the features of the Pro version without any other restriction than the nag screen.

It is a very versatile toolkit, and one of the very few able to work with VISTA in full composited mode.
It combines the best of GDI32+GDIPLUS+OpenGL.
The Carousel is a must try and the demo is available for plain Win32, C# managed, and WinDev.

You can also try PhotoComposer that is a pure GDImage project from 01men

 Cool

Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #32 on: November 03, 2008, 06:17:56 PM »

There are several new icon frames and backgrounds + subtile changes.

Latest ZIP file is attached to the first post of this thread.

 Cool
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #33 on: November 04, 2008, 07:07:28 PM »

Petr, Dominique,

I heard you!

Here is "Of The Bay" version 1.20, with drag and drop and smooth scrolling.

  • Drag and drop
Now you can start BassBox and MovieBox just as you did with the standard desktop icon.
  • Smooth scrolling
Starts when the mouse hover either the left or right arrow, if you click on the arrow you scroll the content either from the start or to the end.

The new zip file is attached to the first post of this thread.


 Cool
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Petr Schreiber
Sr. Member
****

Karma: 9
Offline Offline

Posts: 420


« Reply #34 on: November 04, 2008, 10:40:03 PM »

Hi Patrice,

good job! Wink
Works well here, CPU usage still at 0 to 2%...


Petr
Logged

AMD Sempron 3400+ | 1GB RAM @ 533MHz | GeForce 6200 / GeForce 9500GT | 32bit Windows XP SP3

psch.thinbasic.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #35 on: November 09, 2008, 02:53:51 PM »

Under request of Laurence Jackson,

I have added detection of embedded desktop subfolders:

FUNCTION ResolveShortcutName(zLnk AS ASCIIZ) AS STRING
    LOCAL sUseIcon AS STRING

    IF zLnk = ShortCutDisplayName(%CSIDL_BITBUCKET) THEN sUseIcon = "RecycleBin.png":             GOTO ExitLnk
    IF zLnk = ShortCutDisplayName(%CSIDL_DRIVES)    THEN sUseIcon = "MyComputer.png":             GOTO ExitLnk
    IF zLnk = ShortCutDisplayName(%CSIDL_NETWORK)   THEN sUseIcon = "NetworkNeighborhood.png":    GOTO ExitLnk
    IF zLnk = ShortCutDisplayName(%CSIDL_PERSONAL)  THEN sUseIcon = "MyDocuments.png":            GOTO ExitLnk
    IF zLnk = ShortCutDisplayName(%CSIDL_MYVIDEO)   THEN sUseIcon = "MyVideo.png":                GOTO ExitLnk
    IF zLnk = ShortCutDisplayName(%CSIDL_MYMUSIC)   THEN sUseIcon = "MyMusic.png":                GOTO ExitLnk

    IF (GetFileAttributes(FolderGet(%CSIDL_DESKTOP) + zLnk) AND 16) THEN sUseIcon = "Folder.png": GOTO ExitLnk
    EXIT FUNCTION

ExitLnk:
    FUNCTION = sUseIcon
END FUNCTION


The lattest ZIP project is attached to the first post of this thread.
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Laurence Jackson
Newbie
*

Karma: 1
Offline Offline

Posts: 10


« Reply #36 on: November 09, 2008, 06:16:00 PM »

Great! Thank you!
Logged
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #37 on: November 13, 2008, 06:18:05 PM »

updated to version 1.22.
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #38 on: November 15, 2008, 07:44:56 PM »

Updated to version 1.23
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Emil Weiss
Guest
« Reply #39 on: November 15, 2008, 09:04:34 PM »

Updated to version 1.23
fantastic work Patrice i love it..
one problem i have found Wink
Dialog too deep

should be over the Bar.

greets Emil
« Last Edit: November 15, 2008, 09:10:10 PM by Emil Weiss » Logged
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #40 on: November 15, 2008, 10:26:21 PM »

Quote
should be over the Bar.
That's another difference between XP and VISTA, i shall fix it in the next build.

...
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #41 on: November 16, 2008, 07:23:54 PM »

I have been able to work arround the Microsoft bug that exists in all Windows version, when trying to set the location of a common FileOpen/FileSave dialog on a second monitor in multiple display mode.

You can't imagine what i had to do to solve this "simple" problem ...

By the way i have also added a new GDImage function named "ZI_CenterDialog" to center the dialog to the display instead of the default GDImage's parent window.

If ever you have a multiple display and a slower PC than mine, you can adjust in the main WndProc the dlgSleep parameter to a longer delay (millisecond), see below:
Code:
'   // This is to force a correct placement of the FileOpen/FileSave common dialog
'   // when using multiple display mode and working on the second display.
    STATIC dlgWnd, dlgX, dlgY AS LONG, dlgSleep AS DWORD
    IF dlgWnd THEN
       IF GetTickCount() > dlgSleep THEN
          CALL SetWindowPos(dlgWnd, dlgWnd, dlgX, dlgY, 0, 0, %SWP_NOZORDER OR %SWP_NOSIZE)
          dlgWnd = 0: dlgSleep = 0
       END IF
    END IF

    SELECT CASE LONG Msg

    CASE %ZM_CENTER_DIALOG
         dlgWnd = wParam: dlgX = LO(INTEGER, lParam): dlgY = HI(INTEGER, lParam)
         dlgSleep = GetTickCount() + 10 ' 100
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #42 on: November 17, 2008, 08:42:59 PM »

Updated to version 1.25

With new open/close WindowAnimate effect, and new icon text location.

By the way, did you see that somebody is sitting on the dock  Grin

...
 
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #43 on: November 18, 2008, 07:16:49 PM »

For those experiencing Doctor Watson on XP when closing "OfTheBay" using the AnimateWindow

Try changing
Code:
         CASE %IDM_CLOSE ' %ID_CLOSE
              CALL AnimateWindow(hWnd, 500, %AW_CENTER OR %AW_HIDE)
              CALL SendMessage(hWnd, %WM_CLOSE, 0, 0)

to this
Code:
         CASE %IDM_CLOSE ' %ID_CLOSE
              CALL AnimateWindow(hWnd, 500, %AW_CENTER OR %AW_HIDE)
              CALL apiSleep(500)
              CALL PostMessage(hWnd, %WM_CLOSE, 0, 0)

Other solution "move on to VISTA"... or remove AnimateWindow Wink
« Last Edit: November 18, 2008, 07:19:26 PM by Patrice Terrier » Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Patrice Terrier
Global Moderator
Hero Member
*****

Karma: 36
Offline Offline

Gender: Male
Posts: 1353


WWW
« Reply #44 on: November 19, 2008, 08:00:43 PM »

Version 1.30 is a major revision.

  • The DockBar doesn't use anymore the WS_EX_TOPMOST style, to be less invasive.
  • If the DockBar is dropped behind the taskbar, then it is moved just above it, to always enable the use of the popup contextual popup menu.
  • If the Dockbar is hidden behind another window, clicking anywhere on the desktop will bring it up in the foreground.

...
Logged

Patrice Terrier
GDImage (advanced graphic addon)
http://www.zapsolution.com
Pages: « 1 2 3 4 5 »   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC

IMPRESSUM
Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.096 seconds with 19 queries.