371 Topics
| |
i face a problem in checking file condition. I wish to create a program that can check the condition file continuously while the program is running. For code below that I wrote: [CODE]Private Sub StartTracking_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim FILE_NAME As String = "\Program … | |
I am trying to work on an assignment that allows you to create an entry for a phone book, but there are a few things confusing me: #include <string> #include <iostream> #include "entry.h" using namespace std; entry::entry() { p_fname = ""; p_lname = ""; p_phone = ""; } entry::entry(std::string fname, … | |
[ATTACH=right]16757[/ATTACH]Facebook [URL="http://blog.facebook.com/blog.php?post=418175202130"]announced last night[/URL] its own location-based "check-in" app -- this being the social-networking site's response to similar applications like FourSquare, Gowalla and Brightkite. The new app, called [URL="http://www.facebook.com/places/"]Places[/URL], is available on the iPhone, with the latest version of the Facebook app, and through touch.facebook.com on mobile devices that support … | |
Hey People of DaniWeb! I have a question for you! What would you think about having the Mobile Section split up? An Example: OLD: Mobile Development > A bunch of un organized threads. NEW: Mobile Development > iOS > All iOS threads IN HERE > Windows Phone > All Windows … | |
I have been following this tutorial about "How to: Preserve and Restore Page State for Windows Phone" found at http://goo.gl/ct7ui and one of the lines of code is this: protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e) { // If this is a back navigation, the page will be discarded, so there // … | |
Mobile malware has moved from the security vendor testing labs, out of the realms of marketing hype and FUD, and [firmly onto your smartphone](http://www.daniweb.com/hardware-and-software/tablets-and-mobile-devices/news/382139/how-mobile-malware-actually-grew-by-1400-percent-in-the-last-12-months). The main target for the malware distributors would appear to be the Android platform, which is not surprising given the rapid growth in the userbase coupled … | |
. hi, i want know how can i convert a java desktop application to java supported mobile application. i have created a java desktop calculator application in **"Net-beans 6.8"**, Now what i need to do to use this application in java supported mobile screen resolution 320x240 can i convert my … | |
I have a Storyboard which targets an Ellipse. How do I make the Storyboard target an image which I have in a List<>? This is the code: <Storyboard x:Name="sbMoveImages"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="ellipse"> <EasingDoubleKeyFrame KeyTime="0" Value="-1"/> <EasingDoubleKeyFrame KeyTime="0:0:3" Value="641"/> <EasingDoubleKeyFrame KeyTime="0:0:5" Value="640"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="ellipse"> <EasingDoubleKeyFrame KeyTime="0" Value="1"/> <EasingDoubleKeyFrame KeyTime="0:0:3" … | |
| I am doing system using window phone 7 and sql server as database. I am using below coding to get shopping cart list at listbox. public List<Order> FindOrder(string custemail, string orderstatus) { var findorder = from r in order.Orders where (r.CustEmail == custemail && r.OrderStatus == orderstatus ) select r; … |
Hi guys I am currently learning WP7 and have a basic app built, the problem is i left it a few weeks back with everything fine. However I have just re-opened it and the forms will not load in Visual Studio 2010. Does anyone know what could possibly be wrong?? … | |
i have my motorola and its asking me for a subsidy code , could anyone can help me or kindly give me a free code .Thank you so much for your kindness | |
| I am trying to insert and retrieve image from sql server into window phone. and the image type would be varbinary. I cant find example for it.. Mostly the related post is about retrieve from url or isolated image.. Any help? Thank you. |
I'm developing wp7 app . i have a problem with this cod i want to get values of table from a webservice and show it in msg box the problem is i have two tables in a web service but in foreach only the first value can shown in two … | |
I'm devloping wp7 app . i have a problem with this cod i want to get values of table from a webservice and show it in msg box the problem is i have two tables in a web service but in foreach only the first value can shown in two … | |
I would like to collaborate with experienced developers who are looking for fun ideas to create games on smartphones and tablets. Mobile gaming is experiencing exponential growth and there are many attractive options going forward. | |
Hello All, I'm trying to GET values from a DB table in JSON format through AJAX and then parse them into a JQuery List. test.php (partial) [CODE]while($row=mysql_fetch_assoc($sql)) $output[]=$row; print(json_encode($output)); mysql_close();[/CODE] JSON Format it Returns: [CODE][{"name":"1423 Peacock Haven"},{"name":"9835 Fredericksburg Rd"},{"name":"Test Project"}][/CODE] Following along with [URL="http://www.roccles.com/?p=151"]this tutorial[/URL], I'm trying to parse my … | |
BlackBerry Vs iPhone? I know it’s a question that is not only as old as time itself, but has been answered many times. But as a BlackBerry user migrating to iPhone I thought I’d have a go myself. You don’t have to look too far to stumble across numerous reviews, … | |
Im trying to write a program that inputs a single letter and prints out the corresponding digit on the telephone. Im having trouble finding out a way in which you can group the variables that have the same digit, but im not sure how. You guys have any suggestions? P.S. … | |
Hey, I created a phone directory program. But I was wondering if I could get some hints on how I could create a txt file and add, delete names and numbers on the txt file. [CODE]import java.util.*; import java.lang.*; import java.lang.Object; import jpb.*; public class PhoneDir { private static LinkedList … | |
Hi Programmers, Please help me, i was wondering on how to create a simple phone book program using struct array to insert a new contact, update an existing contact, delete an existing contact and to display the contact information | |
Hi hope someone can can help im having a problem with how ripple is dealing with for loops when emulating an android app using html5 css jquery and jqtouch simple loop [CODE] var len = 1; for (i = 0; i <len; i++){ alert('foo'); } [/CODE] run it through chrome … | |
I'm trying to validate the correct format for a phone number in a text box: (000) 000-0000 For a test, i made it so that a messagebox shows up saying "correct" if the format is correct. This test works well WHEN the format is correct. BUT when the format IS … | |
Hi i am a new developer i am just trying to create a simple app and put it on my phone. i have created a hello world one and successfully put that on my phone, i am now trying to create one where you click on a button and it … | |
I have to make a program that outputs something similar to the appearance of a phone. With intractable buttons, (0 - 9) a T button that outputs "Calling" and an E button that outputs "End-Call" Now i have that much done [CODE]import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Dimension; import java.awt.Color; import … | |
I am currently working on my thesis which consists of a mobile parking application. It's basic function is that of finding a car spot for the user. I would like to find some computer science challenges within this scenario. An algorithm that will boost my mobile app or something of … | |
I'm attempting to build my first windows phone 7 app using visual studio, I'm a complete novice at this so any help is much appreciated! The problem is that I'm trying to implement a text box so the user can enter a postcode and click a button, I then need … | |
[ATTACH=RIGHT]16523[/ATTACH]Skype, the Luxemborg-based internet video phone service, filed for its initial public offering (IPO) on Monday (August 9) to list on the Nasdaq Stock Market. The value was tentatively set at $100 million, a number analysts suggest is merely a rough estimate set to help the Securities and Exchange Commission … | |
i am doing a project for a mobile apps class and i am about 80% done. all the UI is complete, but i need to have a filled out form stored into a db. i used the core data model to set up all the entities/attributes, i just cannot figure … | |
Hello guys, Am working on phonegap(jquerymobile) for an android application.I want to implement a map which shows a marker at a particular location and when i click on the marker,it should show a window and a description about the location inside the window..The below code is working when i run … | |
Hello, I am trying to create a program for telephone calls. i.e when a user calls a phone number, an operator picks up and ask the user for some input, the input is then validated and base on that do something else. where do i start, what programming language is … |
The End.