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 TouchToneTommy 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. cram81

    extremley slow transfer ?? cvs xp to linux using tortoise

    Hi I have been messing around with tortoise cvs and cvs over the past week. I am now finding a problem where I try to commit/update files to repository that are > 1MB. Tortoise just seems to hang at the 'commiting dialogue box'. I can commit smaller files without any problems at all. I am...
  2. cram81

    updating a combobox contents

    thanks mate! updateUI() did the trick - i have no idea why it was acting up but thats the last of my bugs!
  3. cram81

    updating a combobox contents

    hi thanks for your reply but what u typed is what ive done so far. Now say you have another method which updates the contents of your jc ojbject how would u go about updating the display? thanks mark
  4. cram81

    updating a combobox contents

    hi im really stuck with my combobox. I have a button on my gui which says add sound which adds a filename to my database and then consequently should update the combobox. The problem is sometimes the combox is updated when othertimes it goes completely blank but when i click in it the...
  5. cram81

    URL problems...

    yeah thanks... it worked......
  6. cram81

    URL problems...

    hi how do I specify a valid URL which would reference my local c drive? Im trying to get a sound application to run and the sounds need to have a URL to make them work but I keep getting malformed URL exceptions.. ive tried everything...but can't seem to get it right... i need to point to a...
  7. cram81

    validating select box error - assistance needed!!

    hi i can't work out why my function which checks to see if the user has selected an item from the drop down box doesn't work... any ideas? thanks <html> <HEAD> <script language='JavaScript'> <!-- function changeFile(the_file) { document.getElementById('thePlayer').FileName =...
  8. cram81

    changing image border thickness onClick help

    i couldnt see a missing brace? theres one for the function declaration and one for the for loop? i havnt recieved any errors either...maybe because the images are in the table it may be preventing me from seeing the border ??
  9. cram81

    changing image border thickness onClick help

    sorry ignore that code it was old ... <HTML><HEAD><TITLE>Credential Recovery: Image Authentication</TITLE> <script language='JavaScript'> function submitform(imageid) { document.test.imageid.value = imageid document.test.submit() } function addBorder(image) { var numimages =...
  10. cram81

    changing image border thickness onClick help

    hi im trying to code my web app so that for this particular section when a user clicks on an image the image is 'highlighted'. On searching the forums i found a similar question and the sol'n given suggeted a function which changes the border thickness of the image on clicking it.... i also...
  11. cram81

    generating JTable on the fly

    hi ive been trying to code my Jtable do that it updates on the fly as opposed to hard coding it so it is populated on start up... so far im am initailsing it by : table = new JTable(mydb.getAllEventQuery(), headings); where mydb is a class that does all my database query processing and...
  12. cram81

    timestamp problem

    thanks for ur reply ... im doing this in java so ill be able to use java to generate the date and time and then use the date:time like u said... mark
  13. cram81

    timestamp problem

    hi i have a table which is like this: event (event_id, user_id, tsStart, tsFinish) where tsStart & tsFinish are timestamps... now when i add an entry i only add data to the first 3 columns leaving the tsFinish blank (null)... ie: INSERT INTO event values('1','1',now,null) now when i try...
  14. cram81

    user activity log.....

    hi i am in the middle in creating a user activity logging facility for my system which records any updates, inserts, removals from the database I was wandering if my implementation looks ok or can any one see any major pitfalls or redundancy with proceeding with this architecture?? thanks...
  15. cram81

    redirecting to another servlet with an if statement?

    hi i currently have a bunch of servlets that i am using for a user authentication system: seeAccounts - gives user some questions choosePic - lets user choose identify their picture chooseSound - lets user identify thier sound FinishServlet - gathers parameters and determines if all were true...
  16. cram81

    choosing to play a sound ... please help !!

    yeah thanks for your reply someone else suggested that as well and thank god it now works!!
  17. cram81

    choosing to play a sound ... please help !!

    if any one can help me with this problem I would be so grateful as Ive been stuck on it for over a week now .... basically i want the user to select a file from a drop down box and then this will then pass the file name to the player which takes in filename as one its parameters... i know the...
  18. cram81

    adding more tables ... design...

    i thought someone would mention that qNum thing... its basically a variable which i use to display how many questions for each user are displayed... ie : qNum = 3, means for that user, 3 questions are selected at random from the users_ans table for that user particular id.

Part and Inventory Search

Back
Top