Moishe's Q&A profile
Smart Device Development wifi API for pocket pc 2003???
Hi experts, I really need to get all the wifi information in pocket pc 2003. I test with Qtek 9090. I try to search all in msdn and qtek page, but i can't found any informations about it. Can you show me how to do that with API Second question: Can we know when the GSM network is enable or not If i understand exactly i have to use TAPI 2.0 for pocket pc 2003 can you show me some sample code for pocket pc 2003 Thank you so much. Julien This is all you need for WiFi API's: http://www.microsoft.com/whdc/device/network/802x/80211_netadapt.mspx http://support.microsoft.com/default.aspx scid=kb;[LN];328601 regards, KC ...Show All
Visual Basic VB Tutorial - Hang Man!
VB Walkthrough: Hang Man! VB Walkthrough: Hang Man! 1 Introduction .. 1 Starting the Project .. 1 Coding the Game Engine . 3 Coding the Main Form ... 7 Coding the New Game Dialog .. 9 Conclusion .. 11 Introduction In this tutorial we will create the game Hang Man. The project will be composed of two forms, the main application window and a “new game” dialog, and one class that will serve as the game engine. The project will also utilize three JPEG texture images in drawing the graphics. This project will demonstrate drawing scalable images with the System ...Show All
SQL Server "there is no 64-bit JET provider...."
Yes, I admit it. I am leanring SSIS on an x64 bit machine (with Windows 2003 Pro x64, 9GB of RAM). I have installed sql 2005 Sp1 on the same machine. As I found out today, there is no 64-bit JET provider which explained why I couldn't use SSIS to import a simple Excel file. (I spent an hour fighting with SSIS before I gave up. Time required to setup the Excel import under sql 2000 DTS, 2 minutes.) What other 64-bit related surprises should I know about TIA, barkingdog barkingdog wrote: As I found out today, there is no 64-bit JET provider which explained why I couldn't u ...Show All
Visual Studio Debugging T-SQL Stored Procedures in VS 2005
I know I'm not the only one posting this type of problem, though my problem has some differences which I think are worth noting. I am trying to debug T-SQL stored procedures on my local system (Windows XP Pro), VS 2005 Team Edition for Software Developers. To my local SQL Server 2000 SP3 database server. When I click the "Step Into Stored Procedure" menu item, the stored procedure runs to completion, never stopping at the first executable T-SQL statement. Even if I set a breakpoint in the stored procedure, the debugger never stops, the stored procedure just runs to completion. Using Visual Studio .NET 2003, I have no problems ...Show All
Windows Forms Very noobish question... how can i show a new dialog (header file)
Okay, i know this is stupid, but i've tried and tried to find (and figure out) an answer for this and I can't seem to get it right... I was working on a program and desided i needed an about dialog, so i created a new form as a header but can't figure out how to show it when the user presses the about button... I tried including it in Form1.h (where it will be called from) and in the main cpp file... but i can't seem to get it to load into memory correctly... sorry, i know this is probably stupid but... -Leif902 #include "AboutDialog.h" I assume then that you are using C++. In this case assuming that your ...Show All
Visual Studio Express Editions i cannot create window apllication
when i try to create a widow application or enter designer i receive an error message promting me to send or don't send. i then recieve the message more data is available Sounds like something's broke. Have you only just installed or have you been running OK for a while I'd say a reinstall would be in order unless you have been running OK and you can think of something else that's changed recently. ...Show All
Visual FoxPro Any better source code to search for file/folder
hi all, I've just finished a small program to search some filetype on my harddisk. The code run very well but it seems to me that it 's a bit too.... lenghy. Is there anyway else to search file without having to use ADIR function *//CODE SearchFile("D:","mp3") &&This will show the number of all mp3 files found on drive D: *//Contain of file SearchFile.PRG parameters cStartFolder, cExtention private _nCount store 0 to _nCount dimension _sFound[1,1] store '' to _sFound do Search4Files with cStartFolder, cExtention *//command to do some ...Show All
Software Development for Windows Vista CoCreateInstance Fails When i create a custom Null sink filter
Hi I have created my own Null sink filter which works on a sample application. But when i do CoCreateInstance on this NUll sink filter in my application it fails. My application is for smart phones win mobile 2005 pocket PC sdk. I call this co createinstance from another DLL. Please help Regards Adil Saleem i get a E_OUTOFMEMORY, but in the null sink filter that i have created we set the error code to E_OUTOFMEMORY when new on the constructor of the constructor fails. The following is the code inside create instance CSampleGrabber *pNewObject = new CSampleFilter(NAME( "SampleGrabber" ),punk,phr ); if ...Show All
Visual C# How to use Framework SDK V2.0
Hi, can anyone tell me how to use the Framework SDK V2.0. I want to know how to create an installer project with this tool.... Thanks Hi, This link below will be useful for u, if you are going to create an installer. Technical features of VS.NET provides solution for your problem. http://www.c-sharpcorner.com/Code/2003/April/SetupProjects.asp Regards -------------------------------- Marie Myers, devBiz Helping Developers Build Better Software Meet VC: An exciting Vs.Net add-in ...Show All
Visual Studio Team System To detect the use of 'return' keyword
Explicitly using return allows the JIT to perform slightly more optimizations. Without a return statement, each function is given several local variables on stack to transparently support returning values without the keyword. How to detect whether a method uses 'return' keyword (of course irrespective of language). Can Fxcop do this Using the visitor pattern to traverse the Method.Body, you would override VisitReturn. Otherwise, you would iterate over the Method.Instructions, looking for OpCode.Ret. ...Show All
SQL Server outer join produced cartesion product; embedding where conditions in outer join clause
Tables have 100K rows. Inner join produces 99k. The outer join should be 100K. It is 1000 times larger. If I do a SELECT DISTINCT, the right # rows are returned (100K) What gives OR, How do I move the WHERE conditions into the OUTER JOIN clauses SELECT Earth.key1, Earth.key2a, Earth.key2b FROM ((Earth INNER JOIN Moon ON Mid(Earth.key1,1,6) = Moon.key1) LEFT OUTER JOIN Venus ON (Earth.key2b = Venus.key2b) AND (Earth.key2a = Venus.key2a)) LEFT OUTER JOIN Mars ON Earth.key2a = Mars.key2a WHERE Moon.RS_VOIDED <> 'Y' AND Mars.MEM_NAME <> '(A)' Laurence It is hard to s ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Everything in viewpoint is backwards
Hi, I have been working on a small 3d engine for the last few weeks, no big plans for it or anything just doing it to teach myself. Everything has been going ok so far, been working off internet tutorials and examples but i have run into a problem, everything in my viewpoint is backwards. Screen Shot: www.turnipfan.com/screen_shot.jpg I have tried changing all the settings but nothing seems to work, i was wondering if someone more experience could have a look at the code and tell me whats wrong. Source Code (84kb): www.turnipfan.com/testapp.zip Thanks for any help, -Dave ...Show All
Windows Forms Invoke Event for the Timer_Tick()
Hi, there I want to Invoke the UpdateListView() for timer_Tick How to do Please Help me. Thanks. class TimeThread { private delegate void UpdateListViewDelegate(); private UpdateListViewDelegate updateListViewDelegate; private Timer timer = new Timer() public TimeThread(int interal) { updateListViewDelegate = new UpdateListViewDelegate(UpdateL ...Show All
Visual Studio VSIP/Visual Studio 2005 SDK and open source language services?
In the near future I would like to attempt a language services plug-in using the Visual Studio 2005 SDK (formerly called VSIP I believe); the free version, to be specific. However, since I may or may not have much time in the future to work on it, I was wondering if a non-viral open source license - something like MIT or BSD that does not propogate up the chain - would be OK. I do not care much about the particulars of whatever licenses are acceptable; anything that lets me share the source so other people can hack on it is fine by me. Any-one know the answer to this While the web site continues to show ...Show All
Visual Basic DataSourceUpdateMode.OnPropertyChanged on dataBinding Help!!!
Hi all, please help me with this to format my textfield with databinding.. i use.. for example... Me .txtBirth.DataBindings.Add( "Text" , uBindSource, " Birth " , True , DataSourceUpdateMode.OnPropertyChanged, " Birth " , " yyy/mm/dd" ) 'it's work!!! okay!! but to format fo Phone number and ZIP Code Me .txtPhone.DataBindings.Add( "Text" , uBindSource, "Phone" , True , DataSourceUpdateMode.OnPropertyChanged, "Phone" , " " ) Thanks! ...Show All
