| Thread | Last Post | Replies |
|
| C#, Size of Text | 23 Apr 2004 10:22 GMT | 3 |
I want to center text of labels, but don't know how to do it. I have try to do a : distX = netUseGroupBox.ClientSize.Width / 4 - mailLabel.Text.Length * 8 / 2; But it works only for one Label (not the others).
|
| Regular Expression - Numbers | 23 Apr 2004 10:22 GMT | 2 |
I'm trying to come up with a regular expression that matches numbers with commas... but doesn't match numbers formatted without commas. The problem is that I'm trying to parse a file where the columns run together sometimes. For example 987,456,321123,456,78 This matches for the ...
|
| Tokenizer question | 23 Apr 2004 08:37 GMT | 2 |
I will start working on a project where we have to parse a string and store the words and the number of times each word appears. I know you can use the Split function to split a string into words and then I'd have to savethe words and keep a track of how many times
|
| Datagrid Question | 23 Apr 2004 08:28 GMT | 2 |
is it possible with a datagrid to bind it to a table that has a column that is an integer and then when the datagrid is display, I can tell it that if the field is a 1, then display this value, if a 2 display this value and so on?
|
| Problem with Data adapter sql statement | 23 Apr 2004 08:27 GMT | 2 |
I am accessing a MS SQL2000 database. The table has a date field setup as 'Datetime' I then setup a data adapter (VB.Net, windows) as follows daEmpDiv = New SqlClient.SqlDataAdapter("SELECT EmployeeID, DivisionID, SubDivision_ID FROM tblEmpDivisionDates WHERE EmployeeID = 17 AND ...
|
| datagrid error message | 23 Apr 2004 08:24 GMT | 1 |
I am getting the following error message when I try to load my page AllowCustomPaging must be true and VirtualItemCount must be set for a DataGrid with ID DataGrid1 when AllowPaging is set to true and the selected datasource does not implement ICollection.
|
| How do you wait for an IE process to finish when started with Process.Start() | 23 Apr 2004 08:18 GMT | 1 |
I am developing a WinForm application which will redirect the user to HTML page, using IE, when they click a button. However, I want this to be modal in operation, so I would like to make sure that the IE process has finished before I allow then to continue. I first tried using ...
|
| Exception handling in web applications | 23 Apr 2004 08:09 GMT | 2 |
How to handle exceptions and show messages in a web application? In windows application we can create a log file and show the message on message box.What is the way to do it in a web application? Thanks in advance.
|
| I am going crazy trying to find the error | 23 Apr 2004 08:02 GMT | 1 |
<Columns> <asp:TemplateColumn runat="server" HeaderText="Full Name" > <ItemTemplate> <asp:label runat="server" text='<%#
|
| Defaultvalue from database in dataset columns | 23 Apr 2004 07:50 GMT | 7 |
I have an Access database in which I defined default values for certain columns. On my windows forms I've got controls bound to the dataset, The problem is that when I add a new row to the dataset my controls don't have the defaultvalue entered in the database.
|
| [Repost]: Help Re: Remote desktop access (TS) security | 23 Apr 2004 05:37 GMT | 2 |
I have a question regarding password and remote communication. If I access another computer remotely using the Remote Desktop client without using VPN, will my username and password be sent in the clear to the server and therefore liably intercepted by anyone on the Internet?
|
| "Index was outside the bounds of the array" error out of nowhere | 23 Apr 2004 03:21 GMT | 1 |
I've been trying to figure this out for a few days now, and still have no clue what's going on... I have a few related tables in MS Access (Clients, Cars, Sales), and a datagrid, binded to dataview.
|
| Intellisense Problems in VS.NET | 22 Apr 2004 22:56 GMT | 2 |
I am having severe problems with Intellisense. It keeps failing in my project. If I recompile, it works maybe once. If I close and reopen, it may work for a short while. In addition to Intellisense failing Undo sometimes fails with an error message. I am working in C# on a ...
|
| clear the assembly's download cache after a No-touch deployment | 22 Apr 2004 22:31 GMT | 3 |
Hello all! If a client has run a program with url like this: http://server/HelloWorld.exe, then the assembly HelloWorld.exe will be cached in Assembly's Download Cache. But if then a new version of
|
| Interfaces and classes in the same assembly. Best Practices? | 22 Apr 2004 21:53 GMT | 2 |
I notice that Microsoft puts their interfaces and classes in the same assembly. For example System.Data contains OleDbConnection and IDbConnection etc. I have found it useful to keep my interfaces in a separate assembly for
|