| Thread | Last Post | Replies |
|
| Combo Box Property | 14 Jan 2008 14:41 GMT | 1 |
Aside from code logic (if then, bool variables), is there a way to set a combo box click method to only execute when the index (text) is actually changed by a mouse click? I've changed the name of the method to myComboBox_MouseClick but when I change the text in another method
|
| Console.In.ReadToEnd never return | 14 Jan 2008 14:01 GMT | 4 |
I'm using Console.In.ReadToEnd to read string from console input, but I found it never return. What character I should input to end it input? Thanks
|
| Asp.Net: Determine Server Side Event Name of Post Back Control | 14 Jan 2008 13:49 GMT | 2 |
How do I reliably find the name of the event (e.g Click, SelectedIndexChanged etc) that caused a page to post back. Is there somewhere in the Asp.Net pipelines we can hook into and discover this information before the event is actually raised?
|
| Cannot interpret token | 14 Jan 2008 12:47 GMT | 5 |
.NET 2.0 I have a DataTable I'm trying to do a select against... This is the argument I pass into the Select method: "date >= 01.12.2007 00:00:00 and date < 01.01.2008 00:00:00"
|
| Multiuser database | 14 Jan 2008 12:19 GMT | 2 |
I started working with .NET and I have some doubts about how to work with multiuser database. I am using VS2008 with MySQL through ODBC for Windows Form. 1. Is it correct to create a DataSet with all tables in the form load? And
|
| Fastest: Substring or IndexOf | 14 Jan 2008 12:16 GMT | 5 |
If I know what the first 12 bytes of a string is, which would be faster to validate those first 12 bytes? if(szText.Substring(0,12) == "datagoeshere") or
|
| simple but weird string concatenation | 14 Jan 2008 11:04 GMT | 10 |
I build a sql string, but sometime what I got missing the last part -- ")". sql = "insert into project (sid, job_id, name, project_code, note, qn_ver,greeting) values ( " //greeting + proj.ID + ","
|
| monthCalendar.BoldedDates | 14 Jan 2008 10:34 GMT | 1 |
Is it possible to get a range of dates and to bold it in my monthCalenda? what i mean is, that if for example, i will get the date range 13\01\2008 - 15\01\2008, i want to bold the dates: 13,14,15. Thanks,
|
| gSoap authentication from C# Soap Client | 14 Jan 2008 10:21 GMT | 2 |
I have a gSoap Web Service written using C++, it uses SOAP username and password authentication. I also have a C# form client consuming the web service, all this was working fine until I added the authentication on the server, now I can not get the
|
| Saving only single table changes in DbLinq | 14 Jan 2008 10:20 GMT | 5 |
I retrieve rows and change one retrieved row like var l = ((from b in Db.Klients order by b.Kood select b).Skip(10).Take(5)).ToList();
|
| static variable lifetime in WebService | 14 Jan 2008 09:37 GMT | 19 |
I have webservice which holds a static variable. I send my first message into the webservice and the static variable gets a value. If I queried the webservice at a later time (say after 1 hour) would the static variable still hold the same value, or would the code
|
| Problems using RPC | 14 Jan 2008 09:10 GMT | 11 |
I am running into problems when performing an RPC call on a COM object via Type.InvokeMember (.Net 2.0 Framework). The exception thrown is "HRESULT: 0x800706BE", which, after some googling, leads me to this MS Support Page:
|
| Create a function like IsDigit() | 14 Jan 2008 07:49 GMT | 16 |
Doeas any know the simplest way for create this type of function: bool result = IsDigit(string s); Sam
|
| XP Security and .Dot installs | 14 Jan 2008 06:42 GMT | 6 |
Plain Vanilla VS2005 setup project. Install OK on XP machine and runs under administrator logon. Once client logs, program won't open. Just gives one of those Framework has encountered an error and needs to close messages.
|
| Get unicode character by bit shifting | 14 Jan 2008 04:45 GMT | 6 |
I have a pretty interesting problem here.. Ok, I have an integer that needs to be right shifted, and then converted to a char.. which is then is used to build a string. Heres an example of the steps:
|