May 04, 2024, 02:47:02 AM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


how can i view a big image in a smaller window ?

Started by splakidas, April 11, 2007, 01:38:42 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

splakidas

I scaned a a4 in 200 pixel/inch thats 1654x2339 pixel.
Now i want to load this pic in a window and scroll, so that i can see a part of that pic.


maurice1

Create a browser window and it will open with scroll bars if the image is larger than the window, See example at  http://www.ionicwind.com/forums/index.php/topic,1434.0.html

I tried to find another way, so far without any success.

Maurice

LarryMc

May I suggest you download my program at http://www.codingmonkeys.com/index.php?action=tpmod;dl=get31
It contains all the source code and necessary libs.
demonstrates:
    loading and unloading images into program; cropping; rotating; scaling; etc.
    rubberband box and cropping of image.
    construction of image maps
    techniques for multi src file project
    nested dialogs in separate src files
    wysiwyg text editor in embedded brower window
    +about 100 other techniques

You may be able to get some ideas from there.

Larry
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

DominiqueB

Thank's a lot for these progs Larry.

I see some .inc missing:
   $include "il.inc"
   $include "ilu.inc"
   $include "ilut.inc"

Thank's

Dominique

splakidas

maurice1
QuoteCreate a browser window and it will open with scroll bars if the image is larger than the window, See example at  http://www.ionicwind.com/forums/index.php/topic,1434.0.html
not good solution because i can not draw on browser window (or can i ? dont know)

larry i know this prog, but try to load a pic and use the scrollbars, ups doesn't work.

My problem is that i want a own window not browser window.
Have some old code for scrolling a window here

$include "Api\\ScrollApi.inc"

autodefine "Off"
def PageSize:int
def w:window
def w1:window
def cwinheight:int
def cx,cy:int

openwindow w,0,0,500,200,@vscroll|@noautodraw|@maxbox|@minbox,0,"hello",&whnd
getclientsize w,cx,cx,cx,cy
openwindow w1,0,0,cx,700,@nocaption,w,"",&subwindow
control w1,@button,"Test",10,600,70,22,0,10

cwinheight=700
AdjustScroll()
move w1,0,0
print w1,"Top"
move w1,0,670
print w1,"Bottom"
waituntil w.hwnd=0
end

'--------------------------------------------------------------------------

sub whnd
def Moved:int
   select @class
      case @idclosewindow
         closewindow w
      case @idsize
         if w1.hwnd
            AdjustScroll()
         endif
      case @idvscroll
         Moved=True
         select @code
            case @sbthumbtrack
               Setscrollpos(w,-2,@qual)
            case @sblinedown
               Setscrollpos(w,-2,getscrollpos(w,-2)+1)
            case @sblineup
               Setscrollpos(w,-2,getscrollpos(w,-2)-1)
            case @sbpagedown
               Setscrollpos(w,-2,getscrollpos(w,-2)+PageSize)
            case @sbpageup
               Setscrollpos(w,-2,getscrollpos(w,-2)-PageSize)
            default
               Moved=False
         endselect
         if Moved then Reshow()
      case @idpaint
         reshow()
   endselect
   return
endsub

sub AdjustScroll()

def si:SCROLLINFO
def cx,cy:int
   getclientsize w,cx,cx,cx,cy
   si.cbSize=len(si)
   si.nMin=0
   si.nMax=cwinheight-1
   si.nPage=cy
   si.fMask=SIF_RANGE|SIF_PAGE
   SetScrollInfo(w.hwnd,SB_VERT,si,1)
   PageSize=cy
   return
endsub
'------------------------------------------------------------------------

sub subwindow
   return
endsub

'------------------------------------------------------------------------

sub reshow
def cx,cy:int
def tl:int
   tl=getscrollpos(w,-2)
   getclientsize w,cx,cx,cx,cy
   setsize w1,0,-tl,cx,800
   return
endsub

LarryMc

Quote from: DominiqueB on April 11, 2007, 11:35:49 AM
I see some .inc missing:
   $include "il.inc"
   $include "ilu.inc"
   $include "ilut.inc"
Dominique
Here they are.  You're the 1st person out of over a 100 who have download that said they were missing.

QuotePosted by: splakidas
My problem is that i want a own window not browser window.

The image scaling, scrolling, etc is not in a browser window.
It's the wysiwyg editor that is in the browser window.

Larry
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

DominiqueB

Thank's but i see there are some others . . .
Here is the errors output: i think you use some others ?

Compiling Resources
Compiling...
B100_Main.eba
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (22) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (44) Warning: undeclared function 'tSetSelected' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (67) Warning: undeclared function 'tssHELP_Init' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (104) Warning: undeclared function 'tssHELP_ShowTOC' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (181) Warning: undeclared function 'tssHELP_ShowTOC' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (185) Warning: undeclared function 'tssHELP_ShowTopic' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (189) Warning: undeclared function 'tssHELP_ShowTopic' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (193) Warning: undeclared function 'tssHELP_ShowTopic' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (197) Warning: undeclared function 'tssHELP_ShowTopic' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (201) Warning: undeclared function 'tssHELP_ShowTopic' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (239) Warning: undeclared function 'LoadCursorA'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (328) undefined identifier - TCN_SELCHANGE
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (329) Warning: undeclared function 'tGetSelected'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (358) Warning: undeclared function 'DeleteWildFile' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (377) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (378) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (379) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (380) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (381) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (382) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (383) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (384) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (390) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (431) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (439) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (480) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (500) Warning: undeclared function 'LoadCursorA'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (504) Warning: undeclared function 'LoadCursorA'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (512) Warning: undeclared function 'LoadCursorA'
File: C:\EBDev\MesExemples\TSIMG\B100_Main.eba (531) Warning: undeclared function 'LoadCursorA'
Error(s) in compiling C:\EBDev\MesExemples\TSIMG\B100_Main.eba
B101_Tab_Common.eba
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (22) Warning: undeclared function 'tHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (23) Warning: undeclared function 'tSetSelected' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (25) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (26) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (27) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (28) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (36) Warning: undeclared function 'tSetSelected' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (43) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (44) Warning: undeclared function 'tHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (45) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (46) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (47) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (59) Warning: undeclared function 'tSetSelected' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (66) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (67) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (68) Warning: undeclared function 'tHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (69) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (70) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (80) Warning: undeclared function 'tSetSelected' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (86) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (87) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (88) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (89) Warning: undeclared function 'tHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (90) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (102) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (103) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (104) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (105) Warning: undeclared function 'tunHighLightItem' - )
File: C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba (106) Warning: undeclared function 'tHighLightItem' - )
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:22: error: symbol `tHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:23: error: symbol `tSetSelected' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:25: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:26: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:27: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:28: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:36: error: symbol `tSetSelected' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:43: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:44: error: symbol `tHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:45: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:46: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:47: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:59: error: symbol `tSetSelected' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:66: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:67: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:68: error: symbol `tHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:69: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:70: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:80: error: symbol `tSetSelected' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:86: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:87: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:88: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:89: error: symbol `tHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:90: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:102: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:103: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:104: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:105: error: symbol `tunHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:106: error: symbol `tHighLightItem' undefined
C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.eba:114: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B101_Tab_Common.a
B102_ToolBar_Common.eba
B103_Common.eba
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (31) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (32) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (33) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (39) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (41) Warning: undeclared function 'LoadCursorA'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (58) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (64) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (71) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B103_Common.eba (72) Warning: undeclared function 'GetSysColor'
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:31: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:32: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:33: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:39: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:41: error: symbol `LoadCursorA' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:58: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:64: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:71: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:72: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B103_Common.eba:196: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B103_Common.a
B104_FileIO.eba
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (13) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (29) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (32) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (35) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (38) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (41) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (44) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (47) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (50) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (70) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (70) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (71) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (71) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (72) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (72) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (73) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (73) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (74) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (74) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (75) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (75) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (76) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (76) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (77) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (77) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (116) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (147) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (149) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (150) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (151) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (156) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (157) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (177) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (185) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (186) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (187) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (189) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (190) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (192) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (193) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (195) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (197) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (199) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (237) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (240) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (245) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (248) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (251) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (254) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (274) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (275) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (276) Warning: undeclared function 'AppendTextFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (361) Warning: undeclared function 'GetPathFile' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (362) Warning: undeclared function 'YesNoBox'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (364) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (370) Warning: undeclared function 'FileExists'
File: C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba (374) Warning: undeclared function 'FileExists'
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:13: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:29: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:32: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:35: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:38: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:41: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:44: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:47: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:50: error: symbol `udSetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:70: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:70: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:71: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:71: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:72: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:72: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:73: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:73: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:74: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:74: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:75: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:75: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:76: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:76: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:77: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:77: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:116: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:144: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:149: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:150: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:151: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:156: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:157: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:176: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:185: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:186: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:187: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:189: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:190: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:192: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:193: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:195: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:197: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:199: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:237: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:240: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:243: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:247: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:250: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:253: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:274: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:275: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:276: error: symbol `AppendTextFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:361: error: symbol `GetPathFile' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:361: error: symbol `YesNoBox' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:364: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:364: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:372: error: symbol `FileExists' undefined
C:\EBDev\MesExemples\TSIMG\B104_FileIO.eba:381: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B104_FileIO.a
B110_Image.eba
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (83) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (84) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (86) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (87) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (89) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (90) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (92) Warning: undeclared function 'udGetPos'
File: C:\EBDev\MesExemples\TSIMG\B110_Image.eba (93) Warning: undeclared function 'udGetPos'
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:83: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:84: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:86: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:87: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:89: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:90: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:92: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:93: error: symbol `udGetPos' undefined
C:\EBDev\MesExemples\TSIMG\B110_Image.eba:140: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B110_Image.a
B111_Map.eba
File: C:\EBDev\MesExemples\TSIMG\B111_Map.eba (8) Warning: undeclared function 'GetSysColor'
C:\EBDev\MesExemples\TSIMG\B111_Map.eba:8: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B111_Map.eba:113: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B111_Map.a
B112_Text.eba
B113_Name.eba
File: C:\EBDev\MesExemples\TSIMG\B113_Name.eba (45) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B113_Name.eba (66) Warning: undeclared function 'SplitTwo' - )
File: C:\EBDev\MesExemples\TSIMG\B113_Name.eba (107) Warning: undeclared function 'SplitTwo' - )
C:\EBDev\MesExemples\TSIMG\B113_Name.eba:45: error: symbol `GetSysColor' undefined
C:\EBDev\MesExemples\TSIMG\B113_Name.eba:66: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B113_Name.eba:107: error: symbol `SplitTwo' undefined
C:\EBDev\MesExemples\TSIMG\B113_Name.eba:118: error: phase error detected at end of assembly.
Error(s) in assembling C:\EBDev\MesExemples\TSIMG\B113_Name.a
B114_Config.eba
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (49) Warning: undeclared function 'GetSysColor'
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (75) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (75) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (76) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (77) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (78) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (79) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (85) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (85) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (86) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (87) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (88) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (89) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (97) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (97) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (98) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (99) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (100) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (101) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (106) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (106) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (107) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (108) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (109) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (110) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (117) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (117) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (118) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (119) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (120) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (121) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (126) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (126) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (127) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (128) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (129) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (130) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (136) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (136) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (137) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (138) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (139) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (140) Warning: undeclared function 'udSetPos' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (145) Warning: undeclared function 'UPDownCTRL' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (145) undefined identifier - UDS_AUTOBUDDY - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (146) Warning: undeclared function 'udSetBase' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (147) Warning: undeclared function 'udSetRange' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (148) Warning: undeclared function 'udSetAccel' - )
File: C:\EBDev\MesExemples\TSIMG\B114_Config.eba (149) Warning: undeclared function 'udSetPos' - )
Error(s) in compiling C:\EBDev\MesExemples\TSIMG\B114_Config.eba
FolderRequest.eba
zfilerequest.eba

LarryMc

you need to go to codingmoneys http://www.codingmonkeys.com/
where you got my file and download the control pak file and the html help file.

the getsyscolor is a windows api that i have in a windows.inc file.
as is LoadCursorA

'SplitTwo' 'FileExists' 'AppendTextFile'  are all in Fletchies ctl.dll http://fletchie.pyxia.com/downloads/ctlpak.exe
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

chris_s

I'd like to get a copy of your image manager code but I get the message "You are not allowed to access this section" even though I'm logged in on Codingmonkeys.

Chris

LarryMc

I have no idea and nothing to do with who has access on CodingMonkeys.
Post a message about it over there and see if the moderator can tell you why.
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

splakidas

Larry McCaughn
Try to load a 1000 x 1000 pixel image with TMG/SS Image Manager , try to scroll the image,
Doesnt work. :-\ :-\

that what i want is to have a window ie 500x500 and  have inside a pic 1000x1000 and be able
to scroll it up and down left and right with the window scrollers


LarryMc

I just ran my copy of the program and loaded an image 1500x2000 and scrolled around just fine.
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

LarryMc

Here's the exe and dlls required for it to run.  See if you have any better luck.
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

chris_s

Codingmonkeys' problem now seems to be fixed.

splakidas

Larry McCaughn 

your exe works fine. The TMG/SS Image Manager from Codingmonkeys dont work (the exe file, source not compiled yet).