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: rss0213
  • Content: Threads
  • Order by date
  1. rss0213

    CICS called COBOL module fails with Program Interrupt

    Hi. I have an MQ I-O routine that I want to be callable from a batch or CICS program. So I have coded my first CICS calling module as such: CALL MQ-API-PROGRAM USING MQ-DATA-AREA. The LINKAGE SECTION and PROCEDURE DIVISION header of the called MQ module are coded as such: LINKAGE...
  2. rss0213

    Updates fail when process runs as system

    I have a vbscript that updates a couple access tables (just loads records). When I run it manually, it works fine. When I run it with an Enterprise scheduling tool, which runs as "system", the updates fail. Can someone tell me what I need to change? I'm using MS Access 2007. Thanks! Scott
  3. rss0213

    file rename loop

    Hi. I have files in a directory with names like: 1.tif 2.tif 3.tif . . . n.tif I need to rename these files to YYYYMMDD_SEQ_CTR.tif, where 'YYYYMMDD' = date (duh), 'SEQ' = a pre-assigned sequence number, and 'CTR' = a counter that I just increment for each file in the dir. So, I have the...
  4. rss0213

    problem with single quote in recordset field of UPDATE query

    I have this code to update an Access table from a text file (this is actually vb script): sqlStr = "UPDATE CustomersMain SET [RMName] = '" & trim(oRS("OfficerName")) & "' WHERE [CustomerID] = " & trim(oRS("CustomerId")) Problem I have is when an OfficerName has a single quote in it, like...
  5. rss0213

    subform recordsource not updating

    Hi. I have a form with two subforms, and I'm trying to link the recordsource in Subform2 to a field in Subform1. (Subform1 is linked to data in the main form.) So I have the following code to accomplish this: strSQL = "Select * " & _ "From RemittanceLocation " & _...
  6. rss0213

    trying to exec a SQL update...

    I have this code... sqlStr = "UPDATE tblPaymentHeader SET [Voucher] = '" & varVoucherNum & "'" appAccess.DoCmd.RunSQL sqlStr ...trying to update an Access 2007 table. It's failing, but the only error it tells me is "The RunSQL action was canceled." I know my connection and all is good...
  7. rss0213

    SELECT INTO syntax error

    Hi. I'm getting a syntax error in my vbscript trying to set a SQL variable to the following string value: strSQL = "SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE(Provider=Microsoft.ACE.OLEDB.12.0;" & _ "Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing...
  8. rss0213

    Access 2007 subform recordset issue

    Hi. Trying to assign the recordset of subform B (frmRemittanceLocation) to records from a table that are related to a value in subform A (frmSupplierLocation), but the query is not returning any results (and I've validated that the data is there). Here is the code: strSQL = "Select *...
  9. rss0213

    simple task... for most, that is

    I have a field for address lines in my table (AddressLines). One or more (up to 3) address lines will be stored in this text field. Each address is separated by a colon (:). Examples: 1. PO Box 123 2. Attn Fred:PO Box 123 3. Attn Fred:123 Any St:Suite 456 So, I want to display each...
  10. rss0213

    Using ADO to parse CSV fields returns null values

    Hi. I'm struggling with a task to parse a CSV into individual fields. I found a topic about this on this forum and others, but implementing the code has not provided the results I expected. Here's my code: BEGIN CODE ----------------...
  11. rss0213

    automatically sort XML spreadsheet on open?

    I have an XML Spreadsheet that I'm creating on the mainframe and sending to my users. I would like for the data in the rows (which I'm creating on the fly with a COBOL program on the MF) to be sorted when the user opens the XML attachment (which opens in Excel). I have the following tags in...
  12. rss0213

    Excel XML - force sort when XML spreadsheet file is opened

    Hi, I'm not sure if this is the correct forum, but it IS related to MS Excel... I have an XML Spreadsheet that I'm creating on the mainframe and sending to my users. I would like for the data in the rows (which I'm creating on the fly with a COBOL program on the MF) to be sorted when the user...
  13. rss0213

    Obtain field value without its input mask

    Hi. My users created a field in a table with an input mask. How do I obtain this value without its input mask? The field is a fax number, and they have it masked as "(###) ###-####". So when I code "varFaxNum=Customers.FaxNumber", I get "(555) 555-5555". But I just want the numbers - not...
  14. rss0213

    Run batch file from Access VBA

    I'm struggling to figure out what I'm doing wrong here... I have two instances that I need to execute a batch file from my VBA code. The first one is working, but I can't get the second one to work. I keep getting the error "Method 'Run' of object 'IWshShell3' failed". This is the code: Set...
  15. rss0213

    Free PDF converter for VBScript?

    I'm new to VBScript, but I've written and modified a few scripts... I need to read a report file (ASCII format), and generate multiple PDF files from certain pages in the report. I can handle the logic to parse the report file into multiple documents, but I'm trying to find a free tool to...
  16. rss0213

    data transformation of BIN data?

    We have the following distributed queue setup: remote queue definition on mainframe that corresponds to a local queue on a server We are putting messages to the server with char set 500, encoding 785. Our Queue manager is converting the data from EBCDIC to ASCII. When we browse the messages...

Part and Inventory Search

Back
Top