Hi, I have added few persons to my bookmark list. Some time after that I have wanted to see one of the profiles I have bookmarked but I had hard time locating "Your other bookmarks" link. It could be more visible just so that it can be spotted easily.
Vertyg0
Posts
-
Your other bookmarks visibility -
Be a hollywood-type hacker!Can't waiting for my manager to get back from vacation :D... to show him my new programming skills :D
-
Set Panel ScrollBar widthI`m trying to set width of scrollbar for System.Windows.Form.Panel control. I can't find any native or unmanaged code to do so. Has anybody got solution to this problem? I have found this article, but i think it's not good solution. Is there maybe any other control on which I can set scrollbar size? Thanks
-
Reflection and Generics (List) [modified]Ah didn`t created instance of class .... everything works now thanks !
-
Reflection and Generics (List) [modified]I think that you can`t invoke Add member Code:
myObject.GetType().InvokeMember("Add", BindingFlags.Public | BindingFlags.InvokeMethod, null, myObject, new object[] { myType1 } );
Error:Method 'System.Collections.Generic.List`1[[MojDll.Class1, MojDll, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]].Add' not found.
-
Reflection and Generics (List) [modified]Thanks Giorgi, only one question remains how to add objects to ListOfMyType? Thanks alot!
-
Reflection and Generics (List) [modified]You can`t do that !
Error 1 The type or namespace name 'myType' could not be found (are you missing a using directive or an assembly reference?) D:\Documents and Settings\IvanM\My Documents\Visual Studio 2005\Projects\WindowsApplication4\WindowsApplication4\Form1.cs 24 18 WindowsApplication4
-
Reflection and Generics (List) [modified]How to make generic list at runtime out of this example:
Assembly asm = Assembly.LoadFile(@"C:\MyDll.dll"); Type myType = asm.GetType("WindowsApplication4.Class1");
Now i dont know how to create generic List from myType any idea? With no reflection it would be like List lista = new List(), but how to make it with reflection? Thanks. -- modified at 9:51 Saturday 15th September, 2007 -
Data Access Application BlockIs there any DAAB for compact framework ? Thanks.
-
Connect to VPN networkHi, Is there a way to connect to VPN network (connection is already made) but I need my application to be able to connect to VPN network by user action instead of having user to go trough network connections to connect to it. And also if there is a way knowing if we are connected to VPN or not. I have saw some code doing connection by calling rasphone.exe switch but then we don`t have connection status. Thanks, Ivan.
-
Compact Framework SqlClient ?I have installed .NET CF v2 but when I create new project I`m unable to find SqlClient in System.Data ? Can anyone help me. Ivan, Cheers.
-
Control Library?Hi, Is there any control (UI) library (free or open source) for compact framework? Thanks, Ivan.
-
Oracle DBF exportAndy thank you for instructions ! :) I have had same thinking as you ... so I have started downloading oracle 10g express and SQL developer. Any forums you would recommend ? Thanks allot!
-
Oracle DBF exportI have oracle DBF files and I would like to know if there is any way to export data from them? I`m MSSQL user and I don`t know much about oracle .. I have just few DBF files and one ORA file and I don`t know how to export data from them. Any help appreciated. Thanks, Ivan
-
GridView with DropDownList ?Is there any GridView control with DropDownList as its databound/template field? If possible open source or free control :) Thanks, Ivan.
-
Creating blinking I-BeamThanks alot !
-
Creating blinking I-BeamAnyone got idea how to create blinking I-Beam cursor like one that has textbox when it receive focus? Can I do it trough unmanaged code or I need to implement it with timers/overriding OnPaint event? Thanks, Ivan.
-
How to trigger event when user press Enter key in textbox?Not my fault ! :) Must be cp forum bug.
-
How to trigger event when user press Enter key in textbox?Here is my sample, but for KeyDown event:
private void textBox1_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: DoSomeStuff(); e.SuppressKeyPress = true; return; case Keys.Escape: DoSomeStuff(); e.SuppressKeyPress = true; e.Handled = true; return; case Keys.Space: DoSomeStuff(); e.SuppressKeyPress = true; e.Handled = true; return; case Keys.B: DoSomeStuff(); e.SuppressKeyPress = true; e.Handled = true; return; } }
-
Network share ?How to check if network share requires authentication from me using WMI or any other way ? Thanks.