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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bogtom

  1. bogtom

    only last date statement in mySQL

    10x, but it didn't works: ------------------- SQL query: SELECT date_modified FROM notes d INNER JOIN ( SELECT MAX( notes.date_modified ) AS maxdate FROM notes ) AS mx ON mx.maxdate = d.date_modified ----------------------------- MySQL said: #1064 - You have an error in your SQL...
  2. bogtom

    only last date statement in mySQL

    what is wrong in this statement ? I need to get only the last modified subject from a table. SELECT subject, date_modified FROM notes d INNER JOIN (SELECT MAX(notes.date_modified) AS maxdate FROM notes AS mx) ON mx.maxdate = d.date_modified 10x
  3. bogtom

    How can I print a single copy from the browser ?

    You don't understand what I need ! I don't want to leave the user using JUST the touchscreen to print more than 1 copy of the document ! This can't be done from JavaScript/CTRL+P (don't forget that the user can't push any button on keyboard) !
  4. bogtom

    How can I print a single copy from the browser ?

    How can I print just a SINGLE copy from the browser (not using CTRL+P or self.print because I can't prohibit the number of copies) ?
  5. bogtom

    IIS and PHP problem ....

    something like this.... and the error is on the third line ..... on IIS of course !!!! <?php if ($loc == &quot;admin&quot;) { ?> <tr bgcolor=&quot;#ffffff&quot;><td> <table width=&quot;100%&quot;> <tr><td align=&quot;left&quot;> <img...
  6. bogtom

    IIS and PHP problem ....

    I try to install PHP module into IIS on a W2000 system like in the documentation from http://www.php.net/manual/en/printwn/install.iis.php ! I receive error messages like : Notice: Undefined variable : name in c:\inetpub\wwwroot\test.php on line 3 and at line 3 I have : if...
  7. bogtom

    IIS and PHP problem ....

    I try to install PHP module into IIS on a W2000 system like in the documentation from http://www.php.net/manual/en/printwn/install.iis.php ! I receive error messages like : Notice: Undefined variable : name in c:\inetpub\wwwroot\test.php on line 3 and at line 3 I have : if...
  8. bogtom

    Chart Excel - Title bigger than 32 chars. and option&quot; Vary colors by &quot;

    two questions: - how I insert a title into an Excel chart bigger than 32 characters ? prop: chart1.Title - how I can set the option &quot;Vary colors by point&quot; (coloring the column different) from &quot;Format data series&quot; on On (or TRUE) with the editor Visual Basic because I didn't...
  9. bogtom

    Chart Excel - Title bigger than 32 chars. and option&quot; Vary colors by &quot;

    two questions: - how I insert a title into an Excel chart bigger than 32 characters ? prop: chart1.Title - how I can set the option &quot;Vary colors by point&quot; (coloring the column different) from &quot;Format data series&quot; on On (or TRUE) with the editor Visual Basic because I didn't...
  10. bogtom

    Chart Excel - Title bigger than 32 chars. and option&quot; Vary colors by &quot;

    two questions: - how I insert a title into an Excel chart bigger than 32 characters ? prop: chart1.Title - how I can set the option &quot;Vary colors by point&quot; (coloring the column different) from &quot;Format data series&quot; on On (or TRUE) with the editor Visual Basic because I didn't...
  11. bogtom

    Chart Excel - Title bigger than 32 chars. and option&quot; Vary colors by &quot;

    two questions: - how I insert a title into an Excel chart bigger than 32 characters ? prop: chart1.Title - how I can set the option &quot;Vary colors by point&quot; (coloring the column different) from &quot;Format data series&quot; on On (or TRUE) with the editor Visual Basic because I didn't...
  12. bogtom

    how I get all contents of a word doc wirh a macro written in VB ?

    how I get all contents of a word doc wirh a macro written in VB ? after this I need to get it and put into a Rich Text field into another application using API !
  13. bogtom

    Where can I find documentation for Lotus Learning Space 3.5 on web ?

    Where can I find documentation for Lotus Learning Space 3.5 on web?
  14. bogtom

    It is possible to resize of a picture into a RichText Field with LS ?

    I have a picture into clipboard and I put it into a document through the next code: Dim w As New NotesUIWorkspace Dim uidoc As NotesUIDocument Set uidoc = w.CurrentDocument Call uidoc.GotoField( &quot;Body&quot; ) Call uidoc.Paste The Body field is Rich Text and if the picture is 1024x 768...
  15. bogtom

    It is possible to resize of a picture into a RichText Field with LS ?

    I have a picture into clipboard and I put it into a document through the next code: Dim w As New NotesUIWorkspace Dim uidoc As NotesUIDocument Set uidoc = w.CurrentDocument Call uidoc.GotoField( &quot;Body&quot; ) Call uidoc.Paste The Body field is Rich Text and if the picture is 1024x 768...

Part and Inventory Search

Back
Top