Click here to Skip to main content
15,889,651 members
Home / Discussions / C#
   

C#

 
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 
Hi all,
I have deploy a window application and install in admistrator account which can access by all user. I am successful install it and run in limited account. But the exception occure when need to delete data in database (ms access using oledb connection). Note that, it is no any exception if this application run under adminstrator account. Below is the exception details:

************** Exception Text **************
System.Data.OleDb.OleDbException: Could not delete from specified tables.
   at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
   at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
   at System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult)
   at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
   at System.Data.OleDb.OleDbCommand.ExecuteNonQuery()
   at TimewayGeneratorRev2.SQLConnection.DeleteSQL()
   at TimewayGeneratorRev2.FrmNew.CreateNewProgram()
   at TimewayGeneratorRev2.FrmNew.btnsave_new_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
TimewayGeneratorRev2
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Program%20Files/Timeway%20Generator/TimewayGeneratorRev2.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
ChartUserControl
    Assembly Version: 1.0.3056.42194
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Program%20Files/Timeway%20Generator/ChartUserControl.DLL
----------------------------------------
System.Data
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Transactions
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
---------------------------------------- 



any idea or any solutions are welcome
regards
cocoonwls
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
Peter Josefsson Sweden16-May-08 22:04
Peter Josefsson Sweden16-May-08 22:04 
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
Peter Josefsson Sweden18-May-08 9:31
Peter Josefsson Sweden18-May-08 9:31 
QuestionStrong Name Security Pin
William Ten Broek16-May-08 12:10
William Ten Broek16-May-08 12:10 
QuestionDataGridView KeyPress Event Not Working Pin
Win32SF16-May-08 10:22
Win32SF16-May-08 10:22 
AnswerRe: DataGridView KeyPress Event Not Working Pin
Mircea Puiu17-May-08 21:33
Mircea Puiu17-May-08 21:33 
GeneralRe: DataGridView KeyPress Event Not Working Pin
Win32SF18-May-08 6:36
Win32SF18-May-08 6:36 
Questionhow i can access to content of a fild of one recored in datagrid? Pin
bizhanmp16-May-08 9:59
bizhanmp16-May-08 9:59 
AnswerRe: how i can access to content of a fild of one recored in datagrid? Pin
Christian Graus16-May-08 14:11
protectorChristian Graus16-May-08 14:11 
QuestionFree easy to use CHM editor? Pin
Member 391904916-May-08 9:11
Member 391904916-May-08 9:11 
AnswerRe: Free easy to use CHM editor? Pin
Thomas Stockwell16-May-08 10:33
professionalThomas Stockwell16-May-08 10:33 
GeneralRe: Free easy to use CHM editor? Pin
Member 391904916-May-08 11:25
Member 391904916-May-08 11:25 
GeneralRe: Free easy to use CHM editor? Pin
Thomas Stockwell16-May-08 11:45
professionalThomas Stockwell16-May-08 11:45 
QuestionConcat two integers without cast Pin
mik116-May-08 7:03
mik116-May-08 7:03 
AnswerRe: Concat two integers without cast [modified] Pin
darkelv16-May-08 7:22
darkelv16-May-08 7:22 

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.