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

    R5, using a button to open a doc

    Use the "Form Formula" option under View objects in the ojects pane. Simply put "frm2" into this placeholder and this tells the view what form to use when opening documents. then just name the fields on the form the same as the ones in the document.
  2. HighLife

    Strange carriage return in @text(rtf)?

    I have rows set to a height of 4 lines and the "shrink rows to content" checked.
  3. HighLife

    Strange carriage return in @text(rtf)?

    Yeah I have tried @Trim but it doesnt appear to make a difference? I did manage to solve it though by using a := @Text(Item1Qty) + " " + "x" + " " + @Text(QuoteItem1); @ReplaceSubString(a;@NewLine;"") I still have no idea where the carriage return came...
  4. HighLife

    Strange carriage return in @text(rtf)?

    I have multiple RTF fields on a form which I combine in a single hidden computed plain text field for displaying in a view (as RTF fields cant be displayed in a view). The plain text field computed value code is something like this: a := @Text(Item1Qty) + " " + "x" + &quot...
  5. HighLife

    Setting Reminder Fields

    ...no error, just opens a new "reminder" appointment form but the dates are the current date/time (defaults) and no subject?
  6. HighLife

    Setting Reminder Fields

    I have an application which I need to have a an action button that will set a reminder in the current users calendar, 2 weeks from the current date. I'm trying to do this using @functions but I cant seem to set the fields on the reminder form - except for the "AppointmentType" which...
  7. HighLife

    Opening file resource from form?

    ..thanks guys. Yeah I wanted an action button to open the pdf for printing. I ended up placing the file on a mapped network share and used the @Command([Execute]) to open it - works fine after I worked out the double slash thing! Now I'm thinking I might place the path to the file on a profile...
  8. HighLife

    Opening file resource from form?

    Is it possible to launch a database file resource from a form - if so how? I have a .pdf document in my database as a file resource. I want to have a button on a form that will open the .pdf in acrobat reader. I am thinking this might be possible with...
  9. HighLife

    Create list of dates for Date/Time field

    OK, this is what I have which I thought should work but it doesnt appear to, the field name is ApproveDate: TodayDate := @Now; @if(!@isdocbeingsaved;ApproveDate; @if(ApproveDate="";TodayDate;ApproveDate:TodayDate) ) ; I get a single date in the field but cant seem to get the...
  10. HighLife

    Create list of dates for Date/Time field

    I'm a Notes design newbie - I'm developing a quoting system for our company and the quote document passes through various "status" as it is processed. As it passes into each status the status date is recorded in a Date/Time field for each status. Occasionally there may be a need for...
  11. HighLife

    Excel spreadsheet import to multiple tables

    Thanks for that approach. I hadnt considered doing it that way, but will remember it for the next m2m import problem I come across! I write in cfm and after a bit of brain racking, ended up writing a small import application I can reuse for importing this data. I figured the effort was worth it...
  12. HighLife

    Excel spreadsheet import to multiple tables

    I have a curly problem! I have an Access database containing customer marketing information, which I've normalised and contains the following tables: - CustDetail (customers name, email, address etc. PK=Autonumber) - Industry (customer industries PK=Autonumber) - CustIndustry (contains 2...

Part and Inventory Search

Back
Top