| 1. | Re: More than one Combobox in Datagrid Posted by buddy.net on 2/17/2003 9:30:22 PM cool , this is famous forms faq at
http://www.syncfusion.com/FAQ/Winforms/
guys please provide links instead of lengthy text |
| 2. | Re: Variable size arrays in C# Posted by buddy.net on 2/13/2003 2:22:38 PM 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
|
| 3. | Re: Variable size arrays in C# Posted by buddy.net on 2/4/2003 9:50:09 AM You can use the dyamic variable in array initializer..
varParam = <get collection count from db or some source>
class1[] arr;
arr = new Class1[varParam] ;
|
| 4. | Re: Web Browser control. Posted by buddy.net on 3/28/2003 12:46:43 AM 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..
:) |
| 5. | Re: change mouse pointer to Hourglass? Posted by buddy.net on 5/13/2003 2:22:37 AM why dont you try attaching some DHTML to ur custom web controls? |
| 6. | Re: .Net Certification Posted by buddy.net on 4/28/2003 2:38:25 AM The best source would be anyway msdn..but better you refer to the study kits provided by Microsoft press. |
| 7. | Re: delegate? Posted by buddy.net on 4/4/2003 12:03:24 AM 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
|
| 8. | Re: ASP.NET Posted by buddy.net on 1/27/2003 12:56:35 PM hi
if you have .net framework installed..visit this link
ms-help://MS.NETFrameworkSDK/cpguidenf/html/cpconintroductiontowebformscontrols.htm
cheers
|
| 9. | Tip..Control Rendering Technique Posted by buddy.net on 2/20/2003 6:00:37 PM 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);
|
| 10. | Re: automatically re-compile the refrereced DLL's Posted by buddy.net on 2/17/2003 9:16:04 PM 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 ... |
| 11. | Re: automatically re-compile the refrereced DLL's Posted by buddy.net on 2/19/2003 1:44:43 PM yeh cool Habibi (The only word i know in arabic ) |
| 12. | Re: Q: How to Click a Button in Another Application Programatically in C#? Posted by buddy.net on 2/18/2003 3:22:11 PM yeh, as the office family of application works... |
| 13. | Re: Q: How to Click a Button in Another Application Programatically in C#? Posted by buddy.net on 2/16/2003 12:32:32 AM No, Remoting works only in .net apps only..I'm not sure if any technology avlbl to talk to other apps...
sudhakar |
| 14. | Re: Q: How to Click a Button in Another Application Programatically in C#? Posted by buddy.net on 2/13/2003 2:17:49 PM If you want to invoke a method in some other application (other app domain), As I know, you'll have to use .NET remoting only. You cannot access the other applications events in any other way... |
| 15. | connection pooling with odbc.net Posted by buddy.net on 2/17/2003 12:07:15 AM hey
anybody worked with odbc.net connection pooling extensively?
I need to know how it actually can be configured for desktop applications...through windows registry ? |
| 16. | Re: connection pooling with odbc.net Posted by buddy.net on 2/17/2003 9:09:37 PM as i know , one quik feed is thru registry by setting
HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\Microsoft ODBC for Oracle
key is CptimeOut : Values <not pooled>, and n seconds
Is there any other way to do it programatically...? (dont tell me to edit these registry keys with coding in application :)
sudhakar |
| 17. | Re: connection pooling with odbc.net Posted by buddy.net on 2/18/2003 3:20:58 PM Yeh, Thanks, I am using both, but bit curious about how ODBC.net behaves...
As ODBC.NET is a managed data provider it must manage pooling automatically. But if we want to disable the pooling we have to dig particular ODBC driver configurations.
From control panel of windows, we can set the pooling flags in ODBC administrator, or thru
registry as i mentoned in the previous post..Actually the ODBC administrator in control panel sets the same key on ... |
| 18. | Re: Generating interrupts in Csharp Posted by buddy.net on 2/16/2003 12:36:21 AM yes..u can write all of ur unmanaged code in C++ for harware interrupts as well as in C#...
if u can do it in C#, u can directly port it to C++.net and use it in C#
sudhakar |
| 19. | Welcome to windows forms forum Posted by buddy.net on 1/27/2003 1:13:11 PM hi all,
please share your knowledge and experiences or problems on winforms with the developer community here..
some cool sites on winforms
01. www.windowsforms.com
02. http://www.syncfusion.com/FAQ/WinForms/
03. www.codeproject.com
04.
best wishes
|
| 20. | INFO: Illustrated GOF patterns in C# by mariano Posted by buddy.net on 1/23/2003 5:01:58 PM Hi all.
These articles are really rich in content and must to read articles indeed.
http://www.codeproject.com/script/Articles/list_articles.asp?userid=52003
source : (code project)
cheers
|