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

    Graph Help - Font size of X and Y Axis

    You should be able to right click the label, select "format axis label" and change the font style and size there.
  2. strtech

    Crystal 2008 Exam

    I obtained the certification last year. However, I took the upgrade exam because I was already certified in version XI. The test was tough and you really need to study all of the objectives on the preparation list because it is very thorough.
  3. strtech

    need to add an address header to MAS 90 invoices

    You are going to need to modify that through Crystal Reports.
  4. strtech

    delete PP and CM invoices from accounts receivable

    If you don't have an invoice that refers to the Prepayment and credit memo, you are going to have to create a debit memo and then apply the credit memo and prepayment to the debit memo to zero them out.
  5. strtech

    Copy a database

    I have a SSIS package that is importing thousands of records into a Microsoft Access database. I would like to include backing up the database or at least getting a copy of the affected tables before the import tasks execute. Is there a way to accomplish this since the Backup Database Task...
  6. strtech

    Month "Name" from Date in SSIS Expression

    Try something like this: SUBSTRING( (DT_WSTR,30) GETDATE() , 9, 2) + MONTH(BirthDate) == 1 ? "January" : Month(BirthDate) == 2 ? "February" : "Unknown" + SUBSTRING( (DT_WSTR,30)GETDATE() , 1, 4 ) Just continue the list for March, April, etc.
  7. strtech

    FTP Task Question

    I don't work with FTP tasks a lot but have you tried changing the "Stop on Failure" option in the FTP Task Editor to "False". I have another package running where I used a Script Task first to check to see if the file existed in the directory and from there I designed what tasks would execute...
  8. strtech

    Using Fuzzy Lookup with a For Each Loop

    I have created a package that imports an Excel spreadsheet into a SQL table but it has to perform a fuzzy lookup first before importing. That works fine. The problem is, I have approximately 2000 spreadsheets to import. They are all in the same directory. What I would like to do is to have...
  9. strtech

    Need help to change format of Date in Chart

    Hi, Just in case you didn't find the answer, you can use the Month() function in a formula that will convert "Jan" to "01". Then use that formula in the chart.
  10. strtech

    Linking tables

    smibarb, I think your problem is in the WHERE clause, which is in your Select Expert in Crystal Reports. You have the right LEFT OUTER JOIN if you are trying to get all of the instruments from the bu_t table. However, you then start to limit the records by stating the records have to have a...
  11. strtech

    Calculating Dates

    I am trying to subtract two date fields that I thought would be very easy. I'm creating a form in Adobe Acrobat. However, I am either coming up with a blank field or the "NaN" message and I don't know why. Both of my fields are formatted as a date field. My calculation field is formatted as a...
  12. strtech

    MSWORD BOOKMARKS

    I want to make sure we are on the same page. You are inserting a text field from the Controls group on the Developer tab, correct? If you are, then you can double click on the field that you added or right click and choose properties. It will open up the Field Options dialog box. From that...
  13. strtech

    MSWORD BOOKMARKS

    Sorry, I forgot to add this statement Change your field type to "Calculation" and enter the formula that I mentioned above in the "Expression" field.
  14. strtech

    MSWORD BOOKMARKS

    This formula works: = (Bookmark1 + Bookmark2 + Bookmark3 + Bookmark4 + Bookmark5 + Bookmark6 + Bookmark7)/7
  15. strtech

    Old Purchase Orders in 4.2

    The only way to close them out without purging obsolete purchase orders is: You have to go into each purchase order and get rid of any backorders. For example, qty ordered is 100 but you received 75. You will need to change your qty ordered to 75 and make sure your backordered number is 0...
  16. strtech

    What date format should I use for 'OrderDate' field in Sql quries?

    SQL uses the "yyyy-mm-dd" format. You should change it to: WHERE SalesOrderDate <={d'2008-03-31'}.
  17. strtech

    Print Multiple forms at the same time?

    Multi-part will only allow you to send the same form to multiple printers. I recommend adding the picking and packing lists to your Invoice in Crystal Reports. Therefore all 3 will print for each order at the same time. I have done this for clients and it works great for them.
  18. strtech

    Get logged user while anonymous access set to on

    I had this same problem. I needed to capture the user creating or modifying records in my Sql database. I captured the logged in user's name in a session variable then inserted it in my database via a stored procedure using the session variable value in the parameter. Session("User") =...
  19. strtech

    Network credentials of current user?

    I don't know if this helps or not but I am using Forms Authentication so when the user logs in the user name is captured. I have a label that says "Welcome "username"". In my code I used Name.Text = My.User.Name or captured it in a session variable.
  20. strtech

    Session variable in a ContentPlaceHolder

    Hi, I am trying to capture a session variable that is located in a FormView that's part of a Master page. I know how to do session variables but the value is showing up as "System.Web.UI.WebControls.Label" instead of the value. What am I missing? The code I used to declare the variable is...

Part and Inventory Search

Back
Top