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
Vipin Aravind
Posts
-
Nokia E60 smartphone not connecting to WLAN-help [modified] -
It's broken....What is the brand of the lcd monitor? It will be useful for me when shopping for it in future.
-
Help me to learn VC++ better from any of the web based tutorials .....pleaseInterstingly, the person who asked the question seems to be answering for him here. Heights of craziness :)
-
Bitmaps [modified]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.
-
Bitmaps [modified]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.
-
How to declare WindowProc functionhehe, I did not read the other answers :)
-
How to declare WindowProc functionIt should be a static function.
-
Make buffer zero?better use sizeof(buf) instead of 10, it will save you some headache if someone changes the "char buf[10]" in future.
-
How to include files in a directory in VC 8.0?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.
-
HOW TO LOAD BITMAP IMAGE TO DIALOG FORM IN VC++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.
-
NT Service - working directoryIf you are bent at using crt routines, then _chdir would do that. Be aware that this routine would internally call the win32 api, SetCurrentDirectory.
-
C-CPP PreProcessingIf 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.
-
calling another window from dialog box and display dataAll you need is have one more modal dialog and then do a DoModal dialog in the menu command handler.
-
Security Warning and Finally it crashedvs2005 in itself doesn't have any problem. may be IE7 induced problem. Vipin http://www.explorewindows.com/Blogs
-
How to change a font of static textIf 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
-
Linker ErrorPath 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
-
Accessing parent dialog?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
-
merge two projectsChoose 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
-
errors in DDK???question now would be what are the errors you are getting? vipin - Microsoft MVP http://www.explorewindows.com
-
Does memory get freed at function end?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