Convert A Working 2010 App To Iphone App
Feb 29, 2012I have a working vb program that works very well - is it possible to convert to an iphone app?
View 3 RepliesI have a working vb program that works very well - is it possible to convert to an iphone app?
View 3 RepliesJust 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 RepliesI'm developing a mobile project that I really want to look good. I love the way the iPhone controls.
View 2 RepliesAnyone 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 RepliesIs 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 RepliesiPhone-like navigation between forms?
View 4 RepliesI 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.
can vb.net or a vb.net application (program) be used on the iphone or ipad ?
View 2 RepliesI 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]...
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 RepliesIs 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
I want to convert the code at Webcam using DirectShow.NET to C#. It works perfectly in vb.net. I tried converting using an online converter, however I got about 30 errors
View 8 RepliesI 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 RepliesI'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]....
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]....
I've used this function to send email successfully
Private Function SendEMail(ByVal wholist As String, ByVal emailcontent As String) As Boolean
Dim emailSuccess As Boolean = False
Try
[Code]....
But with a new server my customer has that uses EXCHANGE 2010 it does not work.
I used TELNET to get into port 25 of the exchange server and it seems that it gets a CLIENT WAS NOT AUTHENTICATED error.
Anyone use SMTP with EXCHANGE 2010 yet???
I build my first Project composed of several forms and it�s working just fine. Id like now to redesign the project as a MDI Application. Once created the parent form, I can create child forms but thats not what I need. What I would need is convert my already designed and working forms to MDI child forms. How can that be done?
View 1 RepliesHow can I convert a C# 2010 project to VB2010?
View 3 RepliesIn this case GDI no longer stands for Graphic Device Interface! I have an MDI form, and the child form loads up with a single panel positioned at a specific spot so that i can have a visual studio styled menu on the left side. The square white area is the panel with the fields in it for the user to enter. The left side is a TreeView with GDI lines drawn around it that dont appear until the menu has been changed. Here's what the menu looks like when its rendered properly:
When the form first loads, you can quickly see the GDI drawings come up (sometimes) then disappear. It flashes pretty quick when you can actually see it, but until you change the menu item to another causing it to redraw, its just... gone.. Looks like this:Here's the setup:I have two labels docked at the top for the large white text with a black background
There's the treeview on the left in a picturebox where the GDI components are drawn, and a panel touching it on the right side, which is sized and anchored on all sides basically keeping it stretched to the size of the window while keeping the top and left side pinned in position so it doesnt move, keep it touching the menu on the left.
Inside the panel is 10 more panels, one panel for each menu item. Each panel is programmatically set to resize to 1024x768 and becomes visible once the menu item for that panel is clicked. The panels are all programmatically top positioned at 0 and left positioned at -1 to hide the left border stroke from having the BorderStyle set to FixedSingle. Moving it to -1 hides only that border within the panel its in.
I have dual monitors, so i began stepping through the code on one monitor with the program running on the other so i could see what its doing with each step. While going through, at one point i see the contents of the TreeView completely vanish, but all the drawn GDI stuff is there. Once i get through everything and finally hit F8 on the very last line when control of the program is given back to me because its now waiting for me to do something, all of a sudden the treeview contents re-appear and the GDI drawings vanish.
I just upgraded a project from VB 2008 to VB 2010. Before, the project did not use LINQ. I have started implementing it. So, I have updated the target framework from 2.0 to 3.5, and added a reference to System.Core, and imported the namespace System.LINQ to the entire project and also imported System.Data.LINQ into the form I'm working with (because it was not available in the list for Imported Namespaces in the references tab).
It's not throwing any errors now, but my IntelliSense is not working for LINQ stuff.
For example... I write this:
[CODE]....................
Then, if I type S. on the next line, the IntelliSense doesn't grab what it should for S (Only get Equals, GetHashCode, GetType, ReferenceEquals, and ToString, instead of the options I should get like Count, First, FirstOrDefault, etc...). If I Type S.First. then its the same thing, no IntelliSense that lists the available fields for S, just the standard options (Equals, GetHashCode, GetType, ReferenceEquals, and ToString). I should be seeing my column names in my table when I type S.FirstOrDefault.
So any ideas what is going on? When I type the code, for example, MessageBox.Show(S.FirstOrDefault.FirstName), it works perfectly. But it doesn't change the casing of the text (so it would read s.firstordefault.firstname) and no intellisense while doing it. But no errors. BTW - Everything works perfectly when creating a NEW VS 2010 application, it's just my projects upgraded from Visual Basic 2008 that have this issue.
I recently got microsoft expression studio and VS 2010..To test out expression, i created a sweet looking UI, and transferred an old program from VS 2008, but the CSV writing function I have written in the '08 doesn't work with my WPF form in '10.
CODE
Private Sub ReadTimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ReadTimer.Tick
CurrentPosition.Read()
CurrentPositionValue.Text = CurrentPosition.Values(0).ToString()
[code]....
specifically, the error is, "Computer is not a member of My" ....
I'm setting the Image & BackgroundImageLayout properties of a PictureBox programatically, but it's not working. I set the layout to Stretch to fill the picturebox, but the image just displays in it's original size. Here's the code I am using:
[Code]...
but i used this to check if its true
Dim returnValue As String = html
Label4.Text = html
If Label4.Text = "true" Then
[code].....
The code im using:
MsgBox(ListBox3.Items(i).ToString.ToLower)
MsgBox(clientdata.Split(":")(1).Split("|")(1).ToString.ToLower)
If ListBox3.Items(i).ToString.ToLower = clientdata.Split(":")(1).Split("|")(1).ToString.ToLower Then
else
[code].....
Now the weird part is that it goes to the Else case, while the 2 variables in the If are the same.
I found someone's code that they posted on YouTube for a file exists. Now, with their setup it worked fine, but I am trying to search the ENTIRE computer. Not just the application folder, and I can't seem to get it to work.
[Code]...
Using that code I can search for the specified folder and if the file exists it changes the text. Now this works, but I would like to search everything in My Computer at once.
[code]Well, the first GetPixel works fine, it sets textbox2 to yellow if the pixel is ofund and textbox1 says green. But, the second GetPixel doesn't work. The coordinate are correct and the color is also, but I never receive the msgbox.
View 28 Repliesmy program connect to Access DataBase 2003 ! in my computer every thing be ok !but in other pc my program can not open on show this message :
my OS is 7!my VS version is 2010 and it is my connection string : "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + My.Application.Info.DirectoryPath + "my_db.mdb" where is my problem ?
I have form1 and form2. On form 2 i have 2 combo boxes where the user is asked to make selections. once back on form1 i try to use those selections as part of an if statement but although i should be triggring them it does not. I cannot figure this out. I have set up test variables and msgboxes along the way to test this.
The code excecutes. I have double checked the variables on form 2. They just do not trigger a response that will enter the if statements even though it looks like they should. I have double checked that test1 and test 2 are grabbing the variables from form 2
test1 is "Male"
test2 is "10 - 19"
When the code excecutes i never get to the msgbox("Age") line of code. I have also tried taking the spaces out of the strings with no luck as well.
[Code]...
[code]why this code dosnt work? the if statment dont excute it work only if it's like this [code]
View 1 RepliesI've got a button in my app's window that I'm trying to click with code but it isn't working. I googled and found out to do this (in an MSDN document I think):
[Code]...