Using DLL File On Android And Iphone?
Nov 29, 2011
I am having VB.net dll files which I need to use in Android and iPhone application.
Creating web service doesn't satisfy my requirement as I need to use this in offline mode.
how can I use this in Android or iPhone application development.
View 2 Replies
ADVERTISEMENT
Feb 23, 2011
Just in case, I missed anything. As far as the google result, I don't see a capability to develop iPhone app using VS2010 (sorry, maybe I shouldn't ask this question here). right? Or, is there a way to write the code in VS, and then using some sort of converter...
View 10 Replies
Jul 8, 2010
I'm developing a mobile project that I really want to look good. I love the way the iPhone controls.
View 2 Replies
Nov 20, 2009
Anyone know what jailbreaking does to an iPhone? If so, is there a way to make a program to jailbreak 3.1.2 in VB or in RealBasic? I guess it'd have to send commands to the hardware and software of the iPhone, and communicate with it pretty well...
View 13 Replies
Sep 16, 2010
Is it possible to create something like the iphone scrolling on a windows, you could also say how google Maps scrolls. If so how would you think you would go about it?
View 8 Replies
Jan 28, 2010
iPhone-like navigation between forms?
View 4 Replies
Feb 11, 2011
can vb.net or a vb.net application (program) be used on the iphone or ipad ?
View 2 Replies
Feb 29, 2012
I have a working vb program that works very well - is it possible to convert to an iphone app?
View 3 Replies
May 3, 2012
I just want to catch evry node in the xml post from the iphone, for example this is the xml file that i need to "get"
[Code]...
View 1 Replies
Jun 12, 2009
Trying to mimic the way the IPhone flips the album art to the songs list. I want to pass in two generic objects and have the storyboard flip them. I can get the slide effect, but have not figured out how to scale the object so it appears to be rotating and not just sliding.
View 1 Replies
Mar 28, 2010
Is here way to make a program to send a click from PC to the iphone? So basically, what I want is when I click key �a� on my keyboard my iphone receives a click on button �a� on phone�s keyboard (lets say I know coordinates). This way I can use a key board for typing on my iphone
Something similar to this is already done, it�s called Veency, when you can control your iphone clicks by your mouse from a pc or Mac.
Veency uses wi-fi for the connection but it would be better if my program used USB port.
how to send any clicks to the iphone from a pc, should I try and make super simple VNC program
View 1 Replies
Oct 23, 2009
I have an image upload facility in my asp.net project, when uploaded a thumbnail of the image is generated and saved to disk. What I would ideally like to do is apply some nice styling effects to this thumbnail image.. similar to the look of the icons on an iPhone.. perhaps a slight gradient, smooth rounded corners, and a border.
View 3 Replies
Aug 17, 2010
Ok i know theres a program called eclipse for which you can download android plugins that let you develop application for the Android MObile Phones using the Android SDK.Is there any similar interface/plugins or anyway what so ever, that will allow you to develop apps for the android using say vb.Net 2008??
View 1 Replies
Feb 1, 2011
I'm trying to read back a string that I wrote into a binary file, but it's giving me problems and I don't know what's going on. I open and read my file using the code below:
ifstream input([filePath UTF8String], ios::in | ios::binary);
int numStringBytes;
input.read((char*)&numStringBytes, 4);
[Code]....
View 1 Replies
Sep 24, 2010
I'm trying to read back a string that I wrote into a binary file, but it's giving me problems and I don't know what's going on. I open and read my file using the code below:
ifstream input([filePath UTF8String], ios::in | ios::binary);
int numStringBytes;
input.read((char*)&numStringBytes, 4);
[code]....
There is a lot more to the file reading code, but it's proprietary and this is the part that keeps crashing. It runs fine loading the first two files, but when I try to open a third file, it crashes with EXC_BAD_ACCESS at the input.read((char*)names, numStringBytes); line. I don't see any reason that this should crash. I'm writing the binary files in VB.NET using the below code:
Dim myFS As New FileStream(savePath, FileMode.Create)
Dim encoding As New System.Text.UTF8Encoding()
Dim stringBytes() As Byte = encoding.GetBytes("++string")
[code]....
View 5 Replies
Oct 24, 2011
If something is written in VB is it compatible with android?If so, can you give me some documentation?
View 4 Replies
Jan 20, 2012
Sir, I am a vb programmer. I want to develope a vb application that can be run on an android phone or tablet.What I should do for that and how can i install this application on android phone or tablet and run it successfully? Generally i use ms access or sql server for my desktop application. Which data base should i use with my vb application on android phone or tablet?
View 2 Replies
Sep 20, 2011
I'm going to migrate my Android application into WP7 platform. Android one contains heavy enough calculation stuff (encryption/decryption), plus extensive usage of DB (SQLite) and some graphics (simple) and I'm trying to figure which language to select: either C# or VB. I have some experience both in C# and VB.net, but can't decide which one to select.
View 9 Replies
Mar 8, 2012
I've set up this function in my web app to send push notifications to Android devices:
Private Function SendNotification(ByVal authstring As String) As String
Dim request As WebRequest = WebRequest.Create("https://android.apis.google.com/c2dm/send")
request.Method = "POST"
[code]....
However, whenever I call this function, I get the following error message: The remote certificate is invalid according to the validation procedure."
View 1 Replies
Jul 28, 2011
Here my problem is that i wants to write a web application in vb.net which receive the request from android application for login purpuse in xml format and after create a xml format responce, which receive by android application.
View 2 Replies
Dec 1, 2010
here is my WCF server code (VB.NET)...
Service1.svc
Public Class Service1
Implements IService1
[code]....
For some unkown reason, I can run the VS 2010 client test and it the WCF host works fine. The code above just returns nothing (it's supposed to return a string)
View 1 Replies
Dec 4, 2011
I have a .Net WCF Rest service returning Json to be consumed by an Android app.
In debug, the WCF service correctly has the return value (Json) as:
{"BaseLoyaltyPoints":1480,"BonusLoyaltyPoints":0,"BrandId":1414, [etc...] }
Also in debug, when it returns to Notepad, the return value has changed to:
{"BaseLoyaltyPoints":1480,"BonusLoyaltyPoints":0,"BrandId":1414, [etc...] }
[Code]...
View 1 Replies
Apr 23, 2012
I use these code to encrypt any plain text in vb2008.I want decrypt and use generated file in my app in android.I know that put files in assets folder and i use it.this code use Cryptography to encryption.how i can decrypt generated files in my android app.and how i use them in my android app.
Imports System.Security.Cryptography
Public NotInheritable Class Simple3Des
Private TripleDes As New TripleDESCryptoServiceProvider
[code].....
View 1 Replies
Jul 25, 2011
We are using a .net wizard control for a mobile website. Everything works great except on android devices when the user exits the browser to take a call or send a text message. When the user returns to out web page the android browser is refreshing the web page. Our problem is when the web page refresh the wizard is losing the view state So if they are in the middle of the wizard there previous work is lost. how to combat this. Is there a way to persist the wizard even if the user refreshes the webpage? I basically want to make my asp.net wizard control truly stateless.
View 1 Replies
Feb 15, 2011
We are developing an Android Application (Java) that reads an image, encode the bytes in base64 to send them over HTTP (via GET) to a WebService written in VB.NET.On .NET side, they are using this :
Dim Pix As Image
Pix = Image.FromFile("C:UsersPublicPicturesSample PicturesTree.jpg")
Dim ms As New MemoryStream[code]....
How can I pass the correct string to them to correctly decode the image from Java encoding (unsigned) to .NET decoding (signed)?
View 1 Replies
Apr 22, 2012
I have an android application that is creating a JSONArray with:
List<String[]> sqlist = MySQLiteHelper.selectAll();
JSONArray jsArray = new JSONArray(sqlist);
Which is calling
public static List<String[]> selectAll()
{
List<String[]> list = new ArrayList<String[]>();
Cursor cursor = db.query(TABLE_BREADCRUMBS, new String[]
[Code]....
View 1 Replies
Apr 17, 2012
I have an ArrayList in android that I'm trying to convert to a Base64 String, then passing that to a wcf service though JSON and the wcf service inserts the string into a database. Then I need to be able to read that from the database and deserialize it in a .NET application.
This is how I am serializing the ArrayList in android:
private String convertByteArrayToSave(byte[] b){
if(b != null){
return Base64.encodeToString(b,0,b.length,Base64.DEFAULT);
}else{
[Code]...
The ultimate goal is to be able to be able to create a list of these shapes in the .NET app or android app and be able to read the list in the .NET app and android app no matter where it was created from. I'm able to it when you create the Shape from .NET and read it into android using WCF but creating it in android.
View 1 Replies
Sep 23, 2011
I want to create a food order system at the restaurant using the android and VB. so the waiter will use Android to transmit data to the cashier who use VB.Is it possible to connect Android to VB?
View 1 Replies
Dec 21, 2011
i'm using the following algorithm to encrypt and decrypt a string in VB.NET and wanted to do that same method in Android also.
Encryption:
Private Function decryptStr(ByVal key As String, ByVal enc As String) As String
Try
DES.Key = Hash.ComputeHash(System.Text.ASCIIEncoding.ASCII.GetBytes(key))
[Code]....
View 1 Replies
Feb 21, 2011
Is it possible to make applications for the Android phone using VB .NET?
When I searched this, I found stuff where people talked about it, But I didn't find any guide on how to do it or anything that I'm looking for.
View 2 Replies