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 Mike Lewis 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. robschm

    copy design elements with lotus script?

    i want to copy design elements from one database to another. have heard, i have to handle them like object, but how to access a spec. design element (a frameset, a page or an outline). thanks i dont want to use the notes c api, it must be possible without it.
  2. robschm

    dynamic embedded outline into page or document

    ok, step by step: 1st frame: a (profile)document with a listfield, including all possible pages(with frames) and a button, that opens this page in 2nd frame (@OpenPage...) 2nd frame: the page, that the user have chosen in 1st frame, this page includes an outline, which actions take place in 3rd...
  3. robschm

    dynamic embedded outline into page or document

    i want to create a dynamic outline, no problem with the notes outline class. i can add entry and so on. now the problem: i want to embed this created oultine into a page or document by lotus script or formular language. the idea is, that the user can design his own frameset. the frameset is...
  4. robschm

    idea for a report class?

    want to log my php-programs. after a program has ended, a report-file (txt) should be generated. any ideas? features of report: - what function was called (with parameters) - when it was called - return values - counters - s.o. thanks (helpers can get a copy of this class)
  5. robschm

    show ALL duplicate entries

    i want to see all duplicate entries of a table. i tried: SELECT * FROM name GROUP BY first HAVING COUNT(*) > 1 ORDER BY first but this shows only the group of all duplicate, but i want to see all duplicate row for row. the problem is, to make a count(*)>1 without a group by. is it possible...
  6. robschm

    restart apache with awk

    whats about that, there are parse error, why? BEGIN{ #while(1){ system(&quot;uptime > uptime.txt&quot;) getline < &quot;uptime.txt&quot; #$10>5 {system(&quot;apachectl restart&quot;)} $10>5 {print &quot;server restart&quot;} #parse error $10<5 {print &quot;alles ok&quot;} #parse...
  7. robschm

    restart apache with awk

    its a little advantage in reading the result from uptime, because i know exactly which column it is. but you are right, i can do this with any other language, too. but what is the best way to do this as small process, that looks looped after five minutes at the server status (uptime) and if the...
  8. robschm

    @MailSend... Including Fields in the subject.

    try so: mailContent:=&quot;IMPORTANT! Back Up Tape Needs Replacing. Tape ID &quot;+TapeID+&quot;...all the others...&quot;; @MailSend(&quot;XXXXX&quot;: &quot;XXXXXX&quot;;&quot;&quot;;&quot;&quot;;mailContent);
  9. robschm

    restart apache with awk

    ok, thats right, but look at this: unix command: $awk -f myawk myawk contains: system(uptime) $8>5 {system(apachectl restart)} it should work?! robert
  10. robschm

    restart apache with awk

    have an apache server, that becomes slow some time, bescause of too many user on it (thinks so). now i want to write an awk-script, maybe in connction with c to get the status of the spache server and if its in the &quot;red area&quot; restart it. please help. robert

Part and Inventory Search

Back
Top