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 strongm 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: Echilon
  • Content: Threads
  • Order by date
  1. Echilon

    Sharepoint / ASP.NET - Login and user creation

    I'm trying to integrate SHarepoint with ASP.NET and automate some things. First, I need to login to sharepoint automatically when a user logs into ASP.NET using the ASP.NET membership provider. So far I've found limited information about Active Directory and LDAP, but nothing with standard...
  2. Echilon

    Crosstab with MSSQL

    I posted a couple of weeks ago regarding a crosstab in MySQL ( http://www.tek-tips.com/viewthread.cfm?qid=1513428 ). The solution I found worked perfectly, but now I need to implement the same thing in SQL Server 2008 and it's more difficult than I though. There's a graphic to illustrate the...
  3. Echilon

    GROUP BY and DISTINCT

    I have a few tables and I need to select multiple fields from each. This query works but it doesn't class rows as unique, since if multiple translationids exist, there are multiple rows with the same translationid. I need a single row for each translationid. SELECT DISTINCT...
  4. Echilon

    Remapping fields

    I'm trying to reorder/group a set of results using SQL. I have a few fields (which for the example have been renamed to something a bit less specific), and each logical group of records has a field which remains constant - the address field. There are also fields which are present for each...
  5. Echilon

    Indexes and integrity

    I'm trying to get an index working on a table. This is my data structure (with non important columns omitted): Each translation in the translations table can be used by none or more elements. For example: --Elements-- (id, translationid, elementname) 1000, 1, 'btnDay' 1001, 1...
  6. Echilon

    Unusual Events

    I'm trying to create an HTML editing control in C# using the technique at http://www.codeproject.com/KB/IP/WYSIWYG_netHTML2.aspx . The control works fine, but there's a nagging thing I'd like it to do. Usually in a text editor, when you change the selection, if the selected text is bold or...
  7. Echilon

    Small Icons in a ListView

    I need to display a grid of icons to allow a user to select one. The only way I can think of doing this is with a ListView in Small Icons view, which works, but not as I need. The problem is that the width of each item is too big. For example, the ListView is filled using this code: for(int i =...
  8. Echilon

    Unix Times in DataGridView

    I have a DataGridView which gets data from a DataSet, one of the columns in the DataSet has an integer (a unix timestamp). I need to display the timestamp as a formatted DateTime, but I can't figure out how. I have a static method which converts unix times to DateTimes, but I can't find any...
  9. Echilon

    Icons from resource name

    I'm trying to access image resources in my application, but I can't the resources from the application, I just end up with null. I've added the resources in the properties section in visual studio 2008, and the code I'm using is private ResourceManager res = new...
  10. Echilon

    Docking/Anchoring controls

    I have a user control (which for the purposes of this post is just a container), and several nested user controls. I want to lay out the child controls inside the container in a similar way to the attached picture. I've tried different combinations of Anchor and Dock properties as well as using...
  11. Echilon

    Scrolling with GDI

    I'm trying to draw a sort of table onto a UserControl in C#. The table will resemble something like an Excel spreadsheet, with a header at the top and a column visible to the left side (these will always be visible, regardless of scroll state). I'm also going to have a number of vertical...
  12. Echilon

    Foreach loop in Access

    I have two tables, [Property] and [Booking]. What I need to do is select every ID in [Property], then move to [Booking] and select every booking which matches [Property].[ID]. I've been trying for hours but I just can't get it to work. This is what I have so far: SELECT Property.[Property ID]...
  13. Echilon

    ComboBox with two binding sources

    I'm trying to get databinding to work with a ComboBox. The problem seems to be that I want to fill the combobox from a list, then bind it's selected value to another datasource, so I have two binding sources. The combox box populates correctly, and if I add a method to the .Validating event...
  14. Echilon

    Subclassing Socket

    I'm trying to use sockets to create a proxy connection to a server. The whole thing worked perfectly until I tried to add a custom class to deal with the proxy (authentication etc). I have two sockets, ListeningSocket and DataSocket. The problem is that I can't see to get listeningsocket to...
  15. Echilon

    ListView Single Range Selection

    I have a ListView, and I'd like to only allow a single range to be selected. I need the equivalent of Java's SINGLE_SELECTION_INTERVAL ( http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/ListSelectionModel.html#SINGLE_INTERVAL_SELECTION ). For example: If a ListView has 5 rows, #1,#2 could be...
  16. Echilon

    Data Binding with a Hashtable

    I have a form which is used to add, delete and edit entries containing server details for use in my application. Currently, the values entered into the text boxes on the form are saved when the 'save server' button is clicked, and erased when the 'new server' button is clicked. The servers are...
  17. Echilon

    Overlapping components with form designer

    I'm trying to create an application in C# using the forms designer in Visual Studio 2008. Coming from Java, it's a welcome relief not to have to hand code the whole layout, but there's something that doesn't seem to be working. The 'Dock' setting for components. I have a split pane, inside each...
  18. Echilon

    Sockets and Threads

    I'm working on an FTP client, and using sockets to receive data from a server. When the server sends any data back to the application, I have to wait before the application repsonds. I'd like to starts the transfer for the data in a new thread if possible, leaving the rest of the app free to...
  19. Echilon

    Activate menu on Ctrl+Shift+D

    I'm trying to create add a debug menu when the user presses Ctrl+Shift+D. I have a class which extends JFrame, and this is the code I'm using. KeyStroke debugKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_D, InputEvent.CTRL_DOWN_MASK & InputEvent.SHIFT_DOWN_MASK, false); Action...
  20. Echilon

    Exception with JRadioButton

    I'm receiving this error at runtime, after entering a value, selecting the 'Binary' checkbox and clicking go. The value prints out to the console OK, but there seems to be a problem with calling the .isSelected() method on the radio button. Any help is appreciated :). package convertor; import...

Part and Inventory Search

Back
Top