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!

Search results for query: *

  • Users: mmignot
  • Content: Threads
  • Order by date
  1. mmignot

    How To Insert An Image Using Proc Report

    Hello all, I have a report I'm generating using "PROC REPORT". I would like to insert an image (logo) into the first title line on the report. I want the image to be positioned at the very left side of the report, and I'd like to add text to the first title line of the report. So, I'd like the...
  2. mmignot

    Message Box Stil Display After Clicking OK Button

    Hello all, Another issue - I have an Excel 2003 macro that displays a form. If the form fields are entered incorrectly, a message box pops up with a message. The user clicks the "OK" button, but the message box does not go away. The main user form display and the message box can be seen behind...
  3. mmignot

    Invalid Procedure Call or Argument Error

    Hello all, I have an excel macro that runs fine on my machine, but when the macro is used on a user's machine she gets the following error: VBAProject - 5: Invalid procedure call or argument We are both running Excel 2003. I think I know where it is failing but I'm not sure why. Here...
  4. mmignot

    DIR Function Work in VBA 2007 But Not in 2003

    Hello all, I have some code that uses the DIR function to loop through excel workbooks in a directory. This code works in VBA 2007, but in VBA 2003 it is not picking up the excel filenames in the directory. Here is a sample of the code: lCount = 0 sFil = Dir("*.xls") Do While sFil <> ""...
  5. mmignot

    EXCEL: Decimal values in Cell Not Being Picked Up

    Hello all, I am attempting to use VBA code to read certain cells on a worksheet. I'm having trouble getting the decimal values of in cells with amounts. For example, a cell has the value 1,000.53. When I use the following code to retrieve the cell value: ' *----------------------------------*...
  6. mmignot

    Sample Excel 2003 VBA Program

    Hello all, Does anyone know where I can find a sample Excel 2003 VBA macro that will read one or more excel files from a specific folder location, retrieve data from certain cells of each excel file, and write the data one row at a time to a new excel file? Many thanks MM
  7. mmignot

    Sample Excel VBA Program

    Does anyone know where I can find a sample Excel VBA macro that will read one or more excel files from a specific folder location, retrieve data from certain cells of each excel file, and write the data one row at a time to a new excel file? Many thanks MM
  8. mmignot

    Assign Encoded Password To Macro Variable

    Hello all, Does anyone know how to use the "PROC PWENCODE" procedure to create an encoded password and pass the value to a macro variable? Here is the code I tried: proc pwencode in='&usrPWD' out='&e_PWD'; run...
  9. mmignot

    Pass Multiple Parameters Using CFLOCATION

    Hello, I would like to pass multiple parameters to another form using the "cflocation" tag. For example: <cflocation url="CIOM2.cfm?ClientID=#GetCIOMID.ClientID#"> I would like to pass more than just the ClientID. Can someone post sample code on how to do this? Thanks :)
  10. mmignot

    How Ask Uer for Confimraiton of Responses On Data Entry Form

    Hello I have a form with 35 questions on it. All of the questions are optional, but if the user skipped some questions I'd like to be able to display a message (possibly on a pop-up screen or message box) that lets the user know which questions were skipped and to confirm that the skipped...
  11. mmignot

    Create A Pop-up Form to Confirm Input from User

    Hello, We have a form which the user can respond to 35 questions using radio buttons. These questions are optional, so when the user submits the form he/she may not have responded to some of the questions. I would like to be able to have a form "pop-up" asking the users if they meant to skip...
  12. mmignot

    Cannot Open Local Universe

    Hello all, I am working on BO XI R2. I imported a universe to my local workstation and made several changes. When I attempted to export the universe I received an error stating something like "unable to convert unv to unw", and the export failed. I closed and restarted BO Designer, then...
  13. mmignot

    Dynamically Build SET Statement (Multiple Files)

    Hello all, I would like to dynamically build a set statement with multiple files. The catch is that the every month a new file is created, and the last part of these files contain the date in "YYMM" format. Here is an example of the data step and the "set" statement: data all_prft...
  14. mmignot

    Retrieve FileSize

    Hello all, I have a file that was created from a SAS data step that I need to check the file size on. Is there anyway I can do this in SAS? Thanks, Mark :)
  15. mmignot

    Check for abend in any step

    Hello all, Does anyone know how to check for an abort or abend from a prior data or proc step? I need to check for a particular return code or abend at the end of a sas program. Depending on the results from the find, send an email message to various users. Many thanks, Mark
  16. mmignot

    Check For Error In SQL PROC

    Hello all, Does anyone know how I can check for an error that originates in an SQL Procedure? I'd like to check for a bad return or error code. Here is a sample of the query: create table myown_data as select * from connection to db2 ( select distinct...
  17. mmignot

    Correct use of sysparm on Unix

    Hello all, Does anyone know the correct format for using SYSPARM on a Unix platform? I'm executing a SAS program from a Korn shell script. I want to pass a run indicator ("TEST" or "PROD"), and a process date. Below is an example of what I think is the correct use of sysparm: #...
  18. mmignot

    Using Subquery To Return Unique Rows..

    Hello, I am trying to return from a query, a list of employees that entered more than one timecard within the same reporting period. Here is the query I'm trying to develop: --------------------------------------------- SELECT a.LastName AS LastName, a.FirstName AS FirstName...
  19. mmignot

    Run-time error 429: ActiveX Component Can't Create Object

    Hello, I am trying to run an application on a Windows 2000 client machine. The application was written in VB6. When I try to run the app I get the following error: Run-time error '429' ActiveX component can't create object The application then closes. This only occurs on Windows 2000...
  20. mmignot

    Run-time error 429 : ActiveX can't create object

    Hello, I am trying to run an application on a Windows 2000 client machine. The application was written in VB6. When I try to run the app I get the following error: Run-time error '429' ActiveX component can't create object The application then closes. This only occurs on Windows 2000...

Part and Inventory Search

Back
Top