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 Mike Lewis 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. secureshell

    Backing up .PST (Personal Folder) files programmatically

    Hi Marcs41, Thx for the link but the trouble is that I need to implement this feature as part of my application. I am already aware of the backup add-in but I would appreciate it if you knew how this can be done programmatically. Thank you. secureshell {W r i t e C o d e A n d K i c k A s s}
  2. secureshell

    Backing up .PST (Personal Folder) files programmatically

    Hi, I am trying to figure out if there is a way to backup .pst (personal folder) files without shutting down outlook? I am trying to do this with VB.NET and outlook automation. If there is another way or another library I should be using then please let me know. TIA secureshell {W r i t e C...
  3. secureshell

    Backing up .PST (Personal Folder) files

    Hi, I am trying to figure out if there is a way to backup .pst (personal folder) files without shutting down outlook? I am trying to do this with VB.NET and outlook automation. If there is another way or another library I should be using then please let me know. TIA secureshell {W r i t e C...
  4. secureshell

    Deserialization in .NET 1.0

    Hi, I've an issue with deserializing a byte stream from a flat file in .NET 1.0. The file was originally created/serialized using .NET 1.1 using BinaryFormatter. The actual type serialized was "PointF" from the System.Drawing namespace. As you may know, the System.Drawing assembly versions are...
  5. secureshell

    newbie question

    Do you mean you want to read from a text file (e.g. test.txt) and fill it in a rich textbox control? {W r i t e C o d e A n d K i c k A s s}
  6. secureshell

    Word Application Object - Quit method issues errors during compile

    Here is the solution to the problem. The objWordApp had to be cast explicitly before calling the Quit method e.g: CType(objWordApp, Word._Application).Quit() This is due to the COM reference to the MS Word 11.0 Object Library. You can find a detailed explanation here...
  7. secureshell

    Word Application Object - Quit method issues errors during compile

    I should have mentioned in my previous post that I did try setting objWordApp = Nothing, hoping for the same thing but that doesn't work either. I have made sure that there are no other references in the code to this object and after completely shutting down the application and the IDE...
  8. secureshell

    Word Application Object - Quit method issues errors during compile

    Hi, I am referencing the MS Word 11.0 Object Library v8.3 (COM) in my VB.NET project. Basically I am using word automation to prefill some word documents with data. All the members exposed by the Word object seem to work fine except for the "Quit" method that raises the following compile error...
  9. secureshell

    Size of a Class Object

    I see. Thx, that should provide me with what I was looking for. {W r i t e C o d e A n d K i c k A s s}
  10. secureshell

    Size of a Class Object

    Hi, I have read the "Data Type Summary" topic in MSDN and this is what they have to say about Object and User-defined data types: Data type | Storange | Range Object | 4 bytes | Any Object reference User-defined (using Type) | Number required by elements | The range of each...
  11. secureshell

    Resizing Grid when Resizing Form

    1- Make sure 'frmGridUI' is the name of the form you are trying to resize. 2- If you are trying to resize vertically ONLY, the width will NOT change but the height property will. Where as in your code you are only assigning the width of the form. 3- In the resize event, try putting the code...
  12. secureshell

    Progressive Average

    Works sweet so far DanJR. Thx for your help. {W r i t e C o d e A n d K i c k A s s}
  13. secureshell

    Resetting the Auto Number back to 0

    Just a suggestion, try deleting the auto number column (assuming you have no records in the table - as you said) and then creating it back again. {W r i t e C o d e A n d K i c k A s s}
  14. secureshell

    Progressive Average

    Thx DanJR. Your query is working fine if I were to order it by ID and then weight. But this is what I forgot to mention in my initial post. There is a date column as well and basically the way I would like to order it would be by ID and then date. The weights in each record could be a random...
  15. secureshell

    Progressive Average

    Hi, I have a table with the following fields & values: ID Weight 1 10 1 15 1 20 2 18 2 22 2 25 I need to display the progressive average of the 'Weight' field for each record grouped by ID, e.g; ID Weight Avg 1 10 10.0 -> (10/1) 1 15 12.5 -> [(10+15)/2] 1 20 15.0 ->...
  16. secureshell

    Installing Gnome 1.4 on RedHat 7.2

    Thx. kpackage did show me all the dependencies but now I wanna know if there is a way to install all of them in one swoop. {W r i t e C o d e A n d K i c k A s s}
  17. secureshell

    Installing Gnome 1.4 on RedHat 7.2

    I just installed RedHat 7.2 with KDE and omitted the Gnome installation initially. Now I want to install Gnome on my machine. I have the rpm files on a CD but when I tried to install it using rpm, it gave me a huge list of unresolved dependencies. Does anyone know of a better way to install...
  18. secureshell

    Hiding Columns in MSFlexGrid

    >If you set the AllowUserResizing property equal to >flexResizeNone (0), then the the user can't resize the >grid cells Well, you are right about the AllowUserResizing property but unfortunately the users want the columns to be resizable. And setting the ColWidth property to 0 is the right way...
  19. secureshell

    Hiding Columns in MSFlexGrid

    Hi Guys, I am hiding columns in an MSFlexGrid by setting the ColWidth property = 0. Well this works for the columns that I am trying to hide in between. But the first column that I need to hide can be made visible by the user by rolling their mouse over and getting the 'Resize Column' mouse...
  20. secureshell

    How do I tell what version of Linux I'm running?

    'uname' will do it. look at the man pages for more options. {W r i t e C o d e A n d K i c k A s s}

Part and Inventory Search

Back
Top