First  |  Prev |  Next  |  Last
Pages: 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
How do I know I am in a debug configuration
I thought there was a property that let's me know when I am in a debug configuration, instead of a Release Configuration. I need it because I want to use a test database in debug, but a real database in release. Is there such a property? I tried System.Diagnostic.debugger.IsAttached, but that seems to be somet... 27 Mar 2010 18:51
What is better, use DataContext or dataset
Hi, It seems that the DataContext is not allowed to work in memory and insert all changes made to the database until the end. I think to work in memory dataset is better, right? Thanks ... 26 Mar 2010 20:30
How to prevent focus outlining on buttons
Hello, I would like to ask if there is a way to suppress the dotted lines on a button when it gets or got pressed. I tried to move the focus to another object in the event handler routine but that is not very satisfying. Any other ways? (The application is for a Win CE system using a touch screen so there is no ... 25 Mar 2010 13:50
Why use other encoding then UTF-8 when this support almost every language
Hi! This Unicode UTF-8 can use up to 24 bit for encoding. UTF-8 support almost all languages so what is the reason to use another Unicode then this UTF-8. //Tony ... 29 Mar 2010 21:26
Read Mail - tcp
I tried using (TcpClient client = new TcpClient("pop.gmail.it" , 110 )) using (NetworkStream n = client.GetStream()) { ReadLine(n); SendCommand(n, "USER user"); SendCommand(n, "PASS pw"); but it tells me Login Failed Can you help? ... 24 Mar 2010 08:53
PreTranslateMessage
is there pretranslate message equilent in C# From http://www.google.co.in/search?hl=en&q=pretranslatemessage+in+C%23+only&meta=&aq=f&aqi=&aql=&oq=&gs_rfai= Posted via DevelopmentNow.com Groups http://www.developmentnow.com/g/ ... 24 Mar 2010 07:46
variable in a set of values
Dear all, In SQL, there is a condition IN . e.g. products in (a,b,c). I want to know whether there exist a same statement in C#. Or maybe I should use other syntax? Thanks. ... 24 Mar 2010 14:43
moniter network usage on the network
I want to moniter the bandwidth/internet usage of all of the devices on our network. Some are wired and some are wireless through a wifi connection. How would I get started doing something like this? ... 23 Mar 2010 20:38
process speed
Tony Johansson wrote: Hello! I just wonder what is the difference in processing speed between using an array of ints and an array of byte if the array is very large. //Tony I have come to believe that array processing in C# is just plain slow because of bounds checking, along with othe... 24 Mar 2010 00:02
SSH
I have been trying to use the Tamir dll to send data from my windows 7 laptop to a linux server. I need to use a public key JSch jsch = new JSch(); jsch.addIdentity(@"C:\apps\putty\linux.ppk" ); Session session = jsch.getSession("rt", "196.222.222.222", 222); UserInfo ui... 23 Mar 2010 10:09
First  |  Prev |  Next  |  Last
Pages: 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71