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

  • Users: ro88o
  • Order by date
  1. ro88o

    Converting a general regexp to a PHP equivalent

    Hi, I have a regular expression that I've created to find code comments in a piece of text which looks like this... (/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/)|(//.*) If I try to put this into preg_match_all in my PHP script however it returns the error: Warning: preg_match_all()...
  2. ro88o

    Size Limit on XML Files ?

    Hi all, I'm currently working on a project that creates an XML Document from 'alerts' in my system. A database query is performed and 1000s of entries are returned and then placed into the XML document. The code looks like this: resultSet = statement.executeQuery(SQLQuery)...
  3. ro88o

    Control crashes when using Windows Classic Theme

    Hi, I have a control that is using a custom tree view, the problem that I am having is that when using the 'Windows Classic Theme' in XP (i.e. visual styles are turned off) I get the following error: Visual Styles-related operation resulted in an error because no visual styles is currently...
  4. ro88o

    Truncated Objects in java.sql.ResultSet

    I'm using the Sybase drivers and I think I may have found what the problem is. Apparently if the version isn't set to 6 then you can have problems with wide tables and truncation, I'm currently working on setting the version but I'm having some problems importing the classes I need :-(
  5. ro88o

    Truncated Objects in java.sql.ResultSet

    Yep the rs.getString(i) returns the same thing unfortunately. The field type is varchar. Any ideas :) ?
  6. ro88o

    Truncated Objects in java.sql.ResultSet

    Hi, I have a field in a (Sybase 12.52) database that is 2048 characters and when I run a sql query on a command line it shows all the text inside this field. However, when I run a sql query from java and obtain a java.sql.ResultSet I find that when I do: Object myObject =...
  7. ro88o

    Changing ListView icon size

    nm solved it.
  8. ro88o

    Changing ListView icon size

    Hi, If I have a LargeIcon ListView the icons are by default 32x32 pixels. How would I go about altering this to say 125x125? Thanks in advance, Tom
  9. ro88o

    Compiling Triggers in sql*plus

    I can't even get that far :( When I type @[trigger name] to compile it doesn't actually do anything, I can carry on typing and/or pressing return and I have to do Ctrl+C and then return to get back to the SQL> prompt.
  10. ro88o

    Compiling Triggers in sql*plus

    It didn't work :( Any other ideas ?
  11. ro88o

    Compiling Triggers in sql*plus

    Hi, I'm trying to create and compile some triggers in sql*plus but I think I've been given incorrect information on how to compile them. I type EDIT insert_derive_duration and an editor came up which I used to create the following: CREATE OR REPLACE TRIGGER insert_derive_duration AFTER INSERT...
  12. ro88o

    Compiling Triggers in sql*plus

    Hi, I'm trying to create and compile some triggers in sql*plus but I think I've been given incorrect information on how to compile them. I type EDIT insert_derive_duration and an editor came up which I used to create the following: CREATE OR REPLACE TRIGGER insert_derive_duration AFTER INSERT...
  13. ro88o

    SQL Query

    I'm using an sql*plus with an Oracle database. With the 'as' keyword it threw up this error: inner join groupedon as G * ERROR at line 3: ORA-00905: missing keyword I'd not seen the 'as' used in that situation in my course material so I just removed it.
  14. ro88o

    SQL Query

    Thank you so much that's fantastic. Worked a treat (just had to remove 'as' from 'join groupedon as G'.
  15. ro88o

    SQL Query

    I have a SQL Query that looks like this... SELECT released_title FROM finishedtrack ft WHERE ft.originates_from IN (SELECT originates_from FROM groupedon WHERE album_id = (SELECT album_id FROM Twenty_People_Info)); What I want to do is display a field called sequence from the...
  16. ro88o

    PHP Form script

    Sorry to sound like a complete amateur hehe but I'm struggling to find the bit of the manual which tells me how to do this - could somebody link me plz ? TIA, ro88o
  17. ro88o

    Emailing password information

    I apologise if this is the wrong place for this question, I wasn't sure which forum it should go in! Basically I'm setting up a PHP/MySQL user database where users use a form to give their details and a choice of username and password and this is stored in the database (after all the testing...
  18. ro88o

    How To Make Expanding Navigation Menus

    Oops handed out my stars too quickly - tried this and works brilliantly in IE, no luck in FF though. Anyone know why ? Or how to do it differently ? TIA, ro88o
  19. ro88o

    Bottom scrollbar because of 2px on right

    If you go to www.exyt-web.com/stoofoo and view it in Firefox you will notice a scroll bar appears at the bottom of the browser window because on the far right of the page there is about 2 pixels of white space. Can anyone see in my css (www.exyt-web.com/stoofoo/stoofoo.css) why this white space...
  20. ro88o

    How To Make Expanding Navigation Menus

    How wud I make a javascript toggle ? My knowledge of javascript is poor but I have a good programming background so can understand most things. TIA, ro88o

Part and Inventory Search

Back
Top