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 TouchToneTommy 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 onedunpark

  1. onedunpark

    Printing directly to printer

    Found the answer separately from MisterMo's suggestion. However, many thanks for their input which is greatly appreciated. For interests sake, in basic terms, here is the solution I came up with Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.Shared Dim...
  2. onedunpark

    Printing directly to printer

    Hi, This will no doubt be embarrasingly easy, but I'm stumped. VS 2003 Pro/CR 11 Developer Edition Am printing reports to a Report Viewer and then from there my users can print/export as appropriate. How do/can I bypass the viewer form entirely and (based on their choice from my calling...
  3. onedunpark

    Finding files modified after a specific date/time

    Hi, Re: VB.net 2003 I was wondering if anyone knew of a way to find files in a specified location based on their date and time, without recursively having to loop round the directory and it's subs, checking each file individually. I need to quickly put together a simple directory/file...
  4. onedunpark

    Suppressing XML-based subreports if the underlying file does not exist

    chelseatech, Thanks for the post. This app will be deployed to 50 users in our organisation. I'd be grateful if you could let me know how this will affect the licencing of the dll. I'm assuming we'd have to distribute it with the app and register locally on all machines that will run the...
  5. onedunpark

    Dataset to XML - How to include "Null"/blank columns

    JontyMC, Thanks for the reply. Greatly appreciated. Steven
  6. onedunpark

    Suppressing XML-based subreports if the underlying file does not exist

    Hi, Have tried that in the Sections Expert, but the hyperlink for the sub-report is still displayed (these are on-demand subreports) and on clicking the hyperlink I am presented with a logon prompt to choose a datasource. I have my main report in the first Details section and all other...
  7. onedunpark

    Dataset to XML - How to include "Null"/blank columns

    Hi, I have a dataset where some of the values are "". When writing the dataset to XML using the following approach, it only writes those columns that have values. I really need all columns to be written to the file regardless of whether or not a value exists. Dim objAdapter As...
  8. onedunpark

    Suppressing XML-based subreports if the underlying file does not exist

    Hi, Using CR.NET (version included with VB.NET 2003 Pro Edition) I have (owing to my inability to access my legacy database directly), created a number of XML data files for each element (page) of my report. I have on-demand subreports defined based on each of these data files. The...
  9. onedunpark

    CR (VB.net 2003), ODBC datasources - problems connecting

    Hi, CR for VB.net 2003 Professional edition Rbase 6.5 ++ database Oterro 2.6 ODBC database driver Running VB.net 2003, I have no problems accessing my legacy databases in multi-user mode using the following DSN(less) connection string: "Driver=Oterro Database Driver...
  10. onedunpark

    Handling errors in/from stored procs

    Hi again, I should have said that the failing update is actually an UPDATE command created as a string (@SQLstring) and run as follows: exec sp_executesql @SQLstring I do know that I can call my SP as follows: declare @vretcode int, @vsetindexno int set @vsetindexno = 592 exec @vretcode =...
  11. onedunpark

    Handling errors in/from stored procs

    Hi, I have an Insert trigger that amongst other things fires a Stored Proc to perform additional updating. One of the updates in the Stored Proc tries to update a column with data that is too long to fit. The Stored proc, when run in isolation as follows: declare @vsetindexno int set...
  12. onedunpark

    Checking for existence of live row using variable table/column values

    Hi all, Apologies in advance for what is likely to be the sheer obviousness of the answer to this one ** All data values are (I believe) correctly defined/datatyped and do exist prior to me running the command. It's simply a matter of the live row not existing that I'm concerned about The...
  13. onedunpark

    creating stored procedure to handle dynamic table/column lookup

    Hello, I have a (what I refer to as a) data translation table that I use to identify the target table, data column and index column for a set of updates. Effectively, in really simple terms, I'd like to be able to pass the table name, column name and index column as parameters to an sp, which...
  14. onedunpark

    Rounding Up

    This is going to be such an easy one, I'm sure, but I can't find anything about it elsewhere. Is there a command (ideally I'd like to run this in a trigger) to allow me to round a value up to the nearest multiple of 5 (or whatever other whole unit I wish) (e.g., 12.5 gets rounded up to 15)...

Part and Inventory Search

Back
Top