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 SkipVought 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. jjoy123123

    Create site from template losing the links

    As a matter of fact, it did have commas in it. It actually had 2 in a row, and when you bring up the link to edit it, it only shows 1 of them. Therefore when it tries to create a new site using those links, they are broken and hence, the new links are not created. It is weird, though. When...
  2. jjoy123123

    Create site from template losing the links

    When I save a site as a template and include content, I have 7 links that should copy over. When I create a new site based on this template, the new site will have 7 links but only 4 actually contain any text. The other 3 are completely blank. The only thing you see beside them are the bullet...
  3. jjoy123123

    When creating a site template, SP lost my links and custom views

    I have a website in Sharepoint 2007 with about 5 different web parts on the home page. I have customized each of the "current views" on those 5 web parts to the way I want to see them. I also have about 10 links stored in a "links" list as well. I then go "Save Site as a Template" with...
  4. jjoy123123

    Unable to add version comments if uploading multiple files?

    I am uploading muliple files at once into Sharepoint. However when I do this, I am not given the option to add "version comments" on each of the files I have selected. Has anyone else had this problem? Or knows how to get around it?
  5. jjoy123123

    Excel formatting incorrectly

    I'm trying to pass the value of varValue over to Excel. varValue is equal to 0.015 but Excel is reading it as 0.0149999996647239. The cell I'm populating in Excel is formatted as Number with 2 decimal places. Instead of showing .02, it is showing .01. Why is that? Private Sub...
  6. jjoy123123

    Setting Form.Action in Javascript - not submitting to correct page

    That worked, thank you!!! That was driving me crazy - no one noticed it before now.
  7. jjoy123123

    Setting Form.Action in Javascript - not submitting to correct page

    I want to submit my form (using Javascript) when a user clicks on the Save button. However, its not submitting to the Save_Call.asp page - it's just submitting the form to the page I am on. I know that the submit code is running because I can watch the page refresh. If it's making it to the...
  8. jjoy123123

    Object required error when referencing form

    I finally got it to work! It only worked once I set the form ID="DetailForm". Apparently it would not recognize DetailForm unless its ID was set. Any ideas on why this would happen?
  9. jjoy123123

    Object required error when referencing form

    I'm getting a run-time error "Object Required 'DetailForm'" on the following Validate function when it executes the IsDate line. Why won't it recognize the DetailForm as the form name? FYI - I'm using VB Script because I'm working on the intranet where everyone uses IE. Any...
  10. jjoy123123

    Suppress 0 in line graph

    Well, for that particular graph I want the records that do not contain a null value, but since I have other information I need on that same record, I don't want them excluded. For example, in a given record I have Blood Pressure, Weight, and Height. I have graphs for all 3 of these. I can't...
  11. jjoy123123

    Suppress 0 in line graph

    I've set up a line graph in Crystal 8.0. When the graph encounters a blank record (value is NULL not 0), the graph displays properly as long as I'm running the report within Crystal Report Designer - you don't see a data point for that record. The line discontinues at this point and then picks...
  12. jjoy123123

    Excel.SaveWorkspace not working...

    Thanks, Mark! It works perfectly now!
  13. jjoy123123

    Excel.SaveWorkspace not working...

    I'm opening an excel spreadsheet from my VB code, and to avoid the user being prompted to save changes, I am trying to save the spreadsheet in the code. Here's what I've got (xlsGraph is defined as a new Excel.application): xlsGraph.Workbooks.Open...
  14. jjoy123123

    Closing Excel from VB6

    I've figured out a solution. I took the code HobbitK gave me and I execute it once a user selects a graph. That way, I will always kill Excel prior to pulling up a graph. When the user exits the Graph Menu form, I also use the same code. If objExcel Is Nothing Then Do Events Else...
  15. jjoy123123

    Passing date parameter to Crystal - won't work

    I tried .ParameterFields(1) = "DOB;" & Format$(txtDOB.Text, "yyyy,mm,dd") & ";True" It still wouldn't display the report.
  16. jjoy123123

    Closing Excel from VB6

    Once I close the form that calls Excel, I can get that instance of Excel to quit. Here's the scenario - the form consists of several buttons that display different graphs in Excel. Once you've viewed one (and then exit Excel), I would like for to be able to view another one without closing...
  17. jjoy123123

    Closing Excel from VB6

    I'm trying to close my excel application after displaying the spreadsheet. I know that in order to release the memory, I have to: excel.application.close excel.application = nothing However, since I'm displaying the Excel report, the user closes it by clicking on the X in the Excel window...
  18. jjoy123123

    Passing date parameter to Crystal - won't work

    I'm trying to pass a date parameter from VB6 to Crystal 8.0. The text parameter is working, but I can not get the date to pass. Any suggestions? Here's my code: With CrystalReport1 .ReportFileName = App.Path & "\PatientReport.rpt" .ParameterFields(0) =...
  19. jjoy123123

    Format HTML to be centered vertically

    Here's the problem - I have a table that has 3 cells with another table embedded in the middle cell. I want everything in the main table to be centered vertically. However, the middle cell seems to be pushing the contents to the top of the cell instead of centering it in the middle. Please...
  20. jjoy123123

    Invalid File Link - Not Indexed Field

    I'm trying to link 3 queries I created in Access 2000. When I try to link them, I get the error "Invalid File Link - Not an Indexed Field". How do I get around this? My report won't work correctly.

Part and Inventory Search

Back
Top