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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bianliaw

    Change logo in FOXPRO DOS

    my installation disc has broken... any idea ? Thanks
  2. bianliaw

    Change logo in FOXPRO DOS

    anyone know how to change the word " registered to : " in flash screen when running foxpro dos ?. Thanks.
  3. bianliaw

    Use Variable in FormulaR1C1

    I have program like this [code/] Public Function aUnit(Element As Integer) aUnit = Array("AA", "AB", "AC")(Element) End Function Private Sub Refresh_Click() For nLoop = 0 To nMaxUnit cUnit = aUnit(nLoop) For nCol = 21 To 25 For nRow = 8 To nMaxRow...
  4. bianliaw

    how to declare Public statement

    Thanks.. PHV how about public variable / const, can I put in module then use in workbook's code or use in user form's code ?. TIA.
  5. bianliaw

    how to declare Public statement

    Thanks TonyJollans, PH and Geoff Tony's code can solve it. In my excel I have workbook's code and user form's code. I put public function aX in workbook's code but form's code can not recognize it... so where should I put public function aX ?. or I have to make both in workbook's code...
  6. bianliaw

    how to declare Public statement

    My program like this. Option Explicit Public aX(4) as string aX = array('sheet1','sheet2','sheet3','sheet4','sheet5') ---------------------------- Private Sub Workbook_BeforeClose(Cancel As Boolean) For nLoop = 0 To 4 cX = aX(nLoop) Sheets(cX).Visible = xlVeryHidden...
  7. bianliaw

    how to declare Public statement

    How to use public statement for an array that we can use in any procedure/function ?. Thanks.
  8. bianliaw

    FOX DOS 2.6 in XP checking exist directory

    RR I am using syntax (file("C:\TEMP\NUL")) to check that directory "c:\temp" exist or not, in windows XP didn't work. can anyone help me, please.... TIA
  9. bianliaw

    FOXPRO PLB

    Still same Rob. There is error. TIA.
  10. bianliaw

    FOXPRO PLB

    Rob. there is error when compile : wmake /f doswat.mak PLBNAME=curdrive MODEL=1 the error is : This is an OS/2 32-bit executable I am using win XP and I've tried at win 98 too. TIA
  11. bianliaw

    FOXPRO PLB

    Thanks Rob ..... I will try it. TIA
  12. bianliaw

    FOXPRO PLB

    I have Foxpro Version 2.6a, and I have library kit too. can you help me explain how to build PLB file (may be a litle example). please... TIA. Bian
  13. bianliaw

    FOXPRO PLB

    I need help how to build file *.PLB. can anyone help me the steps, pleasseee. TIA

Part and Inventory Search

Back
Top