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 TouchToneTommy 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
  • Content: Threads
  • 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

    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
  6. 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...
  7. 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"...
  8. 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
  9. 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
  10. 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
  11. 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...
  12. 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...
  13. redav

    Problem with query - I am sure this should be easy

    Hi I am trying to do a query which is pretty straightforward but I'm having real problems getting the correct results. Just to quickly surmise the problem I have an 'employees' table with a unique ID, a 'reports' table with a unique ID and also a lookup table which links the two together. It...
  14. redav

    Center Report Icon within listview

    Hi I need to center the icon of a subitem in a listview. I would be grateful if anyone could advise me. Redav
  15. redav

    Printing Issues

    Hi I've created a report which is sent to a dot matrix printer but it keeps giving uncertain results. I'm printing pay slips and have changed from printing direct to the PRN bypassing the windows print server. Is it possible to use reports for this type of output. Regards Redav
  16. redav

    Instance State Shut Down

    Hi I'm migrating data from DBF to Oracle via ODBC. The problem I'm having is now and again I lose connection to the database. When I go into the enterprise manager I find that the Instance State has shut down on the database I'm connecting to. Errors Ora-01034 and Ora-27101 are displayed...
  17. redav

    ComboBox

    I'm creating a user control using a ComboBox and MonthCalendar. I have the MonthCalendar property visible=false. How do I stop the drop down from displying the empty list and show the MonthCalendar. Regards Redav
  18. redav

    URGENT Listview color headers

    Hi I need to color the headers of a Listview does any one have any code for this or know of a free control that allows this !!! Cheers
  19. redav

    URGENT Listview headers

    Hi I need to color the headers of a Listview does any one have any code for this or know of a free control that allows this. Cheers
  20. redav

    HELP !! ListView Component Class

    I've started a component and cannot work out how to get to the column headers to color them with a selected header color which I will add in the Appearance. This code draws a line around the outside of the listView but does not incorporate the header. I need a solution quick as I've spent to...

Part and Inventory Search

Back
Top