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: *

  1. cygnut

    How to Stop External Call to a DN but not internal Call ?

    I am so sorry about the description that no one understand. Basically, the company trying to stop outside people to call into extension (i.e. DN 211) to look for a worker in the plant. So, the idea is to stop people, calling from outside, to reach some extension. If possible, all outside call...
  2. cygnut

    How to Stop External Call to a DN but not internal Call ?

    Sorry, no idea which section under "Terminal & Sets". After entering "Terminal & Sets", Show set: 212 (just an example) Line access, Line assignnment, Line Pool Access, Prime Line:I/C, Intercom Keys:2, Answer DNs, OLI #: NONE Where should I goto ? Thank !!
  3. cygnut

    How to Stop External Call to a DN but not internal Call ?

    How do I take away the line appearances on the set ?
  4. cygnut

    How to Stop External Call to a DN but not internal Call ?

    The no. is not a DID No. People call-in the Main Tel. No. and dial the DN extension. We would like to stop staff pickup any call from outside directly. Have to call to the supervisor before the staff answering / return to the caller.
  5. cygnut

    How to Stop External Call to a DN but not internal Call ?

    Sorry for the confusion. DO allows incomming / outgoing call between company's internal DNs. BUT, do not allow outside callers to ring on that DN. Outgoing to external public Tel. no. can be restricted by filter - that's no problem. TIA !
  6. cygnut

    How to Stop External Call to a DN but not internal Call ?

    Is there any way to stop people calling from outside company phone system ? Still need to be able to call internal extension.
  7. cygnut

    How to enable Track / Logging of what file user deleted

    Having problem to setup on Windows 2003 SBS. Already setup audit on the folder with User Group. Audit logging for delete is not shows on Event Viewers - Security. Any places to enable the logging feature ?? Thanks !!
  8. cygnut

    Access Report: Footnote on first page only

    Not realy, I have try to put a IF condition on Footer Section: if page = 1 then me.visible = false else me.visible = true endif someting like that. The problem is : on second page, the detail section does not expand to cover the footer area. I still need a solution to overcome this.
  9. cygnut

    easy question - about decimal places

    In the FORMAT field type in : $#,###.##;($#,###.##);$0.00 or ; $#,##0.00;-$#,##0.00;$0.00 or ; CURRENCY The other ways is set with CONTROL SOURCES =FORMAT([Price] * [Quantity], "Currency" )
  10. cygnut

    Show Page Footer on Page 1 ONLY

    Someting Funny, seems works but still have some issue: With This Code =============== Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer) Cancel = (Page <> 1) End Sub Private Sub Report_Page() If Page >= 1 Then Me.Section(4).Visible = False...
  11. cygnut

    Show Page Footer on Page 1 ONLY

    Thanks for your idea on Cancel = (Page <> 1) It works to print page footer on page 1 only. BUT, the detail section still the same size of page 1, even I set to can grow to YES and can shink to NO. The Page footer is only an empty space. ????
  12. cygnut

    Show Page Footer on Page 1 ONLY

    Lets clarify, Still using Access 97. Put the code in PageFooter_Format like that: if page = 1 then me.section(4).Visible = True else me.section(4).Visible = False endif IT does not works on me. Next step is how to expand the detail section while on page 2, which will only conatin a...
  13. cygnut

    Show Page Footer on Page 1 ONLY

    Need help to customize a report to show page footer on 1st Page only. Starting from page 2 and so on, no page footer and the Detail section will expand and take over the space.
  14. cygnut

    Access 2000 Assigning ADODB.recordset to a report

    You need not to use ADODB, Try That : Private Sub Report_Open(Cancel As Integer) DoCmd.OpenForm &quot;frmQueryMaker&quot;, , , , acFormEdit Me.RecordSource = Forms!frmquerymaker!sql_String End Sub

Part and Inventory Search

Back
Top