Click here to Skip to main content
15,919,778 members
Home / Discussions / C#
   

C#

 
GeneralRe: How can I ... Pin
maresp198217-May-08 3:45
maresp198217-May-08 3:45 
GeneralRe: How can I ... Pin
#realJSOP17-May-08 4:07
professional#realJSOP17-May-08 4:07 
Questioncrawler Pin
Bhim Prakash Singh17-May-08 0:55
Bhim Prakash Singh17-May-08 0:55 
AnswerRe: crawler Pin
Christian Graus17-May-08 1:06
protectorChristian Graus17-May-08 1:06 
AnswerRe: crawler Pin
Abhijit Jana17-May-08 1:10
professionalAbhijit Jana17-May-08 1:10 
AnswerRe: crawler Pin
Michael Schubert17-May-08 4:03
Michael Schubert17-May-08 4:03 
AnswerRe: crawler Pin
Pete O'Hanlon17-May-08 9:15
mvePete O'Hanlon17-May-08 9:15 
Questionis there anyone to help me?? Pin
minmin200816-May-08 23:09
minmin200816-May-08 23:09 
AnswerRe: is there anyone to help me?? Pin
Christian Graus17-May-08 1:07
protectorChristian Graus17-May-08 1:07 
QuestionXML validation using DTD in C#.net Pin
sengottuvelud16-May-08 22:39
sengottuvelud16-May-08 22:39 
AnswerRe: XML validation using DTD in C#.net Pin
PIEBALDconsult17-May-08 7:32
mvePIEBALDconsult17-May-08 7:32 
QuestionConverting DWG(CAD file format) to .X(Direct X file format) Pin
Member 384581516-May-08 18:50
Member 384581516-May-08 18:50 
AnswerRe: Converting DWG(CAD file format) to .X(Direct X file format) Pin
Christian Graus16-May-08 20:40
protectorChristian Graus16-May-08 20:40 
QuestionThanks to Spacix One Pin
Angelinna16-May-08 18:11
Angelinna16-May-08 18:11 
AnswerRe: Thanks to Spacix One Pin
Christian Graus16-May-08 19:07
protectorChristian Graus16-May-08 19:07 
GeneralRe: Thanks to Spacix One Pin
Angelinna16-May-08 20:23
Angelinna16-May-08 20:23 
GeneralRe: Thanks to Spacix One Pin
Christian Graus16-May-08 20:25
protectorChristian Graus16-May-08 20:25 
GeneralRe: Thanks to Spacix One Pin
Angelinna17-May-08 17:35
Angelinna17-May-08 17:35 
QuestionException occure when run application in limited account Pin
cocoonwls16-May-08 17:04
cocoonwls16-May-08 17:04 
AnswerRe: Exception occure when run application in limited account Pin
Christian Graus16-May-08 19:13
protectorChristian Graus16-May-08 19:13 
GeneralRe: Exception occure when run application in limited account [modified] Pin
cocoonwls17-May-08 15:36
cocoonwls17-May-08 15:36 
AnswerRe: Exception occure when run application in limited account Pin
The Nightcoder16-May-08 22:04
The Nightcoder16-May-08 22:04 
The error originates in the Access (JET) database, when it tries to modify (delete) data. Assuming your database doesn't use the strange security mechanisms available in Access (using SYSTEM.MDB and so on for user names and passwords), I would guess that either:

a) The regular user doesn't have modify permissions on the MDB file.

b) The regular user doesn't have modify permissions on the LDB file, or sufficient permissions to create one when it doesn't exist.

This would make the database readonly for non-administrators, meaning that all attempts to modify data will throw exceptions.

If possible, you should look at using SQL Server 2005 Express Edition instead (sqlexpress for short). The Access JET database engine has been living under threat of extinction for a decade or so by now and has a number of drawbacks (one of them being that no user can modify any data in the database unless they have sufficient permissions to actually delete the entire database file if they feel like it). The learning curve for shipping it with your app (making it install silently and getting your initial database installed) is kind of steep but the job is simple once you get a hang of it (and there are a lot of good articles on it).

--
Peter

GeneralRe: Exception occure when run application in limited account [modified] Pin
cocoonwls17-May-08 15:43
cocoonwls17-May-08 15:43 
GeneralRe: Exception occure when run application in limited account Pin
The Nightcoder18-May-08 9:31
The Nightcoder18-May-08 9:31 
QuestionStrong Name Security Pin
William Ten Broek16-May-08 12:10
William Ten Broek16-May-08 12:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.