You say you are displaying the file in a Windows form. Exactly what kind of control are you displaying it in? An edit box? A rich text edit box? Something...
Hi to all, I've the following problem: I'm rather new to ASP.NET and I have a textbox with a button on a page. When write something in the texbox and press the...
any one help me quickly I'm working on an application written in C# and I'm having trouble connecting to a SQL Server 2008 database that has been set up on a...
try this if it workd in your case.. System.Text.Encoding.Default ... From: Green <greenlamar3020@...> Subject: Re: [C#.NET] Tabs in my imported Text...
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify...
which user you are using to log is it windows authentication one or is it sa user? you supposed to use sa user Ahmed Elnagar Software Developer Team...
Well, basically following what that error message says is a good start. Do you have network access to the server, i.e. can you even ping it? Do you have...
That's not exactly right! The "sa" user is an administrative account. You should never use this to access a database from your application. Instead you should...
Ahmed, I dont think that you have to use sa user. It depends how the server is configured. If you have set window + sql server authentication , then you can go...
... From: haytham samir To: CSharpNET@yahoogroups.com Sent: Sun, 1 Nov 2009 11:17:05 +0530 (IST) Subject: Re: [C#.NET] Connection problem Can you try this ...
I want to make attach database to SQL server but when i make it i get this error Microsft SQL-DMO (ODBC SQLState :HY000)Error 602:Could not find row in...
From my quick search on Google for the error message, it looks like you might be trying to attach a db with a later version that what is on the machine that...
I had the 602 error before and I think I had put the wrong DB name in the code. t www.tobyincode.blogspot.com www.tobymgraves.com [Non-text portions of this...
hi i saw ur error msg but i cant tell any solutions by havin a error msg.can u send some source code to find any solution? regards, Aman ... From: Emad...
wat type of dificulties u found in connecting sql? me too have some problem but i fix it using sql management studio.by using it first create new user login...
Dear Friends , I have one application in need user to select line and draw inside form after he draw one line , he can move this line in the form or select...
you'd better to use mvp design pattern. Each entity has itself geometry model (vector model), rendering method (draw). Your presentation layer need test ui...
Hi. The option for this is to create your custom control that will be repainted as line. Then create events for the control so it behaves the way you want to. ...
Is it an web based application. If so, Its better to use javascript. But as per my experience it is not a good proffesional approach. Best way is to use...
Hi I like to know how to get the drive on which my application will be running so if i run the app from d:\abc\xyzz\asd\my.exe i would like to get the "D:" ...
Keep in mind that the original poster doesn't just need to draw a line. That would be easy. He needs to be able to click on or near the line and have the line...
Hi you can write this code to get the full path for application string path = Application.ExecutablePath; then you will write this code to get the drive...
Dear Mahfouz if you want it a desktop application"C#" you can use drawing library to draw the line and you need three event "Form1_Mouse......." mouse down ...
Also if you are on your web page you could use path = Page.Request.MapPath("/"); and then parse out the first drive letter as in the previous post. M....