Click here to Skip to main content
15,924,196 members
Home / Discussions / C#
   

C#

 
GeneralRe: Memory leak Pin
J. Dunlap18-Nov-03 20:04
J. Dunlap18-Nov-03 20:04 
GeneralCrystal reports Pin
Anonymous17-Nov-03 19:12
Anonymous17-Nov-03 19:12 
GeneralConnectionString Pin
lupa_842117-Nov-03 19:10
lupa_842117-Nov-03 19:10 
GeneralRe: ConnectionString Pin
Heath Stewart18-Nov-03 6:45
protectorHeath Stewart18-Nov-03 6:45 
GeneralRe: ConnectionString Pin
Husein21-Nov-03 23:27
Husein21-Nov-03 23:27 
GeneralMissing Windows Forms Designer Pin
bcox17-Nov-03 14:13
bcox17-Nov-03 14:13 
GeneralRe: Missing Windows Forms Designer Pin
leppie17-Nov-03 15:39
leppie17-Nov-03 15:39 
GeneralRe: Missing Windows Forms Designer Pin
Russell Morris18-Nov-03 7:13
Russell Morris18-Nov-03 7:13 
VS.NET, for some reason, thinks that your code file does not contain a designable class. This can be for a number of reasons: most likely, you've got a class defined in that file before the Form-derived class.

To fix this, open up the .csproj file and look for the element

<File
  RelPath = "YourFile.cs"
  SubType = "Code"
  BuildAction = "Compile"
  />


and change it to:

<File
  RelPath = "YourFile.cs"
  SubType = "Form"
  BuildAction = "Compile"
  />


After that, open up this .csproj file in studio again, and it should show that file as a Form-derived class and allow you to open it with the Form Designer

--
Russell Morris

"So, broccoli, mother says you're good for me... but I'm afraid I'm no good for you!" - Stewy
Generalxml data to database Pin
Kris{PL}17-Nov-03 10:50
Kris{PL}17-Nov-03 10:50 
GeneralRe: xml data to database Pin
jparsons17-Nov-03 11:00
jparsons17-Nov-03 11:00 
GeneralRe: xml data to database Pin
Kris{PL}17-Nov-03 11:52
Kris{PL}17-Nov-03 11:52 
GeneralRe: xml data to database Pin
jparsons17-Nov-03 18:43
jparsons17-Nov-03 18:43 
GeneralRe: xml data to database Pin
Kris{PL}17-Nov-03 23:57
Kris{PL}17-Nov-03 23:57 
GeneralRe: xml data to database (second prb) Pin
Kris{PL}18-Nov-03 1:50
Kris{PL}18-Nov-03 1:50 
GeneralReusing a thread Pin
Judah Gabriel Himango17-Nov-03 9:33
sponsorJudah Gabriel Himango17-Nov-03 9:33 
GeneralRe: Reusing a thread Pin
J. Dunlap17-Nov-03 10:19
J. Dunlap17-Nov-03 10:19 
GeneralRe: Reusing a thread Pin
Judah Gabriel Himango17-Nov-03 10:28
sponsorJudah Gabriel Himango17-Nov-03 10:28 
GeneralRe: Reusing a thread Pin
Heath Stewart18-Nov-03 8:48
protectorHeath Stewart18-Nov-03 8:48 
Generaldatabind checkedlistbox to arraylist Pin
zuhx17-Nov-03 9:27
zuhx17-Nov-03 9:27 
GeneralRe: databind checkedlistbox to arraylist Pin
John Arlen18-Nov-03 9:12
John Arlen18-Nov-03 9:12 
GeneralDetecting dependent DLLs Pin
Arash Sabet17-Nov-03 6:14
Arash Sabet17-Nov-03 6:14 
GeneralRe: Detecting dependent DLLs Pin
leppie17-Nov-03 6:42
leppie17-Nov-03 6:42 
GeneralRe: Detecting dependent DLLs Pin
Heath Stewart17-Nov-03 7:15
protectorHeath Stewart17-Nov-03 7:15 
GeneralSending CTRL-F6 using PostMessage or SendMessage Pin
ccanales00117-Nov-03 6:02
ccanales00117-Nov-03 6:02 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
Heath Stewart17-Nov-03 6:24
protectorHeath Stewart17-Nov-03 6:24 

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.