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 bkrike 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. RexHeadlong

    Processing Registered Windows Messages

    Please bear with me, this posting is long. I hope somebody has some good ideas here. My company has a C++ application (call it MyApp) that is allowed to be spawned by a number of 2nd applications. The 2nd application runs MyApp, then registers a special message type and sends the message. I...
  2. RexHeadlong

    Controlling a service from an assembly

    Hi, I've seen similar posts, but as yet no viable solution, so here goes: I am using C#/.NET V1.1, etc. I have a client.exe which, when started, connects to a service on the same or different machine. For now, let's assume the client and service apps are on the same machine. I would like to...
  3. RexHeadlong

    How to unselect the CurrentCell in a DataGrid

    I've got a derived DataGrid class and I need to be able to set the CurrentCell property to nothing. I've used code I found on another website that sends a mousedown/mouseup message to the 0,0 pixel of the grid. This works in un-setting the CurrentCell, but the side-effect is that my mousedown...
  4. RexHeadlong

    DataGrid CurrentRowIndex unwanted behavior

    I seem to be going crazy on this one. I've got a derived DataGrid class, with standard row headers. When I set the CurrentRowIndex property, I get the little black chevron sitting on the desired row header, which is fine. But, at the same time, my grid is scrolled all the way to the left...
  5. RexHeadlong

    ComboBox.Text not working properly

    Does anybody have an idea why, when I assign a ComboBox.Text property, it does not appear to take? I have a ComboBox with DropDownStyle = DropDown. During the Load event handler of my form, I bind it to an ArrayList of strings. But, I want the initial text in the ComboBox to be a string that is...
  6. RexHeadlong

    Multiple desktop icons for the same project?

    Has anybody had experience with making a project contain one of several possible icons for the desktop? I have a project that I want to make have a different desktop icon for a different build configuration. I already have my icon set to "myicon.ico" in the .csproj file. I already have a...
  7. RexHeadlong

    Multiple Application Icons?

    This question might be more of a VS .NET question than straight C#, but here goes. I'm trying to set up a method by which my application can be compiled using one of two different application icons. So, when I build it one way, I get my .exe with one icon associated with it. But, if I build...
  8. RexHeadlong

    Creating an editable column in a DataGrid

    I'm trying to create a read/write column in a DataGrid. I bound my DataGrid.DataSource to my DataTable.DefaultView. I created my DataGridColumnStyles and added them to a DataGridTableStyle, which I then added to my DataGrid's TableStyles collection. After all is said and done, I've verified...
  9. RexHeadlong

    .NET Remoting problem

    Hi, This is the closest forum I can find relating to .NET Remoting. Besides, I am using C# for it. If someone knows of a better forum to post this, I'm all ears. I'm pretty new to Remoting,  read various articles, tutorials, and chapters of other books.  I've only read Chap 2 of Ingo...
  10. RexHeadlong

    FCL Hierarchy Chart?

    Hey, all. Does anybody know where I can get my hands on a .NET Framework Class Library hierarchy chart, without shelling out the $150 for the 4-volume reference set? I only need the poster, not the whole reference! Thanks to anyone who can help!
  11. RexHeadlong

    Code or API for Automatic Updates?

    Please forgive if this is the wrong forum. We are going to be creating a Windows-based .NET app in C#. One of the features is similar to MS "Automatic Updates" or the anti-virus "LiveUpdate" utility that will automatically check for, and/or download and install data...
  12. RexHeadlong

    How to implement a cancel search?

    Hi, all. I've got about 2 months experience with JSP, so bear with me. I'm sure this has been done before. I can't find any good clues as to how to do it though. I'm using JSP with Struts. I'm trying to implement a database search, where you can cancel the search at any time before the...
  13. RexHeadlong

    I want to force a table row to scroll into view

    Hey, all. The short version: Is there a Netscape 6+ equivalent for the IE scrollIntoView() function? The long version: I have to support both NN6+ and IE5+. I have a table with lots of rows in it. The table is in a <DIV style=&quot;overflow:auto&quot;>. I want to force a given row to be...
  14. RexHeadlong

    Image column in database to be used as text

    Hi, all. I have an image column in the database that is being used to store variable-length ASCII text. My application currently reads this binary data, creates a temp table where the text is now stored in a varchar field, splits up the binary data into smaller lines of text, and writes the...
  15. RexHeadlong

    Any opinions on Crystal Decisions Technical Support?

    Hi, all. Maybe this is not the right place for this. If so, sorry. Does anybody have any experience with Crystal Decisions Technical Support? I am trying to justify the purchase of a tech. support 5-incident pack, and our purchasing dept. want some kind of assurance that it will save us money...
  16. RexHeadlong

    Can you rename or alias a column on a report?

    Hi, all. I am using Crystal Reports Developer 8.5, MS SQL Server 2000, and Visual C++ 6.0 Background: In my .rpt file, the underlying query joins a table to itself, and displays the same column twice in the report. The underlying query looks somewhat like this: select m.part_number, a1.col1...

Part and Inventory Search

Back
Top