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 wOOdy-Soft 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: MarkRuse
  • Content: Threads
  • Order by date
  1. 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?
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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
  7. 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 ...
  8. 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...
  9. 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...
  10. 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...
  11. 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
  12. 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
  13. 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...
  14. MarkRuse

    Converting BSTR's to char *

    Hi,<br> <br> I am currently trying to write a ATL object which takes in a BSTR and convert it to a char *. I then put this char * into a Roguewave RWCString object to create a string object.<br> <br> fn(BSTR *Source)<br> {<br> unsigned DataLen;<br> BSTR BstrData;<br> <br> RWCString...
  15. MarkRuse

    Converting BSTR's to char *

    Hi,<br> <br> I am currently trying to write a ATL object which takes in a BSTR and convert it to a char *. I then put this char * into a Roguewave RWCString object to create a string object.<br> <br> fn(BSTR *Source)<br> {<br> unsigned DataLen;<br> BSTR BstrData;<br> <br> RWCString...
  16. MarkRuse

    Problems firing LIKE Queries in Access

    Help,<br> <br> I have a problem firing a SELECT Query with a Like clause in it at an Access 97 Database. ie 'SELECT Name FROM Customer WHERE Name Like '*BOB*'.<br> <br> If I fire the SQL in the Database window it works fine, but when I Attempt to <br> <br> .Open SQL , Connection ,1 ,1<br> <br>...
  17. MarkRuse

    Using JavaScript to dynamically update a page

    The below code will display two HTML SELECT boxes. When the user changes the first one when the page is loaded the second one gets populated with data which relates to what the user has selected.<br> <br> The Code works fine but I am now trying to put some finishing touches to it, and I have...

Part and Inventory Search

Back
Top