Add Dynamic Library For Executing In PowerBuilder
in Powerbuilder for large projects, build exe is slow and long and many people join the same project when adding a library to rebuild the exe. You can not just rebuild a library you are working on or add a new library without affecting deploying by dynamically adding the exe. by using the library list ini file at program start-up or adding the library whenever you use it
1 2 3 4 5 6 7 8 9 10 11 12 |
// already compiled If Handle(GetApplication()) <> 0 Then String ls_librarylist, ls_library Int li_FileNum ls_librarylist = GetLibraryList () ls_library = sle_lib.Text If IsNull(ls_library) Then ls_library = "" If Len(ls_library) <= 0 Then Return If Pos(ls_librarylist,ls_library) > 0 Then Return AddToLibraryList(ls_library) End If |
Find Projects On Github click here
Good Luck!
Subscribe
Login
0 Comments