Hi, I am getting ERROR_ACCESS_DENIED when I try to open a serial port under Windows XP Pro. The code worked under Windows 2000. Does anyone have any ideas of...
Hi All, I am doing a transactional update in my code to update with diffrenet creteria, but as far as i know while the transaction is not committed or rollBack...
Nasser: That's deppend on the database provider, the more common behaviour is that the statements will lock the modified rows,not entire tables, at least with...
use the system.data.isolationlevel enum which have option like read commited ,read uncommited,serialized ,etc......use this in the constructor and ur pblms...
Thanks alot guys, i will read about this more Sujith Kumar <sujithkumarcec@...> wrote: use the system.data.isolationlevel enum which have option like...
... cancel was pressed/or X button used to close, return ... full path of file/director ... contains only fileName and Extension ... of Service. ... hi man use...
Hi I am trying to write add-in for Microsoft Word 2000 and Excel 2000. My goal is when user click my button i want to save document to the another place in ...
Hi Take a look at datetime.parse and datetime.parseexact, these convert strings to datetime objects Cheers Matt ________________________________ From:...
Hi There is already a facility in the datetime object for conversion to string, the 'ToString' function, and you can pass parameters to it to specify the...
Hi, The SQLtransaction object has a property called IsolationLevel, this may help you in this scenario. Regards Anoop "Nasser A. Hamdan" <nasserdw@...>...
I may have sent this question in before, if I have and missed answers I appologize. I am getting a Post-Build Event Failed error. When I look at the Output, it...
Hi every one, Wish u a happy new year !!!! I am trying to develop a windows application which will run on touch screen LCD monitor. but the touch screen...
Scott, How are you getting the path to the file you are looking for? Is it hard coded, or are you using on of the built-in "macros" in VS.NET? Also, which ver...
Hamad, Can you open the database using the SQL Server client tools? If so, then it is probably the way you are trying to connect. Could you post a code...
I don't think that putting the database files on a share is allowed is it? I just tried to create a new db and get it to create the files on a share and it...
You should manage explicit transactions within your stored procedure code. With SQL Server, a transaction that updates a row could lock that row untill the...
Hmmm, may be a bit OT, but I cannot resist to say that I disagree in the use of store proc as a general rule I've been there and now I try not to use them, a...
OK, I'll bite... Actually, portability is one of the reasons I use stored procs. Calling a stored proc is the same for all major db's. But, if you need to do...
When I try to F5 or Ctrl+F5 the C# project from: http://freemeter.sourceforge.net/ I get this error message: Microsoft Visual C# 2005 Express Edition does not...
The path was in a bat file, it was hard coded in. I realized that the file it was suppose to be copying to did not exist. I created the folder and that error...
You will need to add a reference to System.DirectoryServices. Right-click your project, select Add Reference, and choose System.DirectoryServices. Thank you, ...
Hi, I want to have few global variables in my windows application, which will contains some information such as user id, user name etc. which will be populated...
If you have a public class with public members they are "global". You could also create a special class named Global, set it to public and set all global...
But, Store proc code is part of the app code, and you need to migrate it between db vendors, I just change my db connection string and the app is up and...
Hi All, I know that it is some kind of workaround which allows to embed MS Word in any Windows Form (using WebBrowser control). This workaround is useful...