|
-
April 21st, 2006, 09:04 AM
#2
Re: linking controls across partial class files
Never mind I aswered my own question, with some hints from other messages on the MSDN board.
I modified the ACC.csproj file for each of the partial class file from:
<Compile Include="frmAcc.Dev.cs">
<SubType>Form</SubType>
</Compile>
TO:
<Compile Include="frmAcc.Dev.cs">
<DependentUpon>frmACC.cs</DependentUpon>
</Compile>
This also placed the tabbed files in the solution explorer under the main file frmACC.cs
Hopefully this stays put as the .csproj file is generated by the IDE.
Thanks to anyone who took the time to read this post.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|