|
Re: More than one Combobox in Datagrid
2/17/2003 9:30:22 PM
(Total replies: 0)
|
| cool , this is famous forms faq at
http://www.syncfusion.com/FAQ/Winforms/
guys please provide links instead of lengthy text |
|
|
|
Re: Variable size arrays in C#
2/13/2003 2:22:38 PM
(Total replies: 1)
|
| Yeh, the old data will be lost..but we can maintain this by rolliing data mechanism...store the old array somewhere...redim the array and populate the old array...this is known as caterpillar walk logic...
sudhakar
|
|
|
|
Re: Variable size arrays in C#
2/4/2003 9:50:09 AM
(Total replies: 2)
|
| You can use the dyamic variable in array initializer..
varParam = <get collection count from db or some source>
class1[] arr;
arr = new Class1[varParam] ;
|
|
|
|
Re: Web Browser control.
3/28/2003 12:46:43 AM
(Total replies: 0)
|
| yeh,
this is the only way.,..but i found a problem with this...we'll have to convert all virtual paths (image srcs etc..) to absolute paths..or else the page will be displayed in an unwanted fashion..
:) |
|
|
|
|
|
|
Re: .Net Certification
4/28/2003 2:38:25 AM
(Total replies: 0)
|
| The best source would be anyway msdn..but better you refer to the study kits provided by Microsoft press. |
|
|
|
Re: delegate?
4/4/2003 12:03:24 AM
(Total replies: 0)
|
| Hi,
If you are familiar with C and C++ coding, You might be aware of a function pointer....A deligate works in the same way....It adds a subscription to the event handler to point a specific call back function.
to learn more on delegates...go here...
ms-help://MS.NETFrameworkSDK/cpref/html/frlrfSystemDelegateClassTopic.htm
|
|
|
|
Re: ASP.NET
1/27/2003 12:56:35 PM
(Total replies: 1)
|
| hi
if you have .net framework installed..visit this link
ms-help://MS.NETFrameworkSDK/cpguidenf/html/cpconintroductiontowebformscontrols.htm
cheers
|
|
|
|
Tip..Control Rendering Technique
2/20/2003 6:00:37 PM
(Total replies: 0)
|
| Its so common that some controls on windows flickers while rendering, to avoid this flickering we can use 2,3 ways..but the .net gives u a way to do this..
I am not sure, this works always but..it works :)
For this we do use double buffering of forms by setting styles on control forms
e.g.
this.SetStyle(ControlStyles.UserPaint, true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.DoubleBuffer, true);
This code can be placed in ... |
|
|
|
Re: automatically re-compile the refrereced DLL's
2/17/2003 9:16:04 PM
(Total replies: 1)
|
| This is pretty simple with VS.NET...
If you have 2,3 projects under one solution, the dependency dlls should be refered
from projects and not from respective physical locations.
e.g.
project "Purchasing" should have references to
CommonLibrary, CommonDataEntry projects in references. U can see a tab for projects in Add reference dialog.
When u rebuild the mail project, all the dependency projects will be compiled in order, and then main project will be compiled with updated ... |
|