Search results for query: *

  1. E

    Question guidelines to handle exceptions in a class

    I created a custom collection class with some methods: each of these has some parameters and throws an exception if a parameter is not valid. For example, the Add and Remove methods throw an NullReferenceException if one of their parameters is null. Sub Add(ByRef word As String) If (word Is...
  2. E

    Question P2P application using WCF and C# 4

    Hi, I should start a C# project to deepen the WCF technology as part of my degree course. In particular I would like to create a simple application of distributed computing based on the P2P paradigm, in which each node establishes a connection with only some nodes (partially connected...
  3. E

    Question get all the partitions on the system

    ... I would make a DVD without using other systems...
  4. E

    Question get all the partitions on the system

    Hi, I would make an unattended recovery disk for my Dell laptop using Windows PE 2.0 and, so I am in need of a program which analizes the first disk on the system in order to get all partitions. The program should check: - if there is an OEM partition (hidden); - the number of logical...
  5. E

    prevent access to drives

    Well... I should create a driver for Windows XP. After installing this driver, Windows XP should use it in order to access to the selected drives. I will try to make it. Thanks a lot!
  6. E

    prevent access to drives

    Hi, I would make a Windows service in order to prevent an user account from accessing to one on more drives. Is it possible? Thanks a lot! :)
  7. E

    Web Project in Visual Basic 2005

    Hi, I have downloaded and installed Visual Basic 2005 Express Edition. When I open a Web project, VB2005 prompt this error: "Web project component not installed. Unable to convert project: http://localhost/dotnetnuke/DotNetNuke.vbproj" How can I solve this problem? Thanks!
  8. E

    reading a Word document

    :confused:
  9. E

    Reading Word File

    I have download the DSoFramer ActiveX, but I don't know how must be used this ActiveX in order to obtain the text contained in a Word document :( Has someone used it and can he help me? Thanks!
  10. E

    Reading Word File

    Sorry... I should implement a stand-alone library which make some statistics about the words within a Word document, in order to store them on a database. Thanks a lot! Now I try it.
  11. E

    Get Selected Text

    I'd like to make a routine which could get the selected text within other programs's windows... It is possible? Thanks!
  12. E

    Get Selected Text

    It is possible to get the selected text within any opened window? It exists some API regarding to this functionality? Thanks!
  13. E

    understanding Hashtable

    A Hashtable implements the IDictionary interface and as such it is a data structure that supports key-and-value pair look ups. The Hashtable is defined by two variables: The load factor and the initial capacity. The initial capacity is the number of buckets in the hashtable at the time of...
  14. E

    reading a Word document

    http://www.vbdotnetforums.com/showthread.php?t=4988
  15. E

    Reading Word File

    Thanks:D I added the COM reference and I'm succeeded in extract the text! It is possible extract the text without using MS Word? Thanks!
  16. E

    Reading Word File

    Unfortunately I don't know how I can help you:(, but I'd be very grateful if you'd explain to me how you read a Word document:o. Thanks a lot!
  17. E

    understanding Hashtable

    Hi, It is possible avoiding collisions within an Hashtable object if I know the max number of the entries which will be inserted into? Thanks!
  18. E

    reading a Word document

    Hello:D I should implement a DLL in order to read the words contained within a Word document and their occurrences. It is possible? What functions should I use? Thanks!:)
Back
Top