--Does anyone know if you can use windows variables in MapBasic? I want to use the %userprofile% variable so I can store/read files in any particular users "C:\Documents and Settings\" folderThanks
--
You received this message because you are subscribed to the
Google Groups "MapInfo-L" group.To post a message to this group, send
email to mapi...@googlegroups.com
To unsubscribe from this group, go to:
http://groups.google.com/group/mapinfo-l/subscribe?hl=en
For more options, information and links to MapInfo resources (searching
archives, feature requests, to visit our Wiki, visit the Welcome page at
http://groups.google.com/group/mapinfo-l?hl=en
---
You received this message because you are subscribed to the Google Groups "MapInfo-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mapinfo-l+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Developer support is available in the form of the Windows Software Development Kit (SDK), providing documentation and tools necessary to build software based upon the Windows API and associated Windows interfaces.
The Windows API (Win32) is implemented in the C programming language[2] and is not object-oriented. Windows 8, while still providing the Win32 API, also provides the WinRT API which is implemented in the C++ programming language[3] and is object-oriented by its design.[3]
I’m not sure that’s true Glen. I’m pretty sure the .NET Framework acts as more of a wrapper when it comes to the WinAPI. It certainly does not replace it.
Tom Bacon
GIS Engineer, Mouchel
T 01444 472380 │ E thomas...@mouchel.com │ W www.mouchel.com
Our values: innovation │ excellence │ integrity │ responsibility
--
--
You received this message because you are subscribed to the
Google Groups "MapInfo-L" group.To post a message to this group, send
email to mapi...@googlegroups.com
To unsubscribe from this group, go to:
http://groups.google.com/group/mapinfo-l/subscribe?hl=en
For more options, information and links to MapInfo resources (searching
archives, feature requests, to visit our Wiki, visit the Welcome page at
http://groups.google.com/group/mapinfo-l?hl=en
---
You received this message because you are subscribed to the Google Groups
"MapInfo-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to mapinfo-l+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Mouchel Limited (Mouchel) is registered in England and Wales with registered number 01686040 at Export House, Cawsey Way, Woking, Surrey, UK, GU21 6QX. The information in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorised. Any views or opinions expressed in this e-mail may be solely those of the author and are not necessarily those of Mouchel. No contracts may be concluded on behalf of Mouchel by means of email communications. Mouchel reserves the right to monitor and intercept emails sent and received on our network. |
With regard to WinRT (and I don’t want to start a debate, simply pointing this out)…
AFAIK WinRT is not a replacement for Win32. That would imply to me that Win32 would be ‘gone’, but I expect that WinRT will in fact sit beside Win32 for the foreseeable future. Win32 may eventually be phased out, but I can’t see that happening for quite a few years yet. So, unless you’re writing applications that you expect to still be used and in circulation in 10+ years time then I don’t see this being a problem for now. I’m pretty sure MS would be making people aware if Win32 was imminently going to disappear.
I’m all for using .NET, and I find that I’m more productive if I do, but that’s not to say that you can’t use the WinAPI if you prefer.
Tom Bacon
GIS Engineer, Mouchel
T 01444 472380 │ E thomas...@mouchel.com │ W www.mouchel.com
Our values: innovation │ excellence │ integrity │ responsibility
From: mapi...@googlegroups.com [mailto:mapi...@googlegroups.com] On Behalf Of Glen O
Sent: 24 April 2014 14:51
To: mapi...@googlegroups.com
Cc: L...@gispro.dk
--
--
You received this message because you are subscribed to the
Google Groups "MapInfo-L" group.To post a message to this group, send
email to mapi...@googlegroups.com
To unsubscribe from this group, go to:
http://groups.google.com/group/mapinfo-l/subscribe?hl=en
For more options, information and links to MapInfo resources (searching
archives, feature requests, to visit our Wiki, visit the Welcome page at
http://groups.google.com/group/mapinfo-l?hl=en
---
You received this message because you are subscribed to the Google Groups
"MapInfo-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to mapinfo-l+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You might be thinking that you can use some trick (referencing the GAC library instead of the compiler reference or using reflection to get to private APIs, or P/Invoking into Win32). But all of those uses will be caught by AppStore review application and you wont be able to publish your app through Microsoft's store.
You can still do whatever ugly hack you please on your system. It just wont be possible to publish that through the AppStore.
Finally, the .NET team has taken this opportunity to do some spring cleaning. mscorlib.dll and System.dll have been split in various libraries and they have moved some types around.
this is my point of view on this topic .
Dim temp As String
temp = "run application" & Chr(34) & "C:\OCG Data\MapInfo Mapbasic\Sector Maker\test.mbx" & Chr(34)
mapinfo.Do(temp)
--