Click here to Skip to main content
15,914,379 members
Home / Discussions / C#
   

C#

 
AnswerRe: Performance: Partial Classes vs Inheritence? Pin
Scott Dorman20-Apr-07 3:25
professionalScott Dorman20-Apr-07 3:25 
QuestionConversion of LastModified method Pin
Amatista19-Apr-07 22:05
Amatista19-Apr-07 22:05 
AnswerRe: Conversion of LastModified method Pin
Jupiter920-Apr-07 7:32
Jupiter920-Apr-07 7:32 
GeneralRe: Conversion of LastModified method Pin
Amatista22-Apr-07 22:41
Amatista22-Apr-07 22:41 
QuestionControl.Visible Property Problem Pin
alashara19-Apr-07 21:43
alashara19-Apr-07 21:43 
AnswerRe: Control.Visible Property Problem Pin
Guffa19-Apr-07 23:05
Guffa19-Apr-07 23:05 
GeneralRe: Control.Visible Property Problem Pin
alashara20-Apr-07 2:44
alashara20-Apr-07 2:44 
QuestionSending more then 28 file names to string array in app creates error Pin
Yoav Ben Zvi19-Apr-07 21:34
Yoav Ben Zvi19-Apr-07 21:34 
Hi I wrote a small app that receives a string array with file names from windows explorer (using 'Send To').
If i send up to 28 file names every thing is ok. If I try to send 29 or more I get this error message:
"Windows cannot access the specified device, path or file. You may not have the appropriate permissions to access the item"
And the app closes. It doesn't even enter the app or the try/catch should have caught it.
Any ideas please?

This is the startup class:

static class Program<br />
    {<br />
        /// <summary><br />
        /// The main entry point for the application.<br />
        /// </summary><br />
        [STAThread]<br />
        static void Main(string[] args)<br />
        {<br />
            try<br />
            {<br />
                Application.EnableVisualStyles();<br />
                Application.SetCompatibleTextRenderingDefault(false);<br />
                Application.Run(new frmMain(args));<br />
            }<br />
            catch (Exception e)<br />
            {<br />
                MessageBox.Show(e.Message);<br />
            }<br />
            finally<br />
            {<br />
                Application.Exit();<br />
            }<br />
            <br />
        }<br />
    }

AnswerRe: Sending more then 28 file names to string array in app creates error Pin
Yoav Ben Zvi20-Apr-07 0:29
Yoav Ben Zvi20-Apr-07 0:29 
AnswerRe: Sending more then 28 file names to string array in app creates error Pin
Luc Pattyn20-Apr-07 3:34
sitebuilderLuc Pattyn20-Apr-07 3:34 
QuestionCombobox in my DataGridView? Pin
akkram19-Apr-07 21:31
akkram19-Apr-07 21:31 
QuestionTreeView Pin
mihksoft19-Apr-07 21:27
mihksoft19-Apr-07 21:27 
AnswerRe: TreeView Pin
Yoav Ben Zvi19-Apr-07 21:38
Yoav Ben Zvi19-Apr-07 21:38 
QuestionXML Help Pin
umashankergr819-Apr-07 21:25
umashankergr819-Apr-07 21:25 
AnswerRe: XML Help Pin
Stefan Troschuetz19-Apr-07 21:29
Stefan Troschuetz19-Apr-07 21:29 
QuestionImage processing in Visual Studio C# .Net Pin
zeeShan anSari19-Apr-07 21:25
zeeShan anSari19-Apr-07 21:25 
AnswerRe: Image processing in Visual Studio C# .Net Pin
shrinerainxp19-Apr-07 21:52
shrinerainxp19-Apr-07 21:52 
QuestionTo Check a Window Service on C#.Net Pin
biswabhusan19-Apr-07 21:22
biswabhusan19-Apr-07 21:22 
AnswerRe: To Check a Window Service on C#.Net Pin
DaGol20-Apr-07 0:51
DaGol20-Apr-07 0:51 
GeneralRe: To Check a Window Service on C#.Net Pin
biswabhusan20-Apr-07 1:20
biswabhusan20-Apr-07 1:20 
AnswerRe: To Check a Window Service on C#.Net Pin
biswabhusan20-Apr-07 1:18
biswabhusan20-Apr-07 1:18 
QuestionList&ltmyobj&gt Pin
Smith#19-Apr-07 21:00
Smith#19-Apr-07 21:00 
AnswerRe: List&ltmyobj&gt Pin
Stefan Troschuetz19-Apr-07 21:33
Stefan Troschuetz19-Apr-07 21:33 
Questioncreating a custom textbox to display pictures instead of characters Pin
connect2sandeep19-Apr-07 19:24
connect2sandeep19-Apr-07 19:24 
AnswerRe: creating a custom textbox to display pictures instead of characters Pin
Christian Graus19-Apr-07 20:00
protectorChristian Graus19-Apr-07 20:00 

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.