Search results for query: *

  1. F

    Question Could not open macro storage

    I found the solution. Right click the docx, select properties then UNBLOCK. It would seem that word puts a block on the file if its downloaded from the internet.
  2. F

    Question Could not open macro storage

    I am getting an error "could not open macro storage" when trying to open a docx file using vb.net (3.5). It works on some machines but not others. For example it errors on a windows 7 machine running office 2010. Heres the line of code that causes the problem:- pDoc =...
  3. F

    Question Problem with notify on property change

    Thanks JohnH, that works fine. It's been bugging me for ages!
  4. F

    Question Problem with notify on property change

    Now I am confused.
  5. F

    Question Problem with notify on property change

    Here is the test code which recreates the problem: '----------------clscustomer class --------------- Imports System.ComponentModel Public Class clsCustomer Implements INotifyPropertyChanged Public Event PropertyChanged(ByVal sender As Object, ByVal e As...
  6. F

    Question Problem with notify on property change

    Hi John, thanks for replying to my question and sorry for the big delay, I got sidelined on another project. I am not entirely sure I understand what you are saying. Do you mean that the problem I am having shouldn't happen and that there is something wrong with my code because I have just...
  7. F

    Question Problem with notify on property change

    This relates to vb.net on vs2008 I have a form (in actual fact many forms) in which the fields are bound to the public properties of class I have created. For example let say it is a customer class object oCustomer of type clsCustomer. In the Set section of property declaration I use the...
  8. F

    Question Automate different versions of Word from Visual Basic .NET

    Thanks Paszt, your help is much appreciated.
  9. F

    Question Automate different versions of Word from Visual Basic .NET

    I need to create a word document from vb.net (2008) and have found this very useful page here... How to automate Word from Visual Basic .NET to create a new document The problem I have is that I have office 2007 on my machine but my customer has many machines with many different versions of...
Back
Top