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 Wanet Telecoms Ltd 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 LadyDragon

  1. LadyDragon

    How to remove the first row of a file

    FYI for others trying the same thing... I found another way to skip the first row for a file loaded via sql*loader: add the following line prior to the LOAD DATA line: OPTIONS (SKIP=1) LOAD DATA ...
  2. LadyDragon

    How to remove the first row of a file

    Thanks! That worked beautifully! :-D Juls
  3. LadyDragon

    How to remove the first row of a file

    Hi! I have another question about file manipulation on unix. I have a Korn shell script which uses sqlloader to load a .csv file. There is a header on the file which I do not want to load. How can I either strip the first line from the file prior to loading, or does sqlloader have a way to...
  4. LadyDragon

    Passing variable to tail -n command

    Thanks Sambones. The lack of input file was a cut'n'paste error on my part. Your suggestion worked! Thanks! Juls
  5. LadyDragon

    Passing variable to tail -n command

    Hi! I was hoping someone could help me with this. I'm working in Korn shell and am trying to pass a variable to a tail command and am having problems doing this. tail -"$var" > out.txt The quoted part is where I'm having problems. Ideas would be appreciated! Thanks! Juls
  6. LadyDragon

    Has Anyone Implemented Tibco?

    Hi All! The company I consult for has determined that they are going to replace their current batch-oriented system with the real-time Tibco software. As far as I can tell, the main driver for this is "it's newer and it's cooler" than what they currently have. I am a developer who has worked...
  7. LadyDragon

    How to use MessageBox.show in Web Application

    Thank You! Thank You! Thank You! That was it! I appreciate the time and effort you spent to help me out. You're a genius! [sunshine] Thanks! Juls
  8. LadyDragon

    How to use MessageBox.show in Web Application

    I tried your suggestions and it appears that the event is firing regardless of the return value of the javascript function. I set the javascript function to return false no matter what, then created a button with the delete event: this.MyTestDeleteButton.Click += new...
  9. LadyDragon

    How to use MessageBox.show in Web Application

    I tried that and it still deletes whether true or false. Here is the code for this item, which may shed more light on the problem. I'm afraid it could be the way the CommandEvent Handler is calling the Delete function. Even if ConfirmDel is false, the Event Handler is still firing. How can I...
  10. LadyDragon

    How to use MessageBox.show in Web Application

    Thanks for the help. I tried it and I'm getting the popup, but when I hit 'Cancel', the delete is executed anyway. Any ideas? Thanks, Juls
  11. LadyDragon

    How to use MessageBox.show in Web Application

    I'm trying to create a popup message to prompt a user Y/N whether they really want to delete a user before proceeding. The MessageBox class has the functionality I need, but my application is a web app. The MessageBox class resides within the System.windows.form.dll assembly however. Is there...
  12. LadyDragon

    I need help setting up a textbox within a datagrid, please?

    I am trying to set up a textbox within a datagrid and I'm not sure how to do it. Here is the code I'm working on. I would like these cells to be textboxes that the user can modify the values and hit a save button for processing. Right now, I can set the cell text, but am unable to figure out...
  13. LadyDragon

    ADO Parameters and OracleType Issues

    After beating my head against the wall more than a few times and wasting a couple of hours, I realized I put P_PCT in the ADO function instead of p_accr_adj_pct which is the Oracle variable name. ***DOH!!!!*** Thanks all!
  14. LadyDragon

    ADO Parameters and OracleType Issues

    I've commented out the percentage parameter and it executes fine - the percentage parameter has a default set up as 100. I want to be able to pass something other than that, however, which is where the problem arises. This runs fine with only 4 parameters set and calculates using the default...
  15. LadyDragon

    ADO Parameters and OracleType Issues

    Actually, I'm modifying already existing code where the p_edate was not declared. The p_edate is defaulted in Oracle, so it should be ok not having a parameter passed to it (it was OK prior to my tinkering with it). I've tried adding the following: new...

Part and Inventory Search

Back
Top