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. jmorgan

    Passing multiple values to a parameter using RAS

    In a code sample I've seen pipes | separating the values and those seem to work, but I wouldn't get hopes up.
  2. jmorgan

    Change Paper Orientation with no printer

    You do need a printer installed, but the printer/printer connection does not have to physically exist.
  3. jmorgan

    carriage return

    This may or may not seem obvious, but is the mode property set to multiline? I'm assuming by the prefix txt that it is a textbox. Another option might be to try using chr(13) instead of vbcrlf, although I think it translates to the same thing.
  4. jmorgan

    datagrid does not display on mac

    This issue is limited to mac users viewing a datagrid on an aspx page. When a page loads that has a standard datagrid on it, the datagrid does not display. However, when the user clicks on another page (let's just say it's a static page) and then clicks back, the data is there. They are using...
  5. jmorgan

    Disabling a trigger within a trigger??

    Another approach is to create a table that stores trigger names and flags. Example: trigger_name, flag_value. Data would be "my_trigger", 0. When you are in the trigger, simply read from the table and put an "if" condition to see if the trigger should execute based on the...
  6. jmorgan

    Error 458

    I know this is an older post, but I recently got the same error when trying to access data from an oracle db. Solutions would be appreciated, if anyone knows of any.
  7. jmorgan

    Writing to the NT Event Log using VB

    Yep, know about that and it's not really a problem. My app is up and running now. Thanks!
  8. jmorgan

    Writing to the NT Event Log using VB

    Am I the first to answer my own question? In any case... the solution is simple: Call App.StartLogging("", vbLogToNT) '-- Log Events to NT Call App.LogEvent("Info", vbLogEventTypeInformation) Call App.LogEvent("Error", vbLogEventTypeError) Call...
  9. jmorgan

    Writing to the NT Event Log using VB

    I'd like to write to the NT Event Log as part of my error handling routine so that another program that monitors the log can notify the appropriate people of the error. The monitoring/notification piece is already in place. My task is only to write to the log. Any suggestions on how to...

Part and Inventory Search

Back
Top