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
V

Vipin Aravind

@Vipin Aravind
About
Posts
42
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Nokia E60 smartphone not connecting to WLAN-help [modified]
    V Vipin Aravind

    Hi Guys, I have a wireless lan at home and I have two computers connecting to this network on dhcp. The access point is netgear WGT624 wireless router. All this is working fine. Now I have a E60 smartphone. It detects the access point in the available wlan connections list. Now, I have to setup the access point in the phone with the ssid and other configurations of the wlan. But when I try to connect to my access point it simply doesn't connect and says "unable to connect". Now I use the service providers access point to connect and that works fine. Has anyone here experienced a local wlan connection issue with nokia smartphone. I am really clueless after having read the manuals and experimenting. I tried to send the problem to tech support at the nokia website via their web interface and it would just bounce back an email to my email address saying that the customer support email doesn't work. Any clues to fix this, please shoot out. Thanks, Vipin -- moved at 13:12 Sunday 10th September, 2006

    Click here for Vipin's Blog

    Hardware & Devices help mobile com sysadmin sales

  • It's broken....
    V Vipin Aravind

    What is the brand of the lcd monitor? It will be useful for me when shopping for it in future.

    Click here for Vipin's Blog

    The Lounge c++ com architecture

  • Help me to learn VC++ better from any of the web based tutorials .....please
    V Vipin Aravind

    Interstingly, the person who asked the question seems to be answering for him here. Heights of craziness :)

    Click here for Vipin's Blog

    IT & Infrastructure c++ help

  • Bitmaps [modified]
    V Vipin Aravind

    If it is a bitmap file, I suggest you to read the bits of the file using the file operations rather than GDI functions. If I remember there is a sample in sdk for this.

    Click here for Vipin's Blog

    C / C++ / MFC graphics json question

  • Bitmaps [modified]
    V Vipin Aravind

    From top of my head, there is a LR_CREATEDIBSECTON flag you will have to pass to LoadImage to ensure that you get a DIB back. Good thing about getting back a DIB is that bitmap has the same color resolution as contained in the bitmap file without going through the color transformations when creating a DDB compatible to screen.

    Click here for Vipin's Blog

    C / C++ / MFC graphics json question

  • How to declare WindowProc function
    V Vipin Aravind

    hehe, I did not read the other answers :)

    Click here for Vipin's Blog

    C / C++ / MFC csharp c++ dotnet tutorial question

  • How to declare WindowProc function
    V Vipin Aravind

    It should be a static function.

    Click here for Vipin's Blog

    C / C++ / MFC csharp c++ dotnet tutorial question

  • Make buffer zero?
    V Vipin Aravind

    better use sizeof(buf) instead of 10, it will save you some headache if someone changes the "char buf[10]" in future.

    Click here for Vipin's Blog

    C / C++ / MFC tutorial question

  • How to include files in a directory in VC 8.0?
    V Vipin Aravind

    I would say you should use the /I compiler option in your project/solution instead of visual studio's path settings. That is the recommended way and makes sure your project/solution will compile on any machine.

    Click here for Vipin's Blog

    C / C++ / MFC tools tutorial question

  • HOW TO LOAD BITMAP IMAGE TO DIALOG FORM IN VC++
    V Vipin Aravind

    There are several ways to do what you want:- 1)picture control. 2)draw in the Dialog's paint handler To get to the bitmap in the resource file, you can use LoadImage Ofcourse you could draw on a owner draw button also.

    Click here for Vipin's Blog

    C / C++ / MFC help c++ graphics tutorial question

  • NT Service - working directory
    V Vipin Aravind

    If you are bent at using crt routines, then _chdir would do that. Be aware that this routine would internally call the win32 api, SetCurrentDirectory.

    Vipin Aravind - MVP

    C / C++ / MFC c++ question

  • C-CPP PreProcessing
    V Vipin Aravind

    If you are not looking for source code, but want to see how pre processing takes place , the /E option of Microsoft c/c++ (cl.exe) compiler will generate preprocessed output.

    Vipin Aravind - MVP

    C / C++ / MFC c++

  • calling another window from dialog box and display data
    V Vipin Aravind

    All you need is have one more modal dialog and then do a DoModal dialog in the menu command handler.

    Vipin Aravind - MVP

    C / C++ / MFC

  • Security Warning and Finally it crashed
    V Vipin Aravind

    vs2005 in itself doesn't have any problem. may be IE7 induced problem. Vipin http://www.explorewindows.com/Blogs

    C / C++ / MFC com csharp c++ php visual-studio

  • How to change a font of static text
    V Vipin Aravind

    If you are programming in plain win32, you will have to send a WM_SETFONT to the control to change the font. Vipin http://www.explorewindows.com/Blogs

    C / C++ / MFC tutorial

  • Linker Error
    V Vipin Aravind

    Path you showed is not a 32 bit library path. Are you trying to build a driver or an applicaton. Depending on what you are trying to build, you will have to straighten up the build environment using the ddk or sdk. Vipin http://www.explorewindows.com/Blogs

    C / C++ / MFC help question workspace

  • Accessing parent dialog?
    V Vipin Aravind

    you should not directly access the members of the dialog using the pointer, in which case your custom control no more is a reuseable custom control. You should define user defined message handlers in target window and then try to set/get anything using it. Vipin http://www.explorewindows.com/Blogs

    C / C++ / MFC question

  • merge two projects
    V Vipin Aravind

    Choose your project1 and then do a "add files to the project", point to the files you want to be part of project1. Vipin - MS MVP http://www.explorewindows.com/Blogs/index.php

    C / C++ / MFC question c++ help announcement

  • errors in DDK???
    V Vipin Aravind

    question now would be what are the errors you are getting? vipin - Microsoft MVP http://www.explorewindows.com

    C / C++ / MFC help question

  • Does memory get freed at function end?
    V Vipin Aravind

    You don't have to bother about any memory consumed on the stack. But if you dynamically allocate any memory on the heap using malloc/new then you need to explicitly delete using free/delete. Vipin Aravind http://www.explorewindows.com

    C / C++ / MFC performance question
  • Login

  • Don't have an account? Register

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