FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour error run application
Posts: 357
Joined: Thu Nov 02, 2006 06:53 PM
error run application
Posted: Sat Jun 16, 2007 05:57 PM

error after run application


xsetow6.exe - Błąd aplikacji

Instrukcja spod "0x00000000" odwołuje się do pamięci pod adresem "0x00000000". Pamięć nie może być "read".

Kliknij przycisk OK, aby przerwać działanie aplikacji
Kliknij przycisk Anuluj, aby rozpocząć debugowanie programu


OK Anuluj

best regards

kajot
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
error run application
Posted: Sat Jun 16, 2007 07:09 PM

Are you using Harbour or xharbour ? What FWH version ?

Do you get the error when you exit from the application ? Please place a MsgInfo() before the end of your application and check it it properly shows

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 357
Joined: Thu Nov 02, 2006 06:53 PM
error run application
Posted: Sat Jun 16, 2007 08:50 PM

I am using xHarbour Compiler build 0.99.70 (SimpLex)
and FWH 7.05 ( operation system Windows XP)

best regards

kajot
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
error run application
Posted: Sat Jun 16, 2007 10:44 PM

Do you get the error when you exit from the application ? Please place a MsgInfo() before the end of your application and check it it properly shows

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 357
Joined: Thu Nov 02, 2006 06:53 PM
error after run application
Posted: Sun Jun 17, 2007 06:16 AM

when I run application

best regards

kajot
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
error run application
Posted: Sun Jun 17, 2007 08:16 AM

Could you please provide a small PRG sample to reproduce the error ? Thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 357
Joined: Thu Nov 02, 2006 06:53 PM
error after run application
Posted: Sun Jun 17, 2007 08:54 AM

include "FiveWin.ch"

static oWnd
//----------------------------------------------------------------------------//

function Main()
local oBar

SET _3DLOOK ON

DEFINE WINDOW oWnd FROM 0,0 to 200,800 pixel TITLE "Karta pracy" ;
MENU BuildMenu()

SET MESSAGE OF oWnd TO "(c) Inkom"

ACTIVATE WINDOW oWnd
// VALID MsgYesNo( "Czy koniec ?" )

return nil

//----------------------------------------------------------------------------//
function BuildMenu()

local oMenu

MENU oMenu
MENUITEM "&Karta"
MENU
MENUITEM "&Pracownicy" //Action bro01()
MENUITEM "&Zleceniobiocy"
ENDMENU
MENUITEM "&Raporty"
MENU
MENUITEM "&Karta pracy" //Action rep01()
ENDMENU
MENUITEM "&Koniec"
MENU
MENUITEM "&Koniec" ACTION oWnd:End()
ENDMENU

ENDMENU

return oMenu
//----------------------------------------------------------------------------//
procedure AppSys // XBase++ requirement

return
// -------------------

best regards

kajot
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM
Re: error after run application
Posted: Sun Jun 17, 2007 10:30 AM

Your sample seems to work fine here.

EMG

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
error run application
Posted: Sun Jun 17, 2007 10:32 AM

Are you using the xharbour build that we provide with FWH 7.05 ?

Please try your code with the FiveTech provided xharbour build, thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion