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 strongm 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: *

  • Users: kken
  • Order by date
  1. kken

    Automate visio from VB

    Hey RKondoudis: The code is compiled in VB. The program runs the orgwiz then saves the file then closes. It's been a while since I worked on it but it worked well. I've never used peoplesoft so I can't help you there. Good Luck Ken
  2. kken

    Org Chart Wizard - Ordering incorrect

    Hi all: I read in a csv file and create a visio doc using the Org chart wizzard. It works perfectly except for the ordering. It seems to order randomly instead of the order in the file. 'START THE ORG CHART WIZ objVisio = CreateObject("Visio.Application") objAddOn =...
  3. kken

    Automate visio from VB

    Hi all: Thanks for your efforts. Here is the solution I came up with. Dim objVisio As Object Dim objAddOn As Object 'START THE ORG CHART WIZ objVisio = CreateObject("Visio.Application") objAddOn = objVisio.Addons.ItemU("OrgCWiz") objAddOn.Run("/S-INIT") ' add your arguments...
  4. kken

    Automate visio from VB

    Hi all: I am using VB.net and Visio 2003. I am trying to take an excel file and make a visio file. I can actually use a .bat file to create the visio file using this command: c:\Program Files\Microsoft Office\Visio11\DLL\OrgWiz.exe" \wait /FILENAME=C:\Documents and Settings\cdaniels\My...
  5. kken

    onDemand Subreport

    I have a report and subreport both running of an ADO recordset using an .ttx file. This part I have working well. The subreport is an on-demand subreport. What I want is to be prompted for values which I can use in calculations. The parameter, lets say param1 is numeric and has prompting text...
  6. kken

    onDemand Subreport

    Hi pelajhia: I do have the param on the report and specified prompting text. It still does not promt me for the param.
  7. kken

    onDemand Subreport

    Hi All: I have a report running of an ado recordset using the ttx file. I am tring to create an ondemand subreport that will prompt me for parameters and do some calculations. The problem is I can not get the subreport to prompt for parameter or even link properly, meaning no records in the...
  8. kken

    Dataset and Crystal 9

    This link should give you what you need...
  9. kken

    Shared Variable in Select Expert

    Excelent works great! Thanks mbarron
  10. kken

    Shared Variable in Select Expert

    Hi All: I have a main report which takes in a date parameter. I need to get all the records in the subreport which have a date less then the parameter. I tried placing the parameter in a shared variable but the select expert will not allow me to use the shared var there. Any ideas will...
  11. kken

    Input data on report

    Thanks for all the info guys I'll give that a try and let you know how it goes.
  12. kken

    Input data on report

    So does that mean there is no way to actually have them enter the information on the report rather then being prompted?
  13. kken

    Input data on report

    The report must be displayed first showing the totals. Then I need to let the user enter information such as hours, wages, consulting fees, etc. Then take that info and calculate with the existing totals.
  14. kken

    Input data on report

    It is close to a parameter field. What I need to accomplish is to allow the user to input values on the report. Then I need to use those values to calculate another part of the report. I am not sure if it is possible to trigger an event or something to accomplish this. Any more thoughts would be...
  15. kken

    Input data on report

    Hello all: I have been asked to create a report which takes in some values on the report itself. I started with a text object which does allow the input of text. However, I can't seem to refere to the text object to retrieve the value to use in my report. Any help with this problem...
  16. kken

    Query using list

    Hi All: I passed a comma delimited list of user ids into a parameter. The in the select record use ToText({USERS.user_id}, 0) in {?UserIDs} The problem is, if the list = 1211,1311,1411, then it will pick up Users with ids of 211 and 131 and 411. Is there a way in crystal to...
  17. kken

    Change DSN through url

    Hi Everyone: I have seen the question: How do you change the dsn through the url, but have not seen any answers. Does anyone know if this can be done through the web, mabey with the use of asp or cold fussion. Any comments would be appriciated. Thank you
  18. kken

    Blank Report

    Thank you for trying
  19. kken

    Blank Report

    There is nothing except the blank page
  20. kken

    Blank Report

    No just one blank page, no page breaks inserted.

Part and Inventory Search

Back
Top