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 dencom 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
  • Content: Threads
  • 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

    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 =...
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. ro88o

    How To Make Expanding Navigation Menus

    Hi, I'm interested in making an expanding navigation menu where the user clicks a link and then sub-links appear below it without a new page having to be loaded. An example of what I am looking for can be found on the left hand side of http://www.computerorbit.com How do I do this in...
  12. ro88o

    Vertical and Horizontal Alignment

    I have a div with a date written in it, I want this date to be centered both horizontally and vertically. How do I do this ? The only thing I could find is "vertical-align: middle" which doesn't work. Any help would be appreciated, TIA ro88o
  13. ro88o

    Floating and Minimising Windows

    I am trying to convert a page I currently have using tables into one that just uses css/div tags. The code is as follows: <html> <head> <title>Welcome to Exyt Web</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> #topLeft { width...

Part and Inventory Search

Back
Top