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

  1. MarkRuse

    Missing Remote tab on System Properties

    Hi bcastner, You are absolutely right. Disabled it some time back (paranoid) and forgot all about it. Thanks Mark
  2. MarkRuse

    Missing Remote tab on System Properties

    When I right click on My Computer I see 6 tabs instead of 7 with the Remote tab missing. This is really strange as it used to be there and now I can't setup RDC. I am running SP2. Any ideas?
  3. MarkRuse

    RichTextBox Scroll

    Hi, I have a rtb with a document within it. I also have another rtb to the side which I would like to use to display line numbers, so as the user scrolls through the document they know where they are. I am pulling my hair out trying to work this out. The simplist way to do this would be...
  4. MarkRuse

    HTTPWebRequest POST issue

    Hi, When using the HTTPWebRequest object to perform a POST operation, the object under the HTTPWebRequest object called ServicePoint increments its CurrentConnections property. This will increment on every submit of the POST. Also on this object it has ConnectionLimit set by default to 2...
  5. MarkRuse

    Best Practices Web SQL DB connection

    Hi, I am used to connecting to a SQL Server db over the web using RDS. After looking on the Microsoft website, I discovered that this is now not the approved way. Can anyone let me into what is the approved way. ie WebService, Remoting etc. Kind regards Mark Ruse
  6. MarkRuse

    STL basic_string

    Hi Pete, We have now solved this problem, the problem is that when you put data into a basic_string, the data can be truncated if there is a null in the binary part of the string. By assigning the binary stream to the string, it appears to not work (in the watch windows, the string seems...
  7. MarkRuse

    STL basic_string

    Hi, We tried this approach but suffered from performance issues. Do you have any other ideas ? Mark
  8. MarkRuse

    STL basic_string

    Hi, I need to populate a basic_string with keys supplied by a calling program. I put all these strings into a vector, then sort it. This has been working fine, and we are happy with performance. The problem has now arisen where the keys may sometimes have binary data within them. Will this...
  9. MarkRuse

    Web page reading in .net

    Hi, I am writing an app that I want to read content from various web pages. I have done this in VB6 using an Internet Explorer control and the DOM model. Does anyone know if there is a better approach to this within .net? Thanks Mark Ruse
  10. MarkRuse

    MultiLine Tooltips

    Hi WoodLark, I am sending in the CRLF as in your example. What seems to be happening is that the tooltip is not processing the characters, ie just displaying them. Any other ideas. Mark.
  11. MarkRuse

    MultiLine Tooltips

    I am currently trying to display rather large amounts of text in various control tooltips. I would like to make them multiline, so I have sent in a crlf which seems not to translate (I see the two 'unprintable' characters). Does anybody know of if I can hook into the API to achieve this ...
  12. MarkRuse

    Is it possible to put Events in an Interface ?

    Hi, I am starting to fiddle with Interfaces, and have created an ITimable interface. I wish to define some events that classes implementing this interface have to raise back to the client code, namely Complete. When I implement the ITimable in a class, I cannot raise the Complete event...
  13. MarkRuse

    Properties

    ;-) Has anybody else got ant ideas ? I could use ATL to give me properties via COM, but are there any other ways ? Mark
  14. MarkRuse

    Properties

    Hi, I have created a Class for a DLL as follows : Class Test { public: private: long lng_Variable; } I can write a method to give access to the lng_Variable, but I would prefer to write a Property so that my clients can write things like : Test Tester; Tester.Variable = 4; instead of...
  15. MarkRuse

    Speed problems after migrating from 6.5 to 7.0

    I have run the profiler, and nothing seems amis. If I limit the select to say do the first 700 OrderID's it works instantly, but if I move to the next available OrderID say 703, then it will take forever. If I then select out 703 to 710, it will be instant again. It almost looks as if I am...
  16. MarkRuse

    Speed problems after migrating from 6.5 to 7.0

    I have just finished a port from a database which was 6.5 to 7.0. Performance is great, apart from one query which is working with a view. Here is the SQL. SELECT ProductCount.OrderID, CASE WHEN ProductCount.ProductCount = 1 THEN ( SELECT DISTINCT Product.Name FROM Segment, Product...
  17. MarkRuse

    Passing arrays from VB to C++

    Hi,<br> <br> Does anybody know how to pass VB arrays to a C++ DLL. The DLL has no COM support, nor is a MFC dll.<br> <br> The arrays I wish to pass are an array of strings, and an array of longs.<br> <br> Please help, as I can't read another MSDN page!<br> <br> Mark Ruse
  18. MarkRuse

    Passing arrays from VB to C++

    Hi,<br> <br> Does anybody know how to pass VB arrays to a C++ DLL. The DLL has no COM support, nor is a MFC dll.<br> <br> The arrays I wish to pass are an array of strings, and an array of longs.<br> <br> Please help, as I can't read another MSDN page!<br> <br> Mark Ruse
  19. MarkRuse

    Can't Install Office 97

    No the build is NT4 SP4 with no other software installed. PC's range from DELL P111 to Compaq Deskpro 2000.
  20. MarkRuse

    Can't Install Office 97

    After putting a PC on our Domain I cannot install Office 97. Error message reads &quot; MS Office was not successfully installed at this time&quot; This message appears after I am prompted for the path to install. It says &quot; Searching for installed components&quot; for 10 sec before the...

Part and Inventory Search

Back
Top