自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 资源 (2)
  • 收藏
  • 关注

转载 MapX MapInfo truetype 字体编号对照。

1 Map Symbols每隔5个一个。 2  MapInfo Arrows3 MapInfo Cartographic4 MapInfo Miscellaneous5 MapInfo Oil&Gas6MapInfo Real Estate7 MapInfo Shields8 MapInfo Symbols9 MapInfo Transportation10 MapInfo Weather

2007-10-30 21:21:00 2559

转载 MapX SetKeyField及GetKeyValue使用举例。

 /**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 5.xPlatform: Not Platform RelatedCategory: VC++ Code SamplesSummary:Extract data from a layer using the keyvalue/keyfield properties.Que

2007-10-29 22:34:00 7675

转载 MapX 创建位图样式符号。

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 5.xPlatform: 98/NT 4.0 SP6/2000/XPCategory: VC++ Code SamplesSummary:Using Custom Bitmap Symbols in C++.Question:What are the methods perta

2007-10-29 22:17:00 1742

转载 MapX 设置投影。

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 4.xPlatform: Windows 9598 & Windows NTCategory: VC++ Code SamplesSummary:Setting a projection through code in VC++ with MapX.Question:Is 

2007-10-29 22:02:00 1100

转载 MapX 创建新的永久图层。

/*MapInfo Products Knowledge BaseProduct: MapXVersion: 4.5Platform: Win9xNT€0Category: VC++ Code SamplesSummary:Creating a new table in Visual C++.Question:Is there a C++ code example for how to cre

2007-10-29 21:53:00 2419 1

转载 mapx 拦截键盘输入

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 4.xPlatform: Windows 9598 & Windows NTCategory: VC++ Code SamplesSummary:Catching key strokes before they are sent to MapX in C++?Question:

2007-10-29 21:45:00 1486 2

转载 mapx 复制图层并粘贴到新建图层中.

 /**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 5.xPlatform: Win9xNT€0Category: VC++ Code SamplesSummary:Copying features and data to a new layer in VC++.Question:The following code co

2007-10-29 21:05:00 2699

原创 c# 代码整理集 3

7 简单数据绑定using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace Bindings...{    publ

2007-10-28 14:19:00 727

原创 c# 代码整理集2

4 拖放using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace DrapDrop1...{    public 

2007-10-28 13:48:00 998

原创 c# 代码整理集1

1 测量字体宽度        private void button1_Click(object sender, EventArgs e)        ...{            Graphics g = this.CreateGraphics();            string txt1, txt2;            float f1, f2;            

2007-10-28 13:30:00 740

转载 mapx 使用layerinfo 添加shape 文件层.(VB)

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 4.5.1Platform: Windows NT/2000Category: Code SamplesSummary:Opening Shape files through MapX?Question:Below is a code sample showing how to

2007-10-27 16:45:00 1222

转载 mapx 显示新建图元的属性

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 3.x/4.xPlatform: All Win32 PlatformsCategory: C++Summary:Returning properties of a feature after it is attached to a Map.Question:MapX vers

2007-10-27 16:39:00 3706

转载 mapx 创建使用位图样式的符号例程。

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 3.xPlatform: All Win32 PlatformsCategory: C++Summary:C++ sample code showing how to create a point and use the BitmapSymbols collection.Que

2007-10-27 16:31:00 1428

转载 mapx toolused 事件代码例子

/**//*MapInfo Products Knowledge BaseProduct: MapXVersion: 2.0Platform: Window 95/Windows NTCategory: C++Summary:A ToolUsed handler for C++ that changes the style of a feature.Question:A ToolUsed ha

2007-10-27 16:24:00 1267

转载 mapx 添加新的永久图层

 MapXLayerInfo LayerInfo ;CMapXFields MapFields ;        try...{        LayerInfo.CreateDispatch( LayerInfo.GetClsid() ) ;        MapFields.CreateDispatch( MapFields.GetClsid() );        MapFields

2007-10-27 14:38:00 1682

转载 mapx 创建使用truetype字体的符号样式。

    //创建点样式    try    {...        pointStyle.CreateDispatch(pointStyle.GetClsid());        pointStyle.SetSymbolType(miSymbolTypeTrueTypeFont);//Mapx Symbols                   COleFont ft=pointStyle.

2007-10-27 14:19:00 2081 1

转载 mapx 画矩形

    //绘制一个空心矩形区域。    CMapXRectangle rec;    rec = m_ctrlMapx->GetBounds();    double x1 = rec.GetXMin();    double y1 = rec.GetYMax();    double x2 = rec.GetXMax();    double y2 = rec.GetYMin();    

2007-10-27 14:14:00 1891

转载 mapx 画圆

double mapx,mapy;m_mapx.ConvertCoord(&x,&y,&mapx,&mapy,miScreenToMap);CMapXPoint point;point.CreateDispatch(point.GetClsid());point.Set(mapx,mapy);CMapXFeature ft; ft=m_mapx.GetFeatureFactory().Crea

2007-10-27 14:11:00 2303 1

转载 mapx 画线

CMapXPoints  Pnts; CMapXFeatureFactory FeaFac; CMapXLayer   Layer;CMapXFeature Feature;CMapXStyle   Style;double centerX,centerY;centerX=m_ctrlMapX.GetCenterX();centerY=m_ctrlMapX.GetCenterY();Pnt

2007-10-27 14:08:00 2170

转载 mapx 画点

float screenX,screenY;double mapX,mapY;CMapXPoints pts;CMapXPoint pt;CMapXLayer layer ;pts.CreateDispatch(pts.GetClsid() );pt.CreateDispatch(pt.GetClsid() ); screenX = X;screenY = Y; m_pMap-

2007-10-27 13:46:00 1323

Test Machine

非常简单的小程序。 通过创建多个线程,运行浮点数计算及创建大内存对象消耗系统资源,达到测试服务器性能的目的。 对于测试多个cpu,大内存的服务器有效,类似于一个微型的sdmax.

2011-04-18

mapx 反序列化读取数据

来自mapinfo 官网的例子。<br>This method can be used to restore a dataset from a map which has been stored to a file using OLE serialization. Since datasets rely on external data, the contents of the datasets are not serialized to the file along with the rest of the map's information. DataSets.Restore can be used to restore a dataset (and its themes) by pointing a de-serialized map back to the external data.

2007-10-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除