Questions tagged [smart-device]

A smart device is an electronic device, generally connected to other devices or networks via different wireless protocols such as Bluetooth, NFC, Wi-Fi, 3G, etc., that can operate to some extent interactively and autonomously.

148 questions
0
votes
1 answer

How to deploy and debug VS 2008 SmartDevice Application in Win CE 4.1 device or emulator

I have built an smart device app in VS 2008. I could deployed and debugged in Windows Mobile OS devices successfully. But, I must have to deploy and debug the same app usign Windows CE 4.1 device as well. The problem is compact framework version…
0
votes
1 answer

Progress Indicator during Load Event - is it possible?

Developing Smart Devices in Genexus. I am using the Load Event to load some hundreds of records (returned by a 3rd party webService) into the Grid (some rows might have different layouts). When the user hits the search button, a ProgressIndicator is…
Jaime
  • 159
  • 2
  • 10
0
votes
1 answer

Debugging an application running in windows CE

I have created an application in vs 2008 - Smart Device project with .NET compact framework 3.5 to run on windows CE 6.0 I run this application on a device where Windows CE 6.0 is installed. I want to debug this application from my machine (…
Palak.Maheria
  • 1,497
  • 2
  • 15
  • 32
0
votes
0 answers

.NET CF Assembly corrupted after warm boot

Our customer support came up to us with a weird problem. Every day there are some devices that didn't start our application because an error occured during the app launch phase. While investigating the issue further I found the following post.…
Marcel Dutt
  • 180
  • 2
  • 10
0
votes
0 answers

Windows CE 5.0 : Issue with Arabic Locale

I am developing smart device application using C#.net, And I have a problem writing Arabic text on labels and buttons and it seen in a reversed way Example: if button.Text = "السجاد" when displaying this it show like this : د ا ج س ل ا I searched…
0
votes
0 answers

GeneXus: Websession's contents will not be preserved between calls to Refresh

I need to refill my grid each time the user sets a new date (data from a WebService). According to event triggering order, I was thinking of: (1) Action Event: call a procedure to get the data, transform it, fill the SDT and put it on a WebSession…
Jaime
  • 159
  • 2
  • 10
0
votes
1 answer

Can I use multi-level Grid in GeneXus SmartDevice?

I have the following situation: I have a transaction that I want to show all the elements in a panel, when the user tap the element I want to load and show a level of this element in a grid, in the same panel. The problem is not the tap, I can't…
Andrei Hodecker
  • 136
  • 1
  • 8
0
votes
1 answer

Animated Gif not displaying in webBrowser control

I am trying to put an animated gif on my smart device. I am trying to do this using a webbrowser control. then on the form load i use the following code : String imgPath =…
0
votes
2 answers

Too many assemblies deployed to target device (.NET 2.0 CF)

Is use VS 2005 and want to deploy my .NET C# application to a device (Scanner Honeywell 7600) On the device .NET 2 CF (SP1) is running with Windows CE 5.0. If I create a default project in VS (Smart Device -> Windows CE 5.0 -> Device application)…
0
votes
0 answers

Trouble with OleLoadPicture

Im newbie in MFC. Im trying to render a .jpg picture using OleLoadPicture in my Smart Device MFC project. But i got an error "unresolved external symbol OleLoadPicture" when compiling. #include "OleCtl.h" HGLOBAL hMem = NULL; LPVOID lpData =…
Infated
  • 110
  • 1
  • 13
0
votes
1 answer

Dynamic Services URL property for Android

My App has the "Dynamic Services URL" set to true. This is because we have several Application Servers and, also, the URL might change depending on the network we are connected to. Android: The App gets a menu on the AppBar (upper-right corner) with…
Jaime
  • 159
  • 2
  • 10
0
votes
1 answer

How to change the app startup screen, in Android, when NavigationStyle is Slide

I have two questions for a Slide App StartUp, when executed in Android. 1 - Is there any way of changing the menu icon color? 2 - I am using a SplashScreen but, in Android, after the SplashScreen, a blank panel is presented to the user. Is there any…
Jaime
  • 159
  • 2
  • 10
0
votes
1 answer

How to force a new login if the server session ends?

I've been developing "online" Smart Devices Applications in GeneXus. When the user stops using the application for a while, the remote server session automatically ends. As I use a lot of websession variables, if the user attempts to continue using…
Jaime
  • 159
  • 2
  • 10
0
votes
1 answer

Why device applications should be packaged?

Why should be device applications packaged like described here : Packaging Device Solutions Overview I could copy the exe file in to the file system of my mdt and start it from there. Everything works. So why the packeging into the cab…
0
votes
1 answer

Where to place the code for establishing a db connection?

I have a question regarding where to place the code for the db-connection in the program. I have a smart device app and I'm establishing every time a db-conn before a query and closing it after the query is finished. I have the feeling that to…