Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Load Label error/not doing anything

Status
Not open for further replies.

ngerman01

Programmer
Oct 2, 2003
10
US
I am trying to load a label on labeling software thru vba, i am not sure what the function should be. In the labeling software guide they give this function:

Public Function LoadLabel(strLBL File As String)As Interger

I am not sure on how to impliment that into the program
 
Put this in the general declarations section of the module..

Public Function LoadLabel(strLBL File As String)As Integer
code for function
end function

Then put something like this in the form load event or later in the module ....

loadlabel ("stringlabelfile.lbl")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top