Page 1 of 1

Error on c:\hmg.3.4.4\samples\controls\systemTray\notes

Posted: Fri Jun 01, 2018 12:09 am
by hmgchang
Dear Friends,

Tried to compile c:\hmg.3.4.4\samples\controls\systemTray\notes,
i got this error :
notes.prg(121) Error E0030 Syntax error "syntax error at 'CFORM'"
the code on notes.prg(121) is :

Code: Select all

DEFINE WINDOW &cForm ;
		AT nRow, nCol ;
		WIDTH 200 HEIGHT 180 ;
		TITLE DtoC(Date()) + " " + Time() ;
		ICON "TRAY" ;
		CHILD ;
		TOPMOST ;
		NOMINIMIZE NOMAXIMIZE NOSIZE ;
		ON INIT InitNotes(cForm) ;
		ON RELEASE CloseNotes(cForm, nForm) ;
		ON MOUSECLICK EditNotes(cForm) ;
		BACKCOLOR aColors[nColor] ;
		FONT 'MS Sans Serif' SIZE 10
i remember it use to work....
pls advise

TIA

best rgds,
Chang

Re: Error on c:\hmg.3.4.4\samples\controls\systemTray\notes

Posted: Tue Jun 05, 2018 7:34 pm
by gfilatov
hmgchang wrote: Fri Jun 01, 2018 12:09 am Dear Friends,

Tried to compile c:\hmg.3.4.4\samples\controls\systemTray\notes,
i got this error :

pls advise

TIA

best rgds,
Chang
Hello Chang,

Thanks for your bugreport :!:

Please be so kind to try the updated code below :arrow:

Code: Select all

/*
 * HMG - Harbour Win32 GUI library Demo
 *
 * Copyright 2002 Roberto Lopez <mail.box.hmg@gmail.com>
 * http://www.hmgforum.com//
*/

#include "hmg.ch"
#include "common.ch"

#define CRLF HB_OsNewLine()
#define PROGRAM 'Notes'
#define COPYRIGHT ' by Grigory Filatov, 2002'

#define MAXSHEETS 100
#define NTRIM( n ) LTrim( Str( n ) )
 
Static nWindows := 0, aWindows := {}, nRow := -22, nCol := -24, nColors := 0, ;
	aColors := { { 255 , 255 , 0 }, { 255 , 128 , 192 }, { 255 , 0 , 0 }, ;
		{ 255 , 0 , 255 }, { 255 , 128 , 64 }, { 0 , 255 , 0 }, { 128 , 0 , 128 }, ;
		{ 255 , 255 , 255 }, { 128 , 128 , 128}, { 0 , 0 , 255 }, { 192 , 192 , 192 } }, ;
	aNotes := { {"ID","N",4,0}, {"DATE","D",8,0}, {"TIME","C",8,0}, ;
			{"ROW","N",4,0}, {"COL","N",4,0}, {"COLOR","N",2,0}, ;
			{"TEXT1","C",24,0}, {"TEXT2","C",24,0}, {"TEXT3","C",24,0}, {"TEXT4","C",24,0} }

Function Main( cPack )
	Local lPack := .f.
	Private lExit := .f., lSound := .t., lHidden := .f., nSheets := 0

	Set Date German
	Set Delete On
   
   MsgInfo( "This program is based on a notify menu, Look at system tray to use..."  )

	DEFAULT cPack TO ""
	lPack := ( Empty(cPack) .OR. Upper( SubStr(cPack, 2) ) # "NOPACK" )

	DEFINE WINDOW Form_0 ;
		AT 0,0 ;
		WIDTH 0 HEIGHT 0 ;
		TITLE PROGRAM ;
		MAIN NOSHOW ;
		ON INIT OpenNotes(lPack) ;
		ON RELEASE {|| HideNotes(), lExit := .t., dbCloseAll(), Ferase( "Notes"+INDEXEXT() )} ;
		NOTIFYICON 'TRAY' ;
		NOTIFYTOOLTIP PROGRAM + ": Left click for a new sheet" ;
		ON NOTIFYCLICK NewNotes()

		DEFINE NOTIFY MENU 
			ITEM 'S&top All Sounds'  ACTION (lSound := !lSound, ;
							( Form_0.Sound.Checked := !lSound)) NAME Sound
			SEPARATOR
			ITEM '&Show All Notes'	  ACTION ShowNotes()
			ITEM '&Hide All Notes'	  ACTION HideNotes()
			SEPARATOR
			ITEM '&Mail to author...' ACTION ShellExecute(0, "open", "rundll32.exe", ;
							"url.dll,FileProtocolHandler " + ;
							"mailto:gfilatov@rambler.ru?cc=&bcc=" + ;
							"&subject=Notes%20Utility" + ;
							"&body=How%20are%20you%2C%20Grigory%3F", , 1)
			ITEM 'A&bout...'		ACTION ShellAbout( "", PROGRAM + ' version 1.4' + ;
					CRLF + Chr(169) + COPYRIGHT, LoadTrayIcon(GetInstance(), "MAIN") )
			SEPARATOR
			ITEM 'E&xit'		  ACTION Form_0.Release
		END MENU

		DEFINE TIMER Timer_1 ;
			INTERVAL 1000 ;
			ACTION CheckTopLeftCorner()

	END WINDOW

	Form_0.Sound.Checked := !lSound

	ACTIVATE WINDOW Form_0

Return Nil

*--------------------------------------------------------*
Function NewNotes()
*--------------------------------------------------------*
	Local cForm, nForm, nColor

	nWindows++
	nForm := nWindows
	cForm := 'Form_' + NTRIM(nForm)

	nSheets++
	IF nSheets > MAXSHEETS
		MsgStop( "Quantity of Sheets is Very Big!", "Stop!" )
		Return Nil
	ENDIF

	Form_0.NotifyTooltip := PROGRAM + ": " + NTRIM(nSheets) + " sheet(s)"

	nColors++
	IF nColors > 11
		nColors := 1
	ENDIF
	nColor := nColors

	nRow := nRow + 22
	nCol := nCol + 24
	IF nRow > GetDesktopHeight() - 200
		nRow := 0
		nCol := 200
	ENDIF

	DEFINE WINDOW &cForm ;
		AT nRow, nCol ;
		WIDTH 200 HEIGHT 180 ;
		TITLE DtoC(Date()) + " " + Time() ;
		ICON "TRAY" ;
		CHILD ;
		TOPMOST ;
		NOMINIMIZE NOMAXIMIZE NOSIZE ;
		ON INIT InitNotes(cForm) ;
		ON RELEASE CloseNotes(cForm, nForm) ;
		ON MOUSECLICK EditNotes(cForm) ;
		BACKCOLOR aColors[nColor] ;
		FONT 'MS Sans Serif' SIZE 10

		@ 6,12 LABEL Label_1 VALUE "" WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 6,10 TEXTBOX Text_1 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_2' , 'SetFocus' )
		@ 36,12 LABEL Label_2 VALUE "" WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 36,10 TEXTBOX Text_2 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_3' , 'SetFocus' )
		@ 66,12 LABEL Label_3 VALUE "" WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 66,10 TEXTBOX Text_3 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_4' , 'SetFocus' )
		@ 96,12 LABEL Label_4 VALUE "" WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 96,10 TEXTBOX Text_4 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Button_1' , 'SetFocus' )
		@ 125,35 LABEL Label_5 VALUE "Mouse Click for Editing" WIDTH 120 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			FONT "MS Sans Serif" SIZE 9 ;
			BACKCOLOR aColors[nColor]

		@ 126,60 BUTTON Button_1 CAPTION "OK" ACTION ExitEdit(cForm, nForm, nColor) WIDTH 70 HEIGHT 22 ;
			FONT "MS Sans Serif" SIZE 9

		DEFINE CONTEXT MENU 
			ITEM '&Hide a sheet' ACTION DoMethod (cForm,'Hide')
			SEPARATOR
			ITEM '&Stick a sheet' ACTION CompactNotes(cForm, nForm, nColor)
		END MENU

	END WINDOW

	SetProperty ( cForm , 'Text_1' , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_2' , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_3' , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_4' , 'Visible' , .f. )
	SetProperty ( cForm , 'Button_1' , 'Visible' , .f. )

	ACTIVATE WINDOW &cForm

Return Nil

*--------------------------------------------------------*
Procedure InitNotes(cForm)
*--------------------------------------------------------*
	IF lSound
		IF FILE("Open.wav")
			PLAY WAVE "Open.wav"
		ELSE
			PlayOk()
		ENDIF
	ENDIF

	AADD( aWindows, cForm )

Return

*--------------------------------------------------------*
Procedure CloseNotes(cForm, nId)
*--------------------------------------------------------*
	Local nForm := ASCAN( aWindows, cForm )

	IF lSound
		IF FILE("Open.wav")
			PLAY WAVE "Close.wav"
		ELSE
			PlayBeep()
		ENDIF
	ENDIF

	IF !lExit
		ADEL( aWindows, nForm )
		ASIZE( aWindows, Len(aWindows) - 1 )

		nSheets--
		Form_0.NotifyTooltip := PROGRAM + ": " + ;
			IF( Empty(nSheets), "Emptily", NTRIM(nSheets) + " sheet(s)" )

		Seek nId
		IF FOUND()
			IF Rlock()
				DELETE
				UnLock
			ENDIF
		ENDIF
	ENDIF

Return

*--------------------------------------------------------*
Procedure EditNotes(cForm)
*--------------------------------------------------------*

	SetProperty ( cForm ,'Label_5' , 'Visible' , .f. )

	SetProperty ( cForm ,'Text_1' , 'Visible' , .t. )
	SetProperty ( cForm ,'Text_2' , 'Visible' , .t. )
	SetProperty ( cForm ,'Text_3' , 'Visible' , .t. )
	SetProperty ( cForm ,'Text_4' , 'Visible' , .t. )
	SetProperty ( cForm ,'Button_1' , 'Visible' , .t. )

	DoMethod ( cForm , 'Text_1' , 'SetFocus' )

	IF lSound
		PlayBeep()
	ENDIF

Return

*--------------------------------------------------------*
Procedure ExitEdit(cForm, nId, nColor)
*--------------------------------------------------------*
	Local h := GetFormHandle( cForm )
	Local SaveRow := GetWindowRow( h ), ;
		SaveCol := GetWindowCol( h )
	Local cText1 := GetProperty ( cForm , 'Text_1' , 'Value' ), ;
		cText2 := GetProperty( cForm , 'Text_2' , 'Value' ), ;
		cText3 := GetProperty( cForm , 'Text_3' , 'Value' ), ;
		cText4 := GetProperty( cForm , 'Text_4' , 'Value' ), ;
		cTime := Time()

	Seek nId
	IF !FOUND()
		DBappend()
		IF Rlock()
			Replace ID WITH nId
			UnLock
		ENDIF
	ENDIF
	IF Rlock()
		Replace DATE WITH Date(), TIME WITH cTime, ;
			ROW WITH SaveRow, COL WITH SaveCol, ;
			COLOR WITH nColor, ;
			TEXT1 WITH cText1, TEXT2 WITH cText2, ;
			TEXT3 WITH cText3, TEXT4 WITH cText4
		Commit
		UnLock
	ENDIF

	SetProperty ( cForm , 'Label_1','Value' , cText1 )
	SetProperty ( cForm , 'Label_2','Value' , cText2 )
	SetProperty ( cForm , 'Label_3','Value' , cText3 )
	SetProperty ( cForm , 'Label_4','Value' , cText4 )

	SetProperty ( cForm , 'Text_1','Visible' , .f.   )
	SetProperty ( cForm , 'Text_2','Visible' , .f.   )
	SetProperty ( cForm , 'Text_3','Visible' , .f.   )
	SetProperty ( cForm , 'Text_4','Visible' , .f.   )
	SetProperty ( cForm , 'Button_1','Visible' , .f. )

	SetProperty ( cForm , 'Label_5','Value' , PadC( "Last Update: " + cTime, 25 ) )
	SetProperty ( cForm , 'Label_5','Visible' , .t. )

	IF lSound
		PlayBeep()
	ENDIF

Return

*--------------------------------------------------------*
Procedure SaveRowCol(cForm, nId)
*--------------------------------------------------------*
	Local h := GetFormHandle( cForm )
	Local SaveRow := GetWindowRow( h ), ;
		SaveCol := GetWindowCol( h )

	Seek nId
	IF FOUND()
		IF Rlock()
			Replace ROW WITH SaveRow, COL WITH SaveCol
			UnLock
		ENDIF
	ENDIF

Return

*--------------------------------------------------------*
Procedure HideNotes()
*--------------------------------------------------------*
	Local i, nForm := Len(aWindows), cForm

	if nForm > 0
		lHidden := .t.
		For i := nForm To 1 Step -1
			cForm := aWindows[i]
			If IsWIndowDefined(&cForm)
				SysWait()
				SaveRowCol( cForm, Val( SubStr( cForm, At( "_", cForm ) + 1 ) ) )
				DoMethod ( cForm , 'Hide' )
			EndIF
		Next
	endif

Return

*--------------------------------------------------------*
Procedure ShowNotes()
*--------------------------------------------------------*
	Local i, nForm := Len(aWindows), cForm

	if nForm > 0
		lHidden := .f.
		For i := 1 To nForm
			cForm := aWindows[i]
			If IsWIndowDefined(&cForm)
				SysWait()
				DoMethod ( cForm , 'Show' )
			EndIF
		Next
	endif

Return

*--------------------------------------------------------*
Procedure OpenNotes(lPack)
*--------------------------------------------------------*
   LOCAL cDataBase := "Notes.dat"
   PRIVATE cActForm := {}

   If !File( cDataBase )
      DBcreate( cDataBase, aNotes )
   EndIF

   If lPack
	USE ( cDataBase ) NEW
	If !NetErr()
		PACK
		DBEVAL( {|| FIELD->ID := RecNo() } )
		CLOSE
	EndIF
   EndIF

   USE ( cDataBase ) ALIAS NOTES SHARED NEW

   If !NetErr()
      If !File( ( "Notes"+INDEXEXT() ) )
         INDEX ON FIELD->ID TO NOTES
      EndIF
      SET INDEX TO NOTES
   Else
      MsgStop("Data file is locked", "Please, try again")
	Return
   EndIF

   GO BOTTOM
   nWindows := FIELD->ID

   GO TOP
   DO WHILE !EOF()
	LoadNotes( FIELD->ID, FIELD->DATE, FIELD->TIME, ;
		FIELD->ROW, FIELD->COL, FIELD->COLOR, ;
		FIELD->TEXT1, FIELD->TEXT2, FIELD->TEXT3, FIELD->TEXT4 )
	SKIP
   ENDDO

   IF LEN( cActForm ) > 0
	_ActivateWindow( cActForm )
   ENDIF

Return

*--------------------------------------------------------*
Procedure LoadNotes(nId, dDate, cTime, SaveRow, SaveCol, nColor, cText1, cText2, cText3, cText4)
*--------------------------------------------------------*
	Local cForm := 'Form_' + NTRIM(nId)

	nSheets++
	IF nSheets > MAXSHEETS
		MsgStop( "Quantity of Sheets is Very Big!", "Stop!" )
		Return
	ENDIF

	Form_0.NotifyTooltip := PROGRAM + ": " + NTRIM(nSheets) + " sheet(s)"

	DEFINE WINDOW &cForm ;
		AT SaveRow, SaveCol ;
		WIDTH 200 HEIGHT 180 ;
		TITLE DtoC(dDate) + " " + cTime ;
		ICON "TRAY" ;
		CHILD ;
		TOPMOST ;
		NOMINIMIZE NOMAXIMIZE NOSIZE ;
		ON INIT InitNotes(cForm) ;
		ON RELEASE CloseNotes(cForm, nId) ;
		ON MOUSECLICK EditNotes(cForm) ;
		BACKCOLOR aColors[nColor] ;
		FONT 'MS Sans Serif' SIZE 10

		@ 6,12 LABEL Label_1 VALUE cText1 WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 6,10 TEXTBOX Text_1 VALUE cText1 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_2' , 'SetFocus' )
		@ 36,12 LABEL Label_2 VALUE cText2 WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 36,10 TEXTBOX Text_2 VALUE cText2 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_3' , 'SetFocus' )
		@ 66,12 LABEL Label_3 VALUE cText3 WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 66,10 TEXTBOX Text_3 VALUE cText3 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Text_4' , 'SetFocus' )
		@ 96,12 LABEL Label_4 VALUE cText4 WIDTH 168 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			BACKCOLOR aColors[nColor]
		@ 96,10 TEXTBOX Text_4 VALUE cText4 HEIGHT 22 WIDTH 172 MAXLENGTH 24 ;
			ON ENTER DoMethod ( cForm , 'Button_1' , 'SetFocus' )
		@ 125,35 LABEL Label_5 VALUE "Mouse Click for Editing" WIDTH 120 HEIGHT 22 ;
			ACTION EditNotes(cForm) ;
			FONT "MS Sans Serif" SIZE 9 ;
			BACKCOLOR aColors[nColor]

		@ 126,60 BUTTON Button_1 CAPTION "OK" ACTION ExitEdit(cForm, nId, nColor) WIDTH 70 HEIGHT 22 ;
			FONT "MS Sans Serif" SIZE 9

		DEFINE CONTEXT MENU 
			ITEM '&Hide a sheet' ACTION DoMethod (cForm,'Hide')
			SEPARATOR
			ITEM '&Stick a sheet' ACTION CompactNotes(cForm, nId, nColor)
		END MENU

	END WINDOW

	SetProperty ( cForm , 'Text_1'   , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_2'   , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_3'   , 'Visible' , .f. )
	SetProperty ( cForm , 'Text_4'   , 'Visible' , .f. )
	SetProperty ( cForm , 'Button_1' , 'Visible' , .f. )

	AADD( cActForm, cForm )

Return

*--------------------------------------------------------*
Procedure CompactNotes(cForm, nForm, nColor)
*--------------------------------------------------------*
   Local h := GetFormHandle( cForm ), dDate, cTime
   Local SaveRow := GetWindowRow( h ), ;
	   SaveCol := GetWindowCol( h )
   Local cText1 := GetProperty ( cForm , 'Text_1', 'Value' ), ;
	   cText2 := GetProperty ( cForm , 'Text_2', 'Value' ), ;
	   cText3 := GetProperty ( cForm , 'Text_3', 'Value' ), ;
	   cText4 := GetProperty ( cForm , 'Text_4', 'Value' )
   PRIVATE cActForm := {}

   Seek nForm
   IF FOUND()
	dDate := FIELD->DATE
	cTime := FIELD->TIME

	lExit := .t.
	DoMethod ( cForm , 'Release' )
	Doevents()

	DEFINE WINDOW &cForm ;
		AT SaveRow+22, SaveCol ;
		WIDTH 196 HEIGHT 106 ;
		CHILD ;
		TOPMOST NOCAPTION ;
		NOMINIMIZE NOMAXIMIZE NOSIZE ;
		ON INIT (lExit := .f.) ;
		ON MOUSECLICK ( DoMethod( cForm ,'Release'), Doevents(), ADEL( aWindows, nForm ), ;
			ASIZE( aWindows, Len(aWindows) - 1 ), nSheets--, ;
			LoadNotes( nForm, dDate, cTime, SaveRow, SaveCol, nColor, ;
			cText1, cText2, cText3, cText4 ), _ActivateWindow( {cForm} ) ) ;
		BACKCOLOR aColors[nColor] ;
		FONT 'MS Sans Serif' SIZE 10

		@ 6,12 LABEL Label_1 VALUE cText1 WIDTH 168 HEIGHT 22 ;
			ACTION ( DoMethod( cForm,'Release' ), Doevents(), ADEL( aWindows, nForm ), ;
			ASIZE( aWindows, Len(aWindows) - 1 ), nSheets--, ;
			LoadNotes( nForm, dDate, cTime, SaveRow, SaveCol, nColor, ;
			cText1, cText2, cText3, cText4 ), _ActivateWindow( {cForm} ) ) ;
			BACKCOLOR aColors[nColor]
		@ 30,12 LABEL Label_2 VALUE cText2 WIDTH 168 HEIGHT 22 ;
			ACTION ( DoMethod( cForm ,'Release'), Doevents(), ADEL( aWindows, nForm ), ;
			ASIZE( aWindows, Len(aWindows) - 1 ), nSheets--, ;
			LoadNotes( nForm, dDate, cTime, SaveRow, SaveCol, nColor, ;
			cText1, cText2, cText3, cText4 ), _ActivateWindow( {cForm} ) ) ;
			BACKCOLOR aColors[nColor]
		@ 54,12 LABEL Label_3 VALUE cText3 WIDTH 168 HEIGHT 22 ;
			ACTION ( DoMethod( cForm ,'Release'), Doevents(), ADEL( aWindows, nForm ), ;
			ASIZE( aWindows, Len(aWindows) - 1 ), nSheets--, ;
			LoadNotes( nForm, dDate, cTime, SaveRow, SaveCol, nColor, ;
			cText1, cText2, cText3, cText4 ), _ActivateWindow( {cForm} ) ) ;
			BACKCOLOR aColors[nColor]
		@ 78,12 LABEL Label_4 VALUE cText4 WIDTH 168 HEIGHT 22 ;
			ACTION ( DoMethod( cForm ,'Release'), Doevents(), ADEL( aWindows, nForm ), ;
			ASIZE( aWindows, Len(aWindows) - 1 ), nSheets--, ;
			LoadNotes( nForm, dDate, cTime, SaveRow, SaveCol, nColor, ;
			cText1, cText2, cText3, cText4 ), _ActivateWindow( {cForm} ) ) ;
			BACKCOLOR aColors[nColor]

	END WINDOW

	ACTIVATE WINDOW &cForm
   ELSE
	MsgStop( "Empty notes!", "Stop!" )
   ENDIF

Return

*--------------------------------------------------------*
Function CheckTopLeftCorner()
*--------------------------------------------------------*
   Local aPos := GetCursorPos()

   IF aPos[1] = 0 .AND. aPos[2] = 0
	IF lHidden
		ShowNotes()
	ELSE
		HideNotes()
	ENDIF
   ENDIF

Return NIL

*--------------------------------------------------------*
Procedure SysWait(nWait)
*--------------------------------------------------------*
Local iTime := Seconds()

	DEFAULT nWait TO .1

	Do While Seconds() - iTime < nWait
		DO EVENTS
	EndDo

Return
In hope that helps.

Re: Error on c:\hmg.3.4.4\samples\controls\systemTray\notes

Posted: Tue Jun 05, 2018 8:30 pm
by hmgchang
Thanks Mr. Filatov,

I updated the notes.prg and built,
unsuccessful with this build.log

Code: Select all

hbmk2: Compiling Harbour sources...
Harbour 3.2.0dev (r1703241902)
Copyright (c) 1999-2016, http://harbour-project.org/

notes.prg(28) Warning W0002  Ambiguous reference, assuming memvar 'NSHEETS'

notes.prg(28) Warning W0002  Ambiguous reference, assuming memvar 'LHIDDEN'

notes.prg(28) Warning W0002  Ambiguous reference, assuming memvar 'LSOUND'

notes.prg(28) Warning W0002  Ambiguous reference, assuming memvar 'LEXIT'

notes.prg(47) Warning W0001  Ambiguous reference 'LEXIT'

notes.prg(51) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(51) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(51) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(73) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(88) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(88) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(89) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(94) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(121) Error E0030  Syntax error "syntax error at 'CFORM'"

notes.prg(172) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(189) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(197) Warning W0001  Ambiguous reference 'LEXIT'

notes.prg(201) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(201) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(203) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(203) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(230) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(280) Warning W0001  Ambiguous reference 'LSOUND'

notes.prg(309) Warning W0001  Ambiguous reference 'LHIDDEN'

notes.prg(328) Warning W0001  Ambiguous reference 'LHIDDEN'

notes.prg(344) Warning W0002  Ambiguous reference, assuming memvar 'CACTFORM'

notes.prg(382) Warning W0001  Ambiguous reference 'CACTFORM'

notes.prg(383) Warning W0001  Ambiguous reference 'CACTFORM'

notes.prg(393) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(393) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(394) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(399) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(413) Error E0030  Syntax error "syntax error at 'CFORM'"

notes.prg(457) Warning W0001  Ambiguous reference 'CACTFORM'

notes.prg(471) Warning W0002  Ambiguous reference, assuming memvar 'CACTFORM'

notes.prg(478) Warning W0001  Ambiguous reference 'LEXIT'

notes.prg(494) Error E0030  Syntax error "syntax error at 'CFORM'"

notes.prg(494) Warning W0001  Ambiguous reference 'LEXIT'

notes.prg(494) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(494) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(501) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(501) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(507) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(507) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(513) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(513) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(519) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(519) Warning W0001  Ambiguous reference 'NSHEETS'

notes.prg(536) Warning W0001  Ambiguous reference 'LHIDDEN'

3 errors

No code generated.
hbmk2[notes]: Error: Running Harbour compiler (embedded). 1
(C:\hmg.3.4.4\harbour\bin\harbour.exe) -n2 notes.prg -w1 -DHBMK_HAS_HMG32=1 -q -o.hbmk\win\mingw\ -iC:\hmg.3.4.4\harbour\include -i. -iC:\hmg.3.4.4\include

this is the error lines,

notes.prg(121) Error E0030 Syntax error "syntax error at 'CFORM'"
notes.prg(413) Error E0030 Syntax error "syntax error at 'CFORM'"
notes.prg(494) Error E0030 Syntax error "syntax error at 'CFORM'"


I think its about using macro at DEFINE WINDOW &cForm.
I remember it used to work with previous version of HMG.

Re: Error on c:\hmg.3.4.4\samples\controls\systemTray\notes

Posted: Sun Jun 10, 2018 9:53 pm
by hmgchang
Good Morning Friends,

I still stuck in this :
DEFINE WINDOW &cForm

Anyone pls advise on how to name a window by variable

TIA

best rgds,
Chang