I want to get ISP from GeoIPISP.dat file using vb.net windows application.
They do not have any vb.net documentation listed on their site. They do however have C# examples.
Try referencing their documentation here:
http://maxmind.github.io/GeoIP2-dotnet/
You could also use http://converter.telerik.com/ to convert pieces over to VB.net as needed.
Related
Is it possible to use the Microsoft Edge WebView2 control in VB.NET application using Visual Studio? thank you for your replies
Absolutely, although it is still in Preview: https://learn.microsoft.com/en-us/microsoft-edge/webview2/gettingstarted/winforms
Code examples currently given are in C# but it looks like the VB.NET examples have been written and not yet merged to the "live". However, they can be viewed here: https://github.com/mrlacey/UWPCommunityToolkitDocs/blob/85328d28c601721335a0de59084517852110c9e6/docs/controls/wpf-winforms/WebView.md
UPDATE 1
I tried to port existing C library as WinRT component, but it's not working as I must be doing some mistake, I am totally unaware about C++/C dev in Visual Studio. Please anyone help to port existing C lib to C# or help to develop WinRT component from it.
Transport Neutral Encapsulation Format or TNEF is a proprietary email attachment format used by Microsoft Outlook and Microsoft Exchange Server. An attached file with TNEF encoding is most often named winmail.dat or win.dat. It consists of email body, subject & attachments.
I've searched a lot and found two relevant solution. One is in C language, that I don't want. Other solution (I'm not sure though) is not compatible with WinRT.
So anyone know any C# library by which, I can decode the Winmail.dat file and extract the attached file and other data. I want to consume that lib in C#/XAML WinRT app.
I've recently written a completely open source (MIT licensed) version of Microsoft's Microsoft.Exchange.Data.ContentTypes.Tnef namespace TNEF API in MimeKit which is available via NuGet.
You can view the documentation for my implementation here: http://www.mimekit.net/docs/html/N_MimeKit_Tnef.htm
The only difference is the namespace. My implementation uses MimeKit.Tnef instead of Microsoft.Exchange.Data.ContentTypes.Tnef.
I'm trying to download a file from the internet by clicking a button in MS Access.
I'm trying to use My.Computer.Network.DownloadFile as described here:
http://msdn.microsoft.com/en-us/library/1say4ws7(v=vs.80).aspx
Private Sub Command2_Click()
My.Computer.Network.DownloadFile("http://www.example.com/temp/xml_test.xml", "C:\xml_test.xml")
End Sub
but the 'Microsoft Visual Basic for Applications' IDE that I'm typing this into seems to have no idea what I'm talking about (text just turns red).
Can I just not do this through the built in VB editor or can I simply load a library or something to make it work?
Sorry but I'm very new to VB and to Access so search results are not specific enough for me to understand - lord knows I've tried.
I'm using Access 2010 but the DB was created in an previous version - not sure if that matters.
You can't use any .NET libraries in Access/VBA.
I recommend you check out Pearson's code for downloading files, posted on his website. It says it's written for Excel but it should work in Access. http://www.cpearson.com/excel/DownloadFile.aspx
To contradict my first statement, technically there are actually a few .Net libraries that can be called from VBA if you know how to do it (late binding only, for one thing). I'm having trouble finding the information on that right now. And I somewhat doubt that the library you're trying to use here is one of them. If I remember correctly, some of the encryption library can be used in VBA.
Im intrested in finding out how i can add and extract cell values in open office calc using VB.net
dose anybody know any good refrences online to help me get started
The first think you need is the OpenOffice SDK. Here is that link: http://download.openoffice.org/other.html#tested-sdk
Now, most of the examples are written in JAVA and C++. However, there are several sites out there that have utilities or example code for porting to VB.NET. However, you should really learn about UNO with Open Office through this link here: http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Guide.
Use the guide in tandem with any control or interface you use so that you have a clear understanding of what you are attempting to do. Here is an thread from another site that shows some example code: http://user.services.openoffice.org/en/forum/viewtopic.php?f=25&t=15504
anyone know if these are available?
I think that this:
iText.NET VB Examples
is the closest you're likely to find in VB.NET.
There's also this:
using iTextSharp. NET Form in PDF output
which isn't a complete tutorial, but does give an overview of using iTextSharp in VB.NET, although I'm not sure how useful that link will be to you since the site is originally in Japanese. (The link I've provided uses Google Translate to translate most of the text to English).