Code It. Test It. Ship It.
Become a member of Clarion Developer, right now!
Site Hits
Total Hits
Main Menu

logo

Web Links



  Main  |  Submit New Link  

  Popular site (top10)  |  Top rated site (top10)  |  Recommend site (0)  |  Reciprocal site (0)  

  Category List  |  RSS/ATOM Site (137)  |  RSS/ATOM Feed (31261)  |  Randum jump  

RSS/ATOM Feed (31261)

Distributing RSS/ATOM feeds which displayed here.


rss  atom 

CodePlex Daily Summary for Wednesday, March 10, 2010  from CodePlex  (2010/3/10 13:40) 
CodePlex Daily Summary for Wednesday, March 10, 2010 New Projects ASP.NET jQuery MessageBox : The ASP.NET jQuery it's an Web User Control that uses jQuery framework to enable diferent ways to present information to the user, by using these ... CommentRemover : Utility for removing comments from source codes. Support PL/SQL, Delphi, C/C#/C++ Developed in C# Requirement Microsoft .NET Framework 3.5 DotNetNuke® RadMenu : DNNRadMenu makes it easy to create skins which use telerik RadMenu functionality. Licensing permits anyone(including designers) to use the compon... DotNetNuke® Skin AlphaBrisk : A DotNetNuke Design Challenge skin package submitted to the"Web Standards" category by dnnskin.net. Eight themes using transparent png, div, CSS, ... DotNetNuke® Skin Collaborate : A DotNetNuke Design Challenge skin package submitted to the"Modern Business" category by Cuong Dang of R2Integrated ...
Google Translator  from The Code Project Latest Articles  (2010/3/10 11:07) 
An object that harnesses the power of Google's online natural language translation tools.
SQL Editor for Database Developers  from The Code Project Latest Articles  (2010/3/10 10:59) 
SQL editor with syntax parser, direct editing, code execution, database backup, table comparison, script generation, time measurement
Windows Ribbon for WinForms, Part 9? Changing Ribbon Colors  from The Code Project Latest Articles  (2010/3/10 10:14) 
In this article I'll present how to change the ribbon colors.
Caliburn - Modules, Windows, and Actions  from The Code Project Latest Articles  (2010/3/10 9:21) 
This article demonstrates breaking out of the shell with module development and using Caliburn actions.
DataGridVewTextBoxCell with Span Behaviour  from The Code Project Latest Articles  (2010/3/10 9:10) 
DataGridViewTextBoxCell derived cell that can be merged with cells of the same type
XML: Include a Flexible Parser in Your C++ Applications  from The Code Project Latest Articles  (2010/3/10 8:57) 
Free, portable, compiler-independent XML library in C++
Detect Driver  from The Code Project Latest Articles  (2010/3/10 7:41) 
This article is the continue of the previously posted article Hide Driver. Some methods to detect hidden files and processes are described in it
Marshaling with C# - Chapter 3: Marshaling Compound Types  from The Code Project Latest Articles  (2010/3/10 7:26) 
Learn how to marshal compound types (structures, unions, etc.) with C#.
Marshaling with C# - Chapter 2: Marshaling Simple Types  from The Code Project Latest Articles  (2010/3/10 7:25) 
Learn how to marshal simple data types with C#.
Automatic WPF mapping to Database (Access 07 edition)  from The Code Project Latest Articles  (2010/3/10 5:43) 
Automatizing Creation of Database, Tables, SUID actions, and Easy WPF to class Mapping
How the Windows built-in watchdog infrastructure can monitor performance counters and trigger alerts  from The Code Project Latest Articles  (2010/3/10 2:15) 
Use the new PLA interface to monitor performance counters and triggers Alerts.
Static Code Analysis  from The Code Project Latest Articles  (2010/3/10 1:29) 
A static code analyzer building method call networks + sample applications
Recursion, Stacks and Queues  from The Code Project Latest Articles  (2010/3/10 0:44) 
An Article that hopes to Function as a Primer for Algorithms
generic_ptr and it's generator  from The Code Project Latest Articles  (2010/3/10 0:42) 
generic object wrapper for delayed type selection.
ASP.NET AJAX MultiHandleSliderExtender - Slide by Year and Month  from The Code Project Latest Articles  (2010/3/9 23:08) 
Tutorial - How to utilize ASP.NET MultiHandleSlider extender to select year and month in a range, and set the Chart controls in action
WPF PropertyGrid - MVVM techniques  from The Code Project Latest Articles  (2010/3/9 13:37) 
How to build a multicolumn ListView that selects cell templates based on the row data type; and how to create a ViewModel on the fly for each cell template.
ASP.NET Multipage TIFF Viewer with Thumbnails  from The Code Project Latest Articles  (2010/3/9 12:59) 
ASP.NET Multipage TIFF Viewer with Thumbnails
Calendar Gadget using Qt framework  from The Code Project Latest Articles  (2010/3/9 12:50) 
A very simple calendar to be displayed on your desktop similar with a Vista or Windows 7 gadget but works also for Windows XP..
Enumerate and Auto-Detect USB Drives  from The Code Project Latest Articles  (2010/3/9 12:28) 
This article describes how to use the .NET System.Management WMI (Windows Management Instrumentation) wrappers to enumerate and describe USB disk drives. It also includes a non-Interop solution for detecting drive state changes as they come online or go offline.
Improve responsiveness in Windows with the FILE_FLAG_NO_BUFFERING wrapper  from The Code Project Latest Articles  (2010/3/9 12:16) 
Avoid swapping out valuable file system cache of other applications when accessing large files that you know are not accessed again later.
New Post: How to center filtered .shp layer?  from SharpMap - Geospatial Application Framework for the CLR  (2010/3/9 9:48) 
Hi, &nbsp; I have this problem. For example, I have EuropeMap.shp layer. I want to show and center in picturebox only England.&nbsp;I decided to use FilterDelegate to do that (something like this code). ************************************************ VectorLayer vLayer = new VectorLayer("layername"); SharpMap.Data.Providers.ShapeFile sf = new SharpMap.Data.Providers.ShapeFile(@"EuropeMap.shp"); &nbsp;vLayer.DataSource = sf; Map _map=new Map(800,600); List<double>coordinate=new List<double>(); sf.FilterDelegate = delegate(SharpMap.Data.FeatureDataRow row) { &nbsp;&nbsp;bool result = false; &nbsp;&nbsp;if (row["countryname"].ToString() =="England") &nbsp;&nbsp;{ &nbsp;&nbsp;&nbsp; SharpMap.Geometries.BoundingBox box = row.Geometry.GetBoundingBox(); &nbsp;&nbsp;&nbsp; coordinate.Add(box.Max.X); &nbsp;&nbsp;&nbsp; coordinate.Add(box.Min.X); ...etc. &nbsp;&nbsp;&nbsp; result = true; &nbsp;&nbsp;} &nbsp;return result }; &nbsp;_ma ...
New Post: Turkish character, letter problem in sharpmap project  from SharpMap - Geospatial Application Framework for the CLR  (2010/3/8 17:47) 
Everything is OK! But, I have a problem with Turkish character when showing Turkey Map. A lot of city names contain Turkish letter, character. For example?stanbul,Çanakkale, Ni?de, ??rnak.... I am using this line for showing City Label ---->&nbsp;&nbsp;&nbsp;&nbsp; layCityLabel.Style.Font = new Font ( FontFamily .GenericSerif, 10); How can I solve this problem? Thanks... &nbsp; &nbsp;
[Issue] Re: IsRemoteAdminSession not compatible with ipv6  from Qcodo.com RSS Feed  (2010/3/8 16:58) 
This is fixed in Qcodo since February 21, 2010. Take a look at: http://github.com/marcosdsanchez/qcodo/commit/1dc3496d883828eea82cc52ca6e4e6e1e5beebfc It would be released in the next version of the framework. Cheers, Marcos
Audio 101 for iPhone Developers: File and Data Formats  from Code Beach  (2010/3/8 16:45) 
This article is the first in a three part series covering audio topics of interest to the iPhone developer. In this article, we?ll start by covering file and data formats
[Forums] Re: Exciting Personal News  from Qcodo.com RSS Feed  (2010/3/8 16:42) 
Oh, this is great news. I feel happy for you. Very well done Mike. :)
Updated Wiki: Create a map  from SharpMap - Geospatial Application Framework for the CLR  (2010/3/8 16:24) 
How do I create a map? Initialize the map, add layers, setup style and render it: SharpMap.Map myMap = new SharpMap.Map( new Size(400,300)); myMap.Size = new System.Drawing.Size(300,200); //Set output size myMap.MinimumZoom = 100; //Minimum zoom allowed myMap.BackgroundColor = Color.White; //Set background myMap.Center = new SharpMap.Geometry.Point(725000, 6180000); //Set center of map //Add PostGIS layer: SharpMap.Layers.VectorLayer myLayer = new SharpMap.Layers.VectorLayer( "My layer" ); string ConnStr = "Server=127.0.0.1;Port=5432;UserId=postgres;Password=password;Database=myGisDb;" ; myLayer.DataSource = new SharpMap.Data.Providers.PostGIS(ConnStr, "myTable" , "the_geom" , 32632); myLayer.MaxVisible = 40000; myMap.Layers.Add(myLayer); //Render the map /// /1st possibility: Set zoom level //myMap.Zoom = 1200; //Set zoom level //2nd. possibility: Zoom to extents myMap.ZoomToExtents(); System.Drawing.Image imgMap = myMap.GetMap(); Note ...
Updated Wiki: Create a map  from SharpMap - Geospatial Application Framework for the CLR  (2010/3/8 16:21) 
How do I create a map? Initialize the map, add layers, setup style and render it: SharpMap.Map myMap = new SharpMap.Map( new Size(400,300)); myMap.Size = new System.Drawing.Size(300,200); //Set output size myMap.MinimumZoom = 100; //Minimum zoom allowed myMap.BackgroundColor = Color.White; //Set background myMap.Center = new SharpMap.Geometry.Point(725000, 6180000); //Set center of map //Add PostGIS layer: SharpMap.Layers.VectorLayer myLayer = new SharpMap.Layers.VectorLayer( "My layer" ); string ConnStr = "Server=127.0.0.1;Port=5432;UserId=postgres;Password=password;Database=myGisDb;" ; myLayer.DataSource = new SharpMap.Providers.PostGIS(ConnStr, "myTable" , "the_geom" , 32632); myLayer.MaxVisible = 40000; myMap.Layers.Add(myLayer); //Render the map /// /1st possibility: Set zoom level //myMap.Zoom = 1200; //Set zoom level //2nd. possibility: Zoom to extents myMap.ZoomToExtents(); System.Drawing.Image imgMap = myMap.GetMap();
Re: I did something wrong here i think  from Lazarus  (2010/3/8 16:11) 
writeln and readeln (unless given a file descriptor) goes to the console (the dos like window). Since I see Form1 => you have a GUI (Graphical User Interface) application. By default a GUI app does not have a console, so your readln/writeln can not wor...
Re: TAutoObjectFactory.Create causes A/V under Win64  from Lazarus  (2010/3/8 16:10) 
I will update and test with my code later today and report back.



(1) 2 3 4 5 6 7 8 9 10 11 [1043] » 
Search
Login
Username:

Password:


Lost Password?

Register now!