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 SkipVought 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: *

  • Users: redav
  • Order by date
  1. redav

    Using C# Addin (Office interop)

    Hi I'm writing a addin to remove the custom properties within a word doc:- The expample adds a custom property which works fine but what i need to do is then remove it (Remove does not work). strIndex = "Test Custom"; strValue = "Test Value"; object[] oArgs =...
  2. redav

    Upsizing Access 2000 BD to SQL Server 2005 Express Edition

    Hi I have an Access 2000 Database which I am upsizing to SQL Server 2005 Express Edition. The Database has 29 tables and 60 stored queries. Each time I upsize to SQL Server the tables come in fine but non of the queries are imported. All of the queries are very simple Select, Insert, Update...
  3. redav

    Problem updating an Access DB with a DataTable when using stored procs

    Hi This is a strange one. I am updating an Access table from a DataTable and the same record is inserted multiple times when using a stored procedure but works OK if I build the update query in a string. I am performing the update like this:- daDataAdapter.InsertCommand = New...
  4. redav

    Addins Outlook

    Hi I'm new to addins with vb.net. What I'm trying to do is when the user creates a new mail in outlook and clicks the send button I need it to display a message before it closes and sends. Any help would be very appreciated. Regards Redav
  5. redav

    Menu MDI Child

    Thanks Redav
  6. redav

    Menu MDI Child

    Hi I've created a MDI with a menu, then created a MDI Child with a menu. Is it posible to display the Child menu on the child form and keep the MDI menu displyed with its menu. Thanks Redav
  7. redav

    Open Outlook attachments through VB addin

    Hi I'm creating an addin to open word documents on the event itemsend within outlook (See Code below) How do I get the full path of the attachment as I only seem to be able to get the file name by using:- (Item.Attachments.Item(1).FileName) Private Sub objOLApp_ItemSend(ByVal Item As...
  8. redav

    Accessing arguments passed to a modal form in Page_Load

    Yep I might be able to do this. If I pass the value through as a query string how do I access it in the Page_Load event? Many Thanks
  9. redav

    Accessing arguments passed to a modal form in Page_Load

    Sure The modal web form is populated with data for the user to make a selection. The type of data the user is to select (i.e. clients, items, whatever) is identified with the variable intSearchType which is passed from the main form to the modal. Hope I have explained that clearly. If not then...
  10. redav

    Accessing arguments passed to a modal form in Page_Load

    Thanks for the reply vbkris. The hidden field is already a server control and once the value has been put in it I can access it in VB.NET with no problems. The problem arises because I want to access the passed variable in the Page_Load event of the modal page. My understanding is that this...
  11. redav

    Accessing arguments passed to a modal form in Page_Load

    I have a main web page which opens a modal web page and passes an integer argument into the modal page:- function open_modal(intSearchType) { var WinSettings = "status:no;dialogWidth:520px;dialogHeight:250px;dialogHide:true;help:no;scroll:no"; window.showModalDialog("GeneralItem.aspx"...
  12. redav

    DataReport.PrintReport(true)

    Hi Does anyone know how to close the report after printing it as when I exit out of the application it does not close properly as the report is still open in memory. If you use ( SET DataReport = Nothing ) after the above command a vb6 application error occurs. Regards Redav
  13. redav

    Open up attachment amend and save.

    Hi I need a little help. I want to create a vb.net app to do the following:- When the user clicks send on Outlook / Express, if a word document is attached I need to open it transparently and add some text save and close. Any help would be appreciated Thanks Redav
  14. redav

    Capture Send Mail from Express / Outlook

    Hi I'm not to sure if I'm in the right forum but I have written an application in VB.net and I need to execute it on the click of the send button of Express or Outlook. Regards Redav
  15. redav

    Oracle Reports Performance

    Thanks for your reply. This makes it alot clearer Thanks Redav
  16. redav

    Oracle Reports Performance

    Hi I'm new to oracle reports but would be grateful if you could give me a quick break down on how it creates the report. The application is been developed by a third party but we have issues with the speed of the reports. I can query the Database (oracle9i) and pull back the data very...
  17. redav

    Filling a Dataset from Excel and then inserting the data into Access

    Hi I want to use code to import an Excel worksheet into an Access table. I can easily fill a dataset from the Excel worksheet but I am having problem getting the data into Access. I am using a DataAdapter update command (which I have used in other apps) but obviously the DataRowState for each...
  18. redav

    Problem with query - I am sure this should be easy

    Sorry, my mistake, the year stuff works great now. Thanks to you and lespaul for your help with this. I now have it working just right.
  19. redav

    Problem with query - I am sure this should be easy

    Thanks for the reply. Sorry, yes I did put add the AND onto the WHERE as you stated above. Here is the amended table:- lk_employees_reports ID fk_employees_id fk_reports_id YearEnd DateProduced 1 1 1 2004 14/09/2004 2 1...
  20. redav

    Problem with query - I am sure this should be easy

    Hi Thanks very much for the help. The query works great. I don't need to update using this query as each time a report or reports are printed the relevant record in lk_employees_reports is updated or if it does not exists for the printed report a record is inserted. Just one more minor...

Part and Inventory Search

Back
Top