Click here to Skip to main content
15,905,427 members
Home / Discussions / C#
   

C#

 
GeneralRe: week numbers Pin
robmays16-Apr-04 4:06
robmays16-Apr-04 4:06 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 4:12
Colin Angus Mackay16-Apr-04 4:12 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 6:41
protectorHeath Stewart16-Apr-04 6:41 
GeneralRe: week numbers Pin
robmays16-Apr-04 6:54
robmays16-Apr-04 6:54 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 7:47
protectorHeath Stewart16-Apr-04 7:47 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:07
robmays16-Apr-04 8:07 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:35
robmays16-Apr-04 8:35 
GeneralRe: week numbers Pin
robmays16-Apr-04 9:59
robmays16-Apr-04 9:59 
GeneralRe: week numbers Pin
robmays16-Apr-04 19:33
robmays16-Apr-04 19:33 
GeneralRe: week numbers Pin
Heath Stewart19-Apr-04 2:06
protectorHeath Stewart19-Apr-04 2:06 
Generalan error with tabpage Pin
robmays19-Apr-04 3:57
robmays19-Apr-04 3:57 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 3:58
protectorHeath Stewart19-Apr-04 3:58 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:06
robmays19-Apr-04 4:06 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:21
protectorHeath Stewart19-Apr-04 4:21 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:14
robmays19-Apr-04 6:14 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 6:27
protectorHeath Stewart19-Apr-04 6:27 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:32
robmays19-Apr-04 6:32 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 8:26
robmays19-Apr-04 8:26 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:38
robmays19-Apr-04 6:38 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 8:42
protectorHeath Stewart19-Apr-04 8:42 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:13
robmays19-Apr-04 4:13 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:17
protectorHeath Stewart19-Apr-04 4:17 
As I said before, your class has to derive from TabPage. It doesn't matter how you added the file - you could've added a simple text file and then changed the name to Something.cs for all VS.NET cares, so long as you change the Build Action to "Compile". I even gave you an example of how to declare your class, which I'll type here again:
public class MyTabPage : TabPage
{
  // ...
}
Whatever namespace those are in must be imported into the class file that uses them, otherwise the classes can't be found, just like you have to import the System.Windows.Forms namespace so that TabPage can be found, otherwise you have to type the fully-qualified namespace EVERY TIME you reference a class, struct, interface, or enumeration.

 

Microsoft MVP, Visual C#
My Articles
Generalignore my last comment Pin
robmays16-Apr-04 21:53
robmays16-Apr-04 21:53 
GeneralPassing data between forms Pin
Chintan Vaishya15-Apr-04 23:57
Chintan Vaishya15-Apr-04 23:57 
GeneralRe: Passing data between forms Pin
Colin Angus Mackay16-Apr-04 2:14
Colin Angus Mackay16-Apr-04 2:14 

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.