 |
|
 |
When posting your question please:- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode HTML tags when pasting" checkbox before pasting anything inside the PRE block, and make sure "Ignore HTML tags in this message" check box is unchecked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers, Chris Maunder
The Code Project Co-fou
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
 |
Hello!
I was able to do this in vb.net but in mobile development I haven't figured out how to check if an instance of a current application is already running. I couldn't find any sample code. The ones I have found didn't work out.
If you know it, I would appreciate if you submit the code.
Thanks.
What a curious mind needs to discover knowledge is noting else than a pin-hole.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Dear All I am developing an application which open respective file identifying its ext. like .doc,.xls,.pdf. My concern is that is Windows CE 6.0 support to open these file by default?
Please help me on this
Regards Yrishi
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
yrishi wrote: I am developing an application which open respective file identifying its ext. like .doc,.xls,.pdf. My concern is that is Windows CE 6.0 support to open these file by default?
Yes, it includes office and pdf viewers Click[^]
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Hi,
I am having a strange problem when starting a process.
RepsApp is the entry point for the application. AppHandler is essentially a class that is used to maintain a bunch of global variables.
public class RepsApp { static void Main() { AppHandler.frmMain = new FormMain(); AppHandler.frmMain.ControlBox = true; AppHandler.frmMain.MinimizeBox = false; AppHandler.frmMain.FormBorderStyle = FormBorderStyle.FixedSingle; Application.Run(AppHandler.frmMain);
if (AppHandler.GetUpdates) { int processID = Process.GetCurrentProcess().Id; Process p = new Process(); p.StartInfo.FileName = Path.Combine(AppHandler.GetAppPath(), "AppUpdater.exe"); p.StartInfo.Arguments = string.Format("{0} {1}", processID, true); p.Start(); }
Application.Exit(); } } In the MainForm class I simply set AppHandler.GetUpdates to True and close the form
public class FormMain : System.Windows.Forms.Form { private void menuItemGetUpdates_Click(object sender, EventArgs e) { AppHandler.GetUpdates = true; this.Close(); } } When the MainForm closes : if AppHandler.GetUpdates is True the main application stays in memory after it launchs the AppUpdater process. if AppHandler.GetUpdates is False the main application closes as expected.
Is there any reason why calling Process.Start would prevent the main application from closing?
Thanks,
David
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
I have a program on phone that uses xml file to store data, the program when on the phone does not see the xml file, but works well on the emulator. thanks in advance.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi, I'm using cascada mobile breeze to build phone applications. And as it will eventually become obvious, i'd like to point out that I have limited experience with html, css, and javascript. All the components needed to work with breeze... That being said, I have written some code that works so far on the breeze application simulator with no errors. I would like to add more sound files to the application with corresponding titles and "click to play" buttons. I have included the clean code rather than my error ridden attempts. If someone could show me by example, I would appreciate the guidance. Thank you!
<html>
<head><meta name="cascada-include" content="SOUND" optional=false />
<style type="text/css">
body
{
background-color:#d0e4fe;
}
h1
{
color:green;
text-align:center;
}
p
{
font-family:"Times New Roman";
}
</style>
<script>
function doSound() {
var sound = new CMSound();
sound.openFromUrl( "http://lrbrookshomeservices.com/i/u/10042837/m/alligator.mp3");
sound.play();
}
</script>
</head>
<body>
<h1>Animal Sounds</h1>
<p>Choose Your Favorite Animal Sounds...</p><img src="http://lrbrookshomeservices.com/i/u/10042837/i/Blue_Bar_x_728.png" />
<br />
<br />Alligator
<input type="button" value="click to play" onclick="doSound();"/>
</body>
</html>
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
Im new to this forum, not sure if i posted at the correct section, please help me out with this...
Im currently working on this mobile tracking application using visual basic, which allow user to track the position of the trackee and view their location on the map. Right now im using google map which require internet connection.
I came across MapPoint and have some enquires about it.
Q1: Could user view the map without internet connection using mappoint after it is implemented into visual basic?
Q2: Any other recommandation of maps which does not require internet connection and can be build in to vb mobile application.
Thanks (:
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I have a J2ME midlet application. I have tested the application with Palm OS Emulator. I want to test the application with Windows CE 5.0 Emulator. Please help me with the steps in doing so. I have downloaded the Win CE 5.0 Emulator.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
hi
how to open program through C# program and give this program focus - in Windows Mobile ?
thank's in advance
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi Everybody, I new with .Net interop and I am facing a problem and i need help it is urgent. I want to use .Net libraries in un managed code, I have followed this link Exposing .NET Components to COM
and it really works. The problem happens when i have began to do the same steps with MFC smart device application, it fails and gives my run time error "COM error". I made some searches and i have discovered that i need to register the .dll as COM class first before I can use it, but i don't know how to do so. Can any one help me.
Thanks in advance.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Is anyone here interested in doing iPhone (game) development on Windows? I have recently found an SDK that will allow just that. They're looking for beta testers, so if you're interested, just go check out http://www.DragonFireDSK.com and shoot them an e-mail...
|
| Sign In·View Thread·PermaLink | 1.00/5 (3 votes) |
|
|
|
 |
|
|
 |
|
 |
I have a program compiled in VS2005, how do i get in installed into the phone. I have NOKIA pc suite installed. thanks.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Are you using the Red5Labs component so that your Nokia phone can run .Net programs? Beyond this add on (which isn't free) Nokia phones can't run programs developed in VS2005.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
In the message you sent me you stated the following:
Enobong Adahada wrote: I have the explore license, but the program still won't install, i get an error that says "unable to load the genesis project, the project is not supported by this installation".
I can't help you with that. Being in the United States I've never even seen a Symbian phone. So I can't tell you anything about the development error message that you are getting.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi, I got my previous problem sorted. Another question. I have screens for all the various functions in my program. In the startApp method I call the method createScreens which creates each screens. The problem is when this is called each screen flashes on screen before the mainmenu pops up when the program is launched. The main menu is not a screen. Please see code below:
public void startApp() { theDisplay = Display.getDisplay(this); createScreens(); theDisplay.setCurrent(mainMenu); }
private void createScreens() { screens = new Screen[items.length]; screens[0] = kmtomiles(); screens[1] = tyrePressure(); screens[2] = fuelConv(); screens[3] = fuelEcon(); screens[4] = avgSpeed(); screens[5] = emergPhone();
} Any way I can get it to create screens without them flashing on screen?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
I have a developed a mobile client application for which i wants to make a server application. I have my website which have a database to it and i wants that both server application and my website will share the same database.
The main feature of the server application i to make continuous http request to a URL and capture the response and perform according to the response.
But i dont know what to do in this regards, i am totally stucked to this please help me what to do.
which kind of application i have to make either web application or web services & how i will integrate it to my website.
Thanks in advance
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
And whats he problem then??
Just make a webservice in your existing web application and call this webservice from mobile, windows or web application
Alexei Rodriguez
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
I have a developed a mobile client application for which i wants to make a server application. I have my website which have a database to it and i wants that both server application and my website will share the same database.
The main feature of the server application i to make continuous http request to a URL and capture the response and perform according to the response.
But i dont know what to do in this regards, i am totally stucked to this please help me what to do.
which kind of application i have to make either web application or web services & how i will integrate it to my website.
Thanks in advance
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
I'm a little confused on your question. You've posted your question in the Mobile programming section, but I don't see any mobile aspect to the task that you are trying to accomplish. Either you left out a detail of your scenario or you have posted your question in the wrong forum.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
hi how i can disable BT and WIFI in windows mobile, using C# ? can i get sample code for it ?
thank's in advance
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |