error run application

Post Reply
User avatar
kajot
Posts: 309
Joined: Thu Nov 02, 2006 6:53 pm
Location: Poland

error run application

Post by kajot »

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
---------------------------
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

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
User avatar
kajot
Posts: 309
Joined: Thu Nov 02, 2006 6:53 pm
Location: Poland

error run application

Post by kajot »

I am using xHarbour Compiler build 0.99.70 (SimpLex)
and FWH 7.05 ( operation system Windows XP)
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

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
User avatar
kajot
Posts: 309
Joined: Thu Nov 02, 2006 6:53 pm
Location: Poland

error after run application

Post by kajot »

when I run application
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

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

Antonio Linares
www.fivetechsoft.com
User avatar
kajot
Posts: 309
Joined: Thu Nov 02, 2006 6:53 pm
Location: Poland

error after run application

Post by kajot »

#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
// -------------------
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

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
Post Reply