Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

rnvrnv

@rnvrnv
About
Posts
43
Topics
29
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Facebook offline access key
    R rnvrnv

    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

    C# tutorial question learning

  • Map file format for gps application
    R rnvrnv

    thank 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

    C# question

  • Map file format for gps application
    R rnvrnv

    Hi 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

    C# question

  • GPS polygon and calculate of gps position is inside the polygon
    R rnvrnv

    Hi, 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

    C# tutorial question

  • including default project comments in new source code
    R rnvrnv

    hi, 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

    Visual Studio csharp question

  • using external keyboard
    R rnvrnv

    hi, 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.

    Mobile

  • Display WinMobile device screen
    R rnvrnv

    Hi, 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

    Mobile tutorial

  • OnPaintBackground does not fire!!
    R rnvrnv

    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.

    C# question

  • OnPaintBackground does not fire!!
    R rnvrnv

    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

    C# question

  • Control Focus Problem - a Bug? or..
    R rnvrnv

    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

    C# help question

  • Selection problem with Custom Control for CF
    R rnvrnv

    Hi, 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

    C# help question

  • drawString and Thread problem
    R rnvrnv

    hi, 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

    C# help csharp mobile com

  • newbie: how to get started
    R rnvrnv

    hi 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

    Database csharp tutorial question

  • Transparent Label in Compact Framework?
    R rnvrnv

    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

    C# help question

  • GUI Invokation problem
    R rnvrnv

    thanks, 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

    C# question help

  • GUI Invokation problem
    R rnvrnv

    Hi 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

    C# question help

  • Check if file is Accessible
    R rnvrnv

    Hi, 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

    C# question

  • ToolStripStatusLabel problem
    R rnvrnv

    hi, 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

    C# help

  • Invoking GUI
    R rnvrnv

    Thanks!!

    C# question visual-studio

  • Invoking GUI
    R rnvrnv

    hi, 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

    C# question visual-studio
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups