Hi, I am a beginner to create Facebook application. Will appreciate if someone can explain how to get and use offline access session key? regards, rnv
rnvrnv
Posts
-
Facebook offline access key -
Map file format for gps applicationthank you John, I already had a look but maybe i missed it..i could not get it correctly. If I have an image of an area (jpg) somehow i should specify its coordinates. is it specified in a separate file from the jpg file itself? I managed to run map grabber example but it only creates jpg images. where are coordinates saved? regards, rnv
-
Map file format for gps applicationHi all, One way of displaying map of an area for a gps application is to have simple map image (e.g., jpg) together with geo coordinates of its each corner. since, I am just starting with this kind of application can anyone let me know if there is a better (standard) map file format? I need to display current location in the map and possible navigate user to certain point. the area of coverage is quite small (factory area). regards, rnv
-
GPS polygon and calculate of gps position is inside the polygonHi, I need to specify polygon(s) based on gps coordinates and calculate if a gps position is inside the polygon or not. any idea how to do it? I found a method where polygons can be specified based on Points (integer) but gps coordinates are float. will really appreciate regards, rnv
-
including default project comments in new source codehi, i am using VS2005 for my c# application. - is there a way to include default comments (e.g. copyright text) at the beginning of each new class (of any type)? - is there a way to add the same comments in all existing source codes? rnv
-
using external keyboardhi, would really appreciate if someone can explain how i can connect and use external keyboard for mobile device using wm2005. there are programs like SOTI but i would like to program it on my own. will really appreciate if someone can explain how it could be possible.
-
Display WinMobile device screenHi, There are applications like SOTI which displays mobile device screen in your computer and be able control the device itself. i will really appreciate if someone can let me know how to program such application. i need to know how to capture screen and to do basic control stuff.. with best regards, rnv
-
OnPaintBackground does not fire!!thanks but i should have mentioned that i am doing this for my Smart phone application (using Compact Framework 2.0). and it does not have SetStyle method.
-
OnPaintBackground does not fire!!hi, i am creating a class that inherits LinkLabel. I am trying to override the method OnPaintBackground to make it transparent but it seems it is not fired. any idea why or how can i make my LinkLabel transparent? regards, rnv
-
Control Focus Problem - a Bug? or..Hi, i would like to create a simple control for smart phone (cf2.0) that changes its background color depending upon whether it is focused or not. i have the following code. class mylabel:Control{ protected override void OnGotFocus(EventArgs e){ base.OnGotFocus(e); this.BackColor = Color.Red;} protected override void OnLostFocus(EventArgs e){ base.OnLostFocus(e); this.BackColor = Color.White;} } The problem is it can get focus (and changes its bg color) but it seems it does not loose focus. if i inherit LinkLabel instead of Control then it works fine. What could be wrong? i would really appreciate. regards, rnv
-
Selection problem with Custom Control for CFHi, I created a custom control inheriting the class Control. my idea was to create a transparent control like LinkLabel. i can click the button deploying my test application to PPC but in smart phone i cannot select the created controls though it has TabIndex value specified. do i have to override some specific method to enable selection of control? will really appreciate, rnv
-
drawString and Thread problemhi, i am using DrawString method to display text in my Smartphone application when form is painted. i have added a method to the Paint event handler for this: this.Paint += new PaintEventHandler(DrawMainPage); when i get new data i have to repaint the form to inorder to show new data. but when i call myform.invalidate() from different form then i gives me error that i have to invoke this method from the same thread. i tried do upate my code accordingly (http://www.codeproject.com/csharp/begininvoke.asp) but i get the same error. will appreciate help. regards, rnv
-
newbie: how to get startedhi all, i am completely new to working with data in .net. i am using c#. can anyone point me to a good tutorial to start with? regards, rnv
-
Transparent Label in Compact Framework?hi, I am trying to make my labels transparent in my application for PocketPC. myLabel.BackColor = Color.Transparent; does not seem to work. will appreciate if someone can help. regards, rnv
-
GUI Invokation problemthanks, here is what i want. i have the main class which should invoke certain Form at certain moment. when i do 1. NewForm newform = new NewForm(); 2. newform.ShowDialog(); 3. DisplayStatusInfo("Form Displayed"); it shows the dialog but it does not do the next step (3). any idea? regards, rnv
-
GUI Invokation problemHi all, a simple question. i need to invoke a gui from a program. i can simply do Application.Run(myForm); the gui is started but the problem is how do i come to the next line of the code? regards, rnv
-
Check if file is AccessibleHi, I need to open a file that is also opened in another application. when i try to open and read the file it says the file is being used by other program. in this case is there a way to open a file? How can i check if the file is accessible or not? regards, rnv
-
ToolStripStatusLabel problemhi, I am trying to display status of the application using ToolStripStatusLabel. it works fine but the problem is if the status message is longer than the length of the label itself then it does not display the status message info. will really appreciate your help. rnv
-
Invoking GUIThanks!!
-
Invoking GUIhi, a very simple question: when i create an windows application in VS the starting point is usually the form. i would like my base class as a starting point (having the MAIN method) from which i start the gui. how do i do it? when i simply do: MyGUI gui = new MyGUI(); gui.Show(); the gui does not show for long. regards, rnv