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

Recent content by Gamecock

  1. Gamecock

    Null instance handle

    You are probably trying to do a calculation with a NULL value. Set the initial value to zero.
  2. Gamecock

    Excel Export in Ladscape

    Go to Tools>Page Setup and set your page to Landscape.
  3. Gamecock

    Exporting to excel worksheets

    Try This. It is a function I call from an Actuate report. -------------------------------------------------------- Class ExcelExportVisitor Subclass of AcVisitor Dim theExcelApp As AcExcelApp Dim theExcelWorkbook As AcExcelWorkbook Dim theExcelWorksheet As AcExcelWorksheet Dim...
  4. Gamecock

    User input range of dates and times for a report

    Write a .asp page and input the date and time into a table. Then read the table and write the date and time to a varible. Then use the varibles in your sql. Hope this helps.
  5. Gamecock

    Dynamic Array

    Use "Redim Preserve" before loading values in array
  6. Gamecock

    Dynamic Array

    I am creating a dynamic array in a .bas file Example : Global event_good() Trying to load value here ' Array created in browserlib.bas event_good(count_add) = EventRow.event_number I get the follwoing error message. "Illegal Array Reference" My question, how do you load a value in a dynamic...
  7. Gamecock

    ASAP PLEASE!!!

    Do a Google search on both. I am sure you will find what your are looking for.
  8. Gamecock

    Right Click PopUp Menu

    I am using PB 8.0 In my datawindow if you right click you get a menu with the following options, Insert, Add and Delete , along with several others which are disabled. How can I turn off this menu? It does not show up on my tfc_report menus only on the tfc_datawindow menus.
  9. Gamecock

    Bar Chart Spacing

    In Actuate 7, how do you remove the spaces between the bars in a 2D Bar chart?
  10. Gamecock

    Actuate Dual Y-Axis

    I am trying to build a bar chart with a dualY-axis. I have not been able to find much information on this type of graph. Can someone please point me to a knowledge base or white paper that explains this type of graph in detail.
  11. Gamecock

    Formating Y axis value

    Set your YLabelStyle in Y-Axis group property to ChartCustomLabel and override ComputeLabel method or ComputeMinMax depending on situation.
  12. Gamecock

    Migration From PB 6.5 to PB 8.0

    I am trying to migrate from PowerBuilder 6.5 to 8.0 I am using PFC and an Oracle 7.3 database. I have run the migration and things went pretty smooth. I can read data from my datawindows, etc.. Here is the problem. When I try to run the application inside the software I get the following...
  13. Gamecock

    SAVE AS to Excel with Dates

    Try sort() before writing to excel

Part and Inventory Search

Back
Top