Click here to Skip to main content
15,887,596 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
Gerry Schmitz1-Apr-15 0:17
mveGerry Schmitz1-Apr-15 0:17 
QuestionRe-Full Text Search Pin
Member 1116162530-Mar-15 1:55
Member 1116162530-Mar-15 1:55 
AnswerRe: Re-Full Text Search Pin
Richard MacCutchan30-Mar-15 2:34
mveRichard MacCutchan30-Mar-15 2:34 
AnswerRe: Re-Full Text Search Pin
Eddy Vluggen30-Mar-15 3:10
professionalEddy Vluggen30-Mar-15 3:10 
AnswerRe: Re-Full Text Search Pin
ZurdoDev30-Mar-15 4:45
professionalZurdoDev30-Mar-15 4:45 
QuestionRe-Index Pin
Member 1116162530-Mar-15 1:50
Member 1116162530-Mar-15 1:50 
AnswerRe: Re-Index Pin
ZurdoDev30-Mar-15 4:44
professionalZurdoDev30-Mar-15 4:44 
Questioni have just in time debugging problem Pin
rafizan4629-Mar-15 23:01
rafizan4629-Mar-15 23:01 
and this is the error .. somebody please help me Frown | :(

The device is not ready

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.IO.IOException: The device is not ready.

at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.__Error.WinIODriveError(String driveName, Int32 errorCode)
at System.IO.DriveInfo.get_TotalSize()
at SYSINFO.Form1.TextBox11_TextChanged(Object sender, EventArgs e)
at System.EventHandler.Invoke(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.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: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
SYSINFO
Assembly Version: 4.0.0.0
Win32 Version: 4.0.0.0
CodeBase: file:///H:/SYSINFO.exe
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 10.0.0.0
Win32 Version: 12.0.53323.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.36323 built by: FX45W81RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
QuestionRe: i have just in time debugging problem Pin
Richard MacCutchan29-Mar-15 23:10
mveRichard MacCutchan29-Mar-15 23:10 
AnswerRe: i have just in time debugging problem Pin
rafizan4629-Mar-15 23:19
rafizan4629-Mar-15 23:19 
QuestionRe: i have just in time debugging problem Pin
Richard MacCutchan29-Mar-15 23:25
mveRichard MacCutchan29-Mar-15 23:25 
AnswerRe: i have just in time debugging problem Pin
rafizan4629-Mar-15 23:28
rafizan4629-Mar-15 23:28 
GeneralRe: i have just in time debugging problem Pin
Richard Deeming30-Mar-15 2:13
mveRichard Deeming30-Mar-15 2:13 
GeneralRe: i have just in time debugging problem Pin
rafizan4630-Mar-15 9:17
rafizan4630-Mar-15 9:17 
Questionhow to adjust the size of drawn rectangle at runtime Pin
Member 1144146829-Mar-15 20:12
Member 1144146829-Mar-15 20:12 
AnswerRe: how to adjust the size of drawn rectangle at runtime Pin
Richard MacCutchan29-Mar-15 21:12
mveRichard MacCutchan29-Mar-15 21:12 
QuestionLooking for a thorough Iron Python tutorial. Pin
Brady Kelly24-Mar-15 23:14
Brady Kelly24-Mar-15 23:14 
AnswerRe: Looking for a thorough Iron Python tutorial. Pin
Richard MacCutchan25-Mar-15 1:59
mveRichard MacCutchan25-Mar-15 1:59 
GeneralRe: Looking for a thorough Iron Python tutorial. Pin
Brady Kelly25-Mar-15 2:05
Brady Kelly25-Mar-15 2:05 
QuestionOOPS Concepts Pin
ravitejapuladas24-Mar-15 21:35
ravitejapuladas24-Mar-15 21:35 
AnswerRe: OOPS Concepts Pin
Richard MacCutchan24-Mar-15 21:57
mveRichard MacCutchan24-Mar-15 21:57 
GeneralRe: OOPS Concepts Pin
ravitejapuladas24-Mar-15 22:01
ravitejapuladas24-Mar-15 22:01 
GeneralRe: OOPS Concepts Pin
Richard MacCutchan24-Mar-15 22:48
mveRichard MacCutchan24-Mar-15 22:48 
GeneralRe: OOPS Concepts Pin
ravitejapuladas24-Mar-15 23:45
ravitejapuladas24-Mar-15 23:45 
GeneralRe: OOPS Concepts Pin
Richard MacCutchan25-Mar-15 1:54
mveRichard MacCutchan25-Mar-15 1:54 

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.