Search results for query: *

  1. M

    Range could not be deleted

    Discovery I think I discovered the solution. I was creating a bookmark on a field. If I added plain text, highlighted the text I wanted to change and created a bookmark on that text I was able to execute the code with no error. MTmace
  2. M

    Range could not be deleted

    I am trying to open a word doc, make some changes where I have placed bookmarks and then save the document. I tried to follow the example found support.microsoft.com/default.aspx?scid=kb;EN-US;Q3316383 but get the following error. This Range can not be deleted I have confirmed that my book...
  3. M

    Word in VB.net

    Could someone point me in the right direction? I am looking to create a word document from my vb.net application. This needs to be a formatted document with our company's logo. What is the best way to do this? Using the word object? Creating a word template and write to that? MTmace
  4. M

    Update All Record

    Is there a way to update all records in a datatable without looping through each record? Me.dsLossNotice.Tables("NameAddress").Rows(0).Item("FldAddPolicyKey") = intPolicyKey MTmace
  5. M

    Delete Dataset

    I need to completely remove a dataset from my application. I tried the following: Me.dsLossNotice.Clear() Me.dsLossNotice.Dispose() That only seems to clear the data. Thanks, MTmace
  6. M

    Select max id in datatable

    How would I select the max value of a datatable? intMaxID = Me.dsLossNotice.Tables("NameAddress").Select(???)
  7. M

    Add an empty option

    Thanks I am using the runtime option. I did get an error: the findbytext is not a member of the system.windows.forms.combobox.objectcollection Is there another class that I need to add that includes the findbytext? Thanks, MTmace
  8. M

    Add an empty option

    I have a combo box bound to datatable. How would i add a record with no entry in it? MTmace
  9. M

    Concatenate fields

    I have a data table with a couple of fields (firstname, lastname). I am trying to create a third field with first and last name combined. The problem is sometimes the first name is null. newcol.Expression = IIf(IsDBNull(m_Claim.polNameAddress.Columns("FldAddNameFirst")), "FldAddNameLast"...
Back
Top