Marc Clifton wrote: Are there any open source VB.NET projects? i don't like vb.net too, but to be fair - i think DotNetNuke[^] is written in it?
Franz Pentenrieder
Posts
-
Hey CG, C# is pretty weird too -
Firefox? No Thanks... and another firefox thread ;) the funny thing is nobody seems to have real arguments for firefox. i always here it's the best and safest browser on earth - but why? nearly all features that firefox have are already avaible in free IE addons. i like firefox, it's a nice browser i just can't see any reason why it should be better that IE with addons. it seems many people using avant and don't even now maxthon. this browser has much more than firefox, and hey there is also a "use gecko engine" function so you don't have to use two browsers for crosschecking sites. so if you using firefox and u love it, check out maxthon.com and tell me why i should use firefox instead. i can't see any reason ...
-
IE vs. Firefox -
Get resource from project -
Get resource from projectCheck this article out Using Resources in Your Application Part I[^] or simple search for resources or resourcemanager.
-
DataGird: a fixed row below the header of a column?Hi, is it possible to set a row fixed under the header of a column so when i scoll it's always on top too? if tried some overrides but i don't really know where to begin? Changing things like the scrollbar values don't fix the row on the top. Any ideas?
-
Save article search options?Hi, i thing it would be great if the options on the search page could be stored in a cookie or the user profile. every time i search i have to uncheck the "MFC / C++" and "ASP.NET" options, that's quite annoying.
-
Problems with char typecast'sHello, i have a problem with the char typecast's or the string.toCharArray() function. when i have an extended ascii char in my string like "‹" c# converts this into the char with the integer 8249. BUT the integer i need is 0139, which is the same in HTML (http://www.netstrider.com/tutorials/HTMLRef/ASCII/[^]). how can i solve this problem most simply? i don't wanna check every char if it's greater than 255.
-
Windowpanel for a mdi programm?Hello, most programms using a mdi container have a tabcontrol like panel showing all open windows for a fast switching. is there any avaible control for this, or dokumentation how to build such a feature? thanks
-
A monitor for open networkfiles?hi, im searching for the class that allows me to readin the network files and session informations. under "fsmgmt.msc" i can see that connections but how can i get these in a programm? i have searched under System.Diagnostics but no result :(
-
DataGrid crashes when data comes from sub threadslock + begininvoke works great now, thanks a lot! unbelivable that the solution is so easy... :-D
-
DataGrid crashes when data comes from sub threadshi, i have a datagrid bound on a dataset which i fill whith a method running in a threadpool. showed simple:
private void begin(object sender, System.EventArgs e) { ThreadPool.QueueUserWorkItem( new WaitCallback( work ) ); } public void work( object n ) { for ( int i = 0; i < 20; i++) { lock(this) { DataLayer.add( i ); } } }
after 3 items or when the thread ends the programm hangs or im getting a exeption on Appliaction.Run(). how can i do that without a programm crash? i have read on MSDN DataSet doc "You must synchronize any write operations" but it seems the to be the datagrid? i also have tryed a workaround whit delegates, events and a static adding but same problems here. i can't find the problem, i think i know not enough about this threadsave stuff. any idea how to do that, or is it simply not possible to fill a datagrid from a thread? -
Virtual colums in a datagrid?hi, im using a datagrid generated from a XML file using the VS XSD builder. now i want to add a "virtual" colum that add's some extra information, i only need this information on the runtime so i don't wanna add it to the XML file. i have read some examples with "BindingContext" and "Expression" but this examples are mostly DataGridBoolColumn and no TextColums. dose anybody knows a tuturial or have some example code?