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 Chriss Miller 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: hyrogen
  • Content: Threads
  • Order by date
  1. hyrogen

    Java source

    Hi, Apologies if this is the wrong forum, as it maybe an ANT issue. I've created a JAR using ANT, but when I run the JAR I get a NULL pointer exception at an unknown line (?) Do I have to create the JAR file with a certain parameter or run Java with a certain parameter to find the source...
  2. hyrogen

    Operation must use an updateable query

    Hi There, Im trying to do an insert into an access DB through an ASP. It actually works for me, but when my collegue tries it she gets the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable...
  3. hyrogen

    embedded JS onclick problem

    Hi there, Ive got a problem where I have JS embedded in a page the Im dynamically included through ajax. Im executing the js in the embedded page by using the eval function. My problem is I have an onclick event on an element in the embedded page, but when clicking on it, it says it cannot...
  4. hyrogen

    Load balencing with realm login

    Hi, We currently have a realm authenticated tomcat webapp thats alowwing users to loggin into to the website via AD. Its currently on our test server but we need to release it to live, but that is load balenced. So we're wanting to ensure that because its load balanced its not going to mess up...
  5. hyrogen

    realm get user attributes

    I've successfully connected to an active directory through realm and returned the user groups, now im trying to return some extra details about the user such as their email address. I can return the roles of the user by setting userRoleName="memberOf" and I can get the email address by setting...
  6. hyrogen

    active directory silent login

    If a user is logged into their computer using active directory, is it then possible to automatically log them into a web based jsp site using their active directory details? I've managed to get a login box appear and log them into their active directory account that way, but as they are already...
  7. hyrogen

    realm jndi active directory

    Hi there, Im developing a jsp script for our intranet, where users are logged into their PC's by active directory. What I want the jsp todo is to silently log the user in to the intranet according to their active directory login. Im not sure if Im going about this the right way, but Im trying...
  8. hyrogen

    active directory

    Hi, Im wanting to write a jsp/java script that finds who is currently logged in through active directory. Im totally new to this so dont really know where to start. Has any body got any ideas? or just a simple script to get me started. Also, will I require to make any changes on our server so...
  9. hyrogen

    InsertFile not processing file type though COM

    Hi There, Im trying to insert a html file into a word doc, his works fine if I do it manually through word, or even a macro. However Im attempting to do this through COM from php, eg: $word->Selection->InsertFile($tempWord); However, word now doesnt pick this up, it just outputs the text in a...
  10. hyrogen

    InsertFile not processing file type though COM

    Hi There, Im trying to insert a html file into a word doc, his works fine if I do it manually through word, or even a macro. However Im attempting to do this through COM from php, eg: $word->Selection->InsertFile($tempWord); However, word now doesnt pick this up, it just outputs the text in a...
  11. hyrogen

    word xml table

    hi there, Im using xml to create word documents, which include tables. However, Im needing to set the table height to be the full length of the page. Is there anyway to do this? Many thanks in advance :)
  12. hyrogen

    number of rows in table?

    Im just wondering does anyone know how to get the number of rows in a table on the current page only, for word, using vba? I've been struggling on this for ages, cheers
  13. hyrogen

    COM run macro

    Hi there, Im currently using the COM from php, and I really need help with two things. The first is running macros: $word->Run("MyProject.NewMacros.Macro17"); //which gives an error of cannot run the specified macro? The second is: $word->Selection->InsertBreak("7"); //which is trying to...
  14. hyrogen

    php force save

    Im using: header('Content-Type: application/msword;'); header("Content-Disposition: attachment; filename=bill.doc"); readfile($new_file); To output a dynamically generated word file to a browser. It seems to work fine if you save the file first, but if you just click open, you get a...
  15. hyrogen

    PHP output to word problem

    Hi, I've managed to open up a word file and make edits from my php script, however Im having problems positioning where I make my edits. E.g. I've tried: $word->Selection->MoveDown("Unit:=wdLine", "Count:=1"); $word->Selection->InsertAfter("*4*"); $word->Selection->MoveDown("Unit:=wdLine"...
  16. hyrogen

    COM apache crash

    Hi, Im trying to use the command: $word= new COM("word.application") or die("Unable to create Word document"); Everytime I do, apache gets a fatal error; and I cant seem to find anyway to resolve it. Im using apache2 and I even upgraded my php from 4 to version 5. Any help would be much...
  17. hyrogen

    How to click and size and image?

    Hi there, Im not to adept and JS, but Im trying to make it so you can click within an area and drag a box to a certain size and when you release the mouse a box is formed. Id would also then be nice to say click in the center of the image and move it around a defined area. Im not really sure how...
  18. hyrogen

    php caching files

    I've placed the clearstatcache function directly before where Im checking to see if a File_Exists. The problem is, I've deleted the file, but File_Exists is still returning true. Although if I rename the file it returns false. This is really baffling me, any help is greatly appreciated, Jon.
  19. hyrogen

    DNS Zone files

    Hi there, Im really no expert on this at all, but am quite desperate for some help. I have a domain registered with xreg.co.uk, and they allow you to modify your DNS Zone files. Basically I want to point my domain to a directory on my webserver. So that www.mydomain.com/test.php actually...
  20. hyrogen

    Weekly report

    Hi, I have a report which currently displays information over any given month. What I want to do is to be able to limit it to any one single week with in that month. For example, Month:May, week: 3. I really have no idea where to start on this, any help would be fantastic!, thanks

Part and Inventory Search

Back
Top