Hi,
I screwed something up in the code below it is giving me the following error message: Error 519 in C:\Users\brian~1\Desktop\SuperFind.bas(134:027) Missing declaration L1 LISTBOX ADD hDlg,L1, USING$("Yahoo,Excite",i)
So there is a missing declaration but I don't know what
and also I want to add a list of items to the listbox and am not sure if I am doing it right.
FUNCTION SampleListBox(BYVAL hDlg AS DWORD, BYVAL lID AS LONG, BYVAL lCount _
AS LONG) AS LONG
LOCAL i AS LONG
FOR i = 1 TO lCount
LISTBOX ADD hDlg, L1, USING$("Yahoo,Excite", i)
NEXT i
END FUNCTION
I screwed something up in the code below it is giving me the following error message: Error 519 in C:\Users\brian~1\Desktop\SuperFind.bas(134:027) Missing declaration L1 LISTBOX ADD hDlg,L1, USING$("Yahoo,Excite",i)
So there is a missing declaration but I don't know what
and also I want to add a list of items to the listbox and am not sure if I am doing it right.
FUNCTION SampleListBox(BYVAL hDlg AS DWORD, BYVAL lID AS LONG, BYVAL lCount _
AS LONG) AS LONG
LOCAL i AS LONG
FOR i = 1 TO lCount
LISTBOX ADD hDlg, L1, USING$("Yahoo,Excite", i)
NEXT i
END FUNCTION
Comment