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 strongm 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. klornpallier

    XmlDocument NameSpace Trouble

    Hi, I have the xml below which I am reading using XML Document. My code also below works fine if I take the namespace out of the xml but I cannot seem to get the reader right with the NameSpace. Advice would be appreciated. <?xml version="1.0" encoding="UTF-8" ?> - <iPOSImports...
  2. klornpallier

    XPATH Childnodes Headache

    Hi, PLease help as I've spent two days confused on this! I'm trying the read the xml file below node by node with the code also below this. All the childnodes values seem to be concatinated together on the output, for example: DeliveryAddress : HO/A0221Wyatt HouseThe ButtsSanctuary...
  3. klornpallier

    BULK_EXCEPTIONS

    Sorry I've worked this out now. I simply need to put the field name at the end to output the values. v_data(SQL%BULK_EXCEPTIONS(j).ERROR_INDEX).pay_group
  4. klornpallier

    BULK_EXCEPTIONS

    Thank you for your reply! So how would I get all the values for the selected columns in the column index to output to dbms_output for example?
  5. klornpallier

    BULK_EXCEPTIONS

    I am using the standard Oracle BULK_EXCEPTIONS to trap any invalid rows. Unfortunately I only can get the index number of the row. How do I obtain more info from the row? My code is: CREATE OR REPLACE PROCEDURE PSADMIN.GLI_EXTRACT_KP AS bulk_errors EXCEPTION; PRAGMA...
  6. klornpallier

    Impromptu Prompt Date Format

    thread401-1033316 Hi, I have exactly the same problem as the above thread and have tried the solutions given but with no luck. The only difference is that I am on 7.1 Any Ideas?
  7. klornpallier

    Disabling a Button with a Click Event

    I want the ButtonName to be disabled and greyed out when I click another MenuToolStripButton.
  8. klornpallier

    Disabling a Button with a Click Event

    Ironically although 'MenuToolStripButton.Enabled = False' doesnt work 'MenuToolStripButton.Available = False' does! Now I'm really confused. I cant be bug visual studio bug surely??
  9. klornpallier

    Disabling a Button with a Click Event

    Thanks for your efforts but annoyingly neither work for me! :( Any further ideas?
  10. klornpallier

    Disabling a Button with a Click Event

    Here's the full Sub. The problem is on the last 2 lines of code. Thanks again Private Sub BindingNavigatorAddNewItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorAddNewItem.Click 'Set Defaults...
  11. klornpallier

    Disabling a Button with a Click Event

    Thank you for your response. Its a ToolStripItem so I changed this to the below but is doesnt still work. Oh and yes ButtonName is the naem of the control: CType(sender, ToolStripItem).Enabled = False
  12. klornpallier

    Disabling a Button with a Click Event

    I need to disable a menu button once it is clicked. Within the click event of the button I placed: ButtonName.Enabled = False This does not seem to work. Any help would be appreciated. Thanks
  13. klornpallier

    Data Grid Using If Statement

    Im trying to change a cell value on a insert into a table from a datagrid like below but I cannot seem to get the code right. Please help! If(VARIABLE_INPUTDataGridView1.Item(var_cash_col_no, row_no).Value) = "Adjustment" Then VARIABLE_INPUTDataGridView1.Item(var_cash_col_no, row_no).Value)...
  14. klornpallier

    DataGridView Default Value

    Spiffing! Cheers
  15. klornpallier

    DataGridView Default Value

    Thank you I tried as you described in the forms load event but the default value does not appear in the datagrid: KPPERSON.VARIABLE_INPUT.Columns("PERIOD").DefaultValue = "2" I get the error below: Object reference not set to an instance of an object. Any Idea
  16. klornpallier

    DataGridView Default Value

    I guess this is really easy if you now how but how do you add a default value to a DataGridView cell. I tried the following off msdn but it dont work: Private Sub VARIABLE_INPUTDataGridView1_DefaultValuesNeeded(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewRowEventArgs)...
  17. klornpallier

    vbCr and Empty Strings

    Thanks I sort of worked tha bit out myself but cannot seem to get the code right! Using the example could you show me how to do it?
  18. klornpallier

    vbCr and Empty Strings

    Hi, I would be very greatful if someone could me an idea with this one. I'm sending an Outlook email and printing the values to the body: oMsg.Body = "Dear " & Me.PREFERREDLabel1.Text & "," & vbCr & vbCr _ Me.DrivingLicErrLabel.Text & vbCr & _ Me.DrivLicExpErrLabel.Text & vbCr & _...
  19. klornpallier

    NEXTIF on a Mailmerge

    But I need the Applicant ID on the but page too!
  20. klornpallier

    NEXTIF on a Mailmerge

    Im trying to do a mailmerge on a word document and think I need to use NEXTIF. For example (see below) I have two columns on a csv and need Applicant ID's Surname's on one document and 99999 on another. How would I do this as the examples I've seen do not appear to be clear? Applicant ID...

Part and Inventory Search

Back
Top