Search the web
Sign In
New User? Sign Up
mitab · MITAB Users List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1292 - 1321 of 1383   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1292
Hi, I've created a table from xls file. The table contains 100 lines. After all these operations i can read it from mitab. Then i went to table structure and...
spdview
Offline Send Email
Oct 14, 2008
9:00 pm
1293
Hello! I'm writing a software to convert a file from one coordinate system to another. I do this by reading the different objects from the file with the...
Mikael Larsson
d97micke
Offline Send Email
Oct 20, 2008
1:29 pm
1294
Have you tried adding a try { .... } catch (..) { } block around the call that crashes ? ... From: Mikael Larsson <mickeboy@...> Subject: [mitab]...
Anthony Dunk
anthonyd.rm
Offline Send Email
Oct 20, 2008
11:35 pm
1295
Yes, but that does not work for me. I never enter the catch-part, I still get a crash on the same line of code. To: mitab@...:...
Mikael Larsson
d97micke
Offline Send Email
Oct 21, 2008
8:50 am
1296
Perhaps you need to go to the source of the problem and check that the object is valid before writing it out. Also check that you're calling the correct mitab...
Anthony Dunk
anthonyd.rm
Offline Send Email
Oct 22, 2008
2:02 pm
1297
Go back to basics. Are you sure you're using the right function calls to output a feature ? Also, is there a problem with the data you're reading from the...
Anthony Dunk
anthonyd.rm
Offline Send Email
Oct 22, 2008
2:03 pm
1298
And here's the minimal example to create a TAB file. It seems as though you have to have at least one field for Mitab to output a valid TAB file that MapInfo...
Anthony Dunk
anthonyd.rm
Offline Send Email
Oct 22, 2008
2:05 pm
1299
Hello! Thank you for your reply. However I don’t think that there is something wrong with the code since it has worked very well for hundreds of files. I...
Mikael Larsson
d97micke
Offline Send Email
Oct 22, 2008
9:32 pm
1300
Hi, Is it possible to know the table type once this is opened ? Ex: Native, View, Raster, etc Thank you !...
sagent100
Offline Send Email
Oct 27, 2008
1:28 pm
1301
Hello! Can someone help me with this command. I have a folder lets say D:\Data\ that contains 50 tab and its related files. I want all of this files to be...
Sören Lindqvist
soli004
Offline Send Email
Oct 27, 2008
1:28 pm
1302
... In C++, you can use the IMapInfoFile::GetFileClass() method after opening a dataset and it will return you one of: typedef enum { TABFC_IMapInfoFile = 0, ...
Daniel Morissette
dan_morissette
Offline Send Email
Oct 27, 2008
9:01 pm
1303
... The tab2tab.exe program (in the MITAB Windows download package) is what you'd use to convert a single file between MIF and TAB formats. e.g. tab2tab.exe...
Daniel Morissette
dan_morissette
Offline Send Email
Oct 27, 2008
9:08 pm
1304
Thanks Daniel, Does this mean you must have the tab2tab.exe in the same folder as all the tab files? I tried with @echo off Cd d:\data\mitab-1.70-win32 ...
Soren Lindqvist
soli004
Offline Send Email
Oct 28, 2008
10:42 am
1305
I have finally got it to work but only half way... I get ERROR3... could not be open as a MapInfo dataset Failed to open .... I have tried two different tab...
Soren Lindqvist
soli004
Offline Send Email
Oct 28, 2008
10:42 am
1306
Hi Soren, This is off topic for this newsgroup, and you can find a lot about DOS batch scripts by doing a Google, but the following batch script will probably...
Anthony Dunk
anthonyd.rm
Offline Send Email
Oct 28, 2008
11:17 am
1307
... The error suggests that the tab datatsets are either corrupt, or use some format options that MITAB doesn't support. If you can zip up and send me one of...
Daniel Morissette
dan_morissette
Offline Send Email
Oct 28, 2008
11:39 am
1308
Hi, I am getting crazy ! Please anyone were able to use the function mitab_c_set_points in a VB.Net program ? I have this definition function: Declare Sub...
sagent100
Offline Send Email
Nov 9, 2008
7:56 pm
1309
As a minimum you should remove Byval from the X and Y parameters. Regards Uffe ... From: "sagent100" <sagent100@...> To: <mitab@yahoogroups.com> Sent:...
Uffe Kousgaard
haansus
Offline Send Email
Nov 9, 2008
9:58 pm
1310
Hello again! I have tried to isolate the core of my code. It is quite a few lines so bear with me. I get an exception when I call the mitab_c_write_feature...
Mikael Larsson
d97micke
Offline Send Email
Nov 18, 2008
10:10 pm
1311
Hello! The problem seems to be that the funtion PickSeedsForSplit found in mitab_mapindexblock.cpp internally tries to divide by zero, around line 1050. If I...
Mikael Larsson
d97micke
Offline Send Email
Nov 23, 2008
3:02 pm
1312
I write several data file processing tools using Microsoft Visual Studio 2005. (Microsoft Visual C++ 2005) Simple executable. Source file is a .cpp. I would...
skahrkling
Offline Send Email
Nov 24, 2008
9:59 pm
1313
  This is really a general question of how to link with a DLL in VS2005.   The error you're getting is at link time, so its related to the .lib file which is...
Anthony Dunk
anthonyd.rm
Offline Send Email
Nov 25, 2008
1:54 am
1314
Thank you for your help so far. I added Project -> Properties -> Configuration Properties -> Linker - ... Now I get even more cryptic: mitab.dll : fatal error...
skahrkling
Offline Send Email
Nov 25, 2008
2:50 pm
1315
  Yes, there does not seem to be a .lib file in the distribution. The only way I know of to use the DLL in this case is to use LoadLibrary() calls to access...
Anthony Dunk
anthonyd.rm
Offline Send Email
Nov 25, 2008
10:19 pm
1316
Here's what I did so far. Downloaded additional mitab-1.7.0.zip (even though document http://mitab.maptools.org/ said MITAB-1.7.0-WIN32.ZIP: ... is "all you...
skahrkling
Offline Send Email
Nov 25, 2008
10:41 pm
1317
Oh Ok. Sorry I hadn't read your recent response yet. I will try this tomorrow LoadLibrary("mitab.dll" etc. I had already started to create .lib files but got...
skahrkling
Offline Send Email
Nov 25, 2008
10:42 pm
1318
I think I might prefer to do that: compile and link all mitab modules with my own code. That way it's somewhat understandable. I'm starting with a simple test...
skahrkling
Offline Send Email
Nov 26, 2008
8:51 pm
1319
Is it possible to specify "charset" when creating new files? When I look at the source code it seems to always use "neutral", which means undefined. I would...
Uffe Kousgaard
haansus
Offline Send Email
Feb 18, 2009
8:03 pm
1320
... Are you using the C++ classes or the C API? In C++, there is a IMapInfoFile::SetCharset() method that should do what you need (it was added in v1.6.2)....
Daniel Morissette
dan_morissette
Offline Send Email
Feb 23, 2009
5:08 pm
1321
... C API. If you can add the function to the API it would be great. Otherwise we do it, when we get to that point in our development - the need is not just ...
Uffe Kousgaard
haansus
Offline Send Email
Feb 23, 2009
9:08 pm
Messages 1292 - 1321 of 1383   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help