Answer Questions
TaiChiMaster problems with VS2005 and IE7
Hi, if running VS2005 with IE7 (the beta, the final or the WinVista RC1 included one) it is not possible to create a new C++ "Smart Device" project. If I choose to create a "Win32 Smart Device Project" with Visual C++, enter a name for the project in the "New Project" dialog i'll get the "blub" sound, wich also appears if internet explorer blocks a pop up or an addon, and Visual Studio falls back to the "New Project" dialog instead of showing the details for creating the new application. i guess this has something to do with the internet explorer security settings and so I tried to disable them all or setting them to the lowest possible level... has anybody an idea how to get VS ...Show All
Dennis de Jong Framework 1 and 2
Hello, I have installed visual studio 2005 on my PC which also has visual studio 2003 installed on it. Thus, both framework 1 and 2 were installed on the PC. I have some diffeiculties finding libraries in visual studio 2005 and I was wondering if there is some kind of conflict. I want to create applications for windows CE in c# and sql ce. What would you reccomend to install 2003 or 2005 Any tutorials or help on creating such applications would be much appreciated. Kindest regards, John. Viual Studio 2005 is better for this because its latest and has to offer more as compare to the previous version + it'll automatically install SQL Server CE. Please Download Window Mobile 5 Resource Kit in ad ...Show All
John_Wesley resize/padding pushpin detail
Is it possible to resize the the pushpin detail window I know you can add a control and make it whatever size you want but I would like to keep the arrow VE produces for the window. Also, is there any way to reduce the padding in the detail window Seems like the way it is now is that there is alot of wasted space that is not necessary if you don't have alot of info in the window. Thanks, Jason I have GeoRss feed that in <description> tag contains CDATA that has <IMG>. They display just fine. Try it this way. Also I had <script> eval('xxx');</scripts> added to desctiptions in every item of GeoRss and it works only in FF not in IE. Anyone know where we can find solid docs o ...Show All
Rookboom .NET Compact Framework
Hello everybody. My question is as follows: In my Pocket PC 2003 Application I am using a string in the form of: String mystring = "some text here" + "\r\n" + "some other text here"; Instead of getting the second part of mystring in a new line, I get a box next to the first part. Is there any way to solve that Thank you in advance, Korina Set your textbox to Multiline. If you still get problems then rather than set textBox.Text, set textBox.Lines = mystring.Split(new char[] {'\n'} ); ...Show All
Bnjneer C#: IR Communication between PPC6700 and TV/DVD/HT Receiver
Hi. I read the two articles: http://www.codeproject.com/netcf/PocketBeamer.asp (C#/Audio Port) http://www.codeproject.com/ce/TVRemote.asp (C++/IR) and I wanted to use IR, programmed via C#, to send IR codes to TV, DVD, etc. and I know the basics of IR, so I wanted to try to program an application for sending IR codes like when I press channel up/down, etc, which I'll have to learn the IR codes which I'll do a research once I get to know how to do it. Please note: I don't want to use audio port, but with IR and so I've never done this before. Any help will be appreciated. Thanks. It's never too late to learn. Here’s the best book on C ever (IMHO): http://cm.bell-labs.com/cm/cs/cbook/ C++ is jus ...Show All
XRobin Burn os onto flash
Hello once again, Could somebody please tell me, how can I burn an OS image onto flash memory of the emulator From my understanding you should burn eboot.nb0 onto flash. Then what do you do with the rest of the files (e.g. CMAccept.exe, NK.bin, etc...) Where do they go Also, I take it that eboot.nb0 is the bootloader, isn't it Thanks heaps, Rachad There are two options 1. Using EBOOT.nb0:- When you start DeviceEmulator with eboot.nb0 it flashes DE with eboot which is ethernet bootloader. To Platform Builder, DE then appears as a Device sending EBOOT packets. Then using PB you can connect to this DE Instance (same way you select a device) which downloads open image (.bin -> in RAM and ...Show All
csLearner DataGrid add and delete rows problem
Hi. I developped a mobile inventory system under Vistual Studio 2005 C#.net, i bound datagrid with inventory table. i can add rows at some search condition to the DataGrid, i can delete selected row in the DataGrid, but after update the dataAdaptor, the deleted row still there. The following is my code. Add rows to the DataGrid barCodeString = textBoxBarCode.Text + "%"; this.inventoryTableAdapter.FillByBarCodeName (this.orderDB_enDataSet.Inventory, barCodeString); Delete rows from the DataGrid int i = inventoryDataGrid.CurrentCell.RowNumber; orderDB_enDataSet.Inventory.Rows.RemoveAt(i); this.inventoryBindingSource.EndEdit(); this.inventoryTableAdapter.Update(this.orderDB_enDa ...Show All
Nguyen Duy Linh Threading - using variables declared on the UI.
Hi all, I have created a thread in my application, that performs many updates to the database, using the following method... WorkerSignOffThread = new Thread(BackgroundProcessing); WorkerSignOffThread.IsBackground = true; WorkerSignOffThread.Start(); private void BackgroundProcessing() { processingDone = false; InspectionManager.FillInspectionGoodAnswers(SelectedInspectionUID); processingDone = true; } ...but as you can see, the FillInspectionGoodAnswers() method uses a variable ' SelectedInspectionUID '. This variable was declared in the Form that declares and starts this thread - is this ok The thread seems to run and update the database ok, but I was under the impression that the threads couldn't use UI objects/controls/ ...Show All
dpro1979 Reduce detail of the map tiles?
Is there a way to say remove some of the extra detail at zoomed in levels ex: roads, city names etc. I'm assuming you want to remove them from Road/Hybrid view If thats the case, you'll need to mapcrunch your own tiles on top of the map as those names are part of the VE imagery and cannot be dynamically removed. Otherwise I'd recommend sticking with aerial mode (which doesn't have road names nor city names). Think of VE as static tile images, there are 3 sets of tiles plus birdseye. So you can't remove text from these static images As Derek said you could produce your own tiles and layer them on the very plain aerial mode, but there is some work there. Is the issue that your ...Show All
jakeb16 how to make the list box control alignment to right
Hi, i'm developing a CF 1.0 application, and i'm using other RTL languages, and i want to display a listbox items right aligned, but i didn't find any property or other way to do this... if any one got ideas please reply me .. thanks, Ahmed Waly Thanks again for your fast reply MRs. Dina, i saw the blog, but it was for Win CE 5.0, well, my application is developed using VS 2005 with CF 1.0, so i think this will be a hard a bit, isn't! i'll try again and see what happens, by the way, i didn't know you are expert in the Smart devices too, thats great thing, and i'm looking forward for cooperating with you if possible, specially that we don't have alot of this type of experts in our area. if we can communic ...Show All
Helio D Datagrid row height
Is it possible to change the row height in the datagrid A user can manually change it, but I need to change the default value from startup. Can I set the height of DataGrid row fixed I don't want user can resize it. Thanks There's no API to set that, sorry. Default size is determined from font size, so no good way to change it as well. Although this is absolutely unsupported, this can be done via reflection Public Sub SetGridRowHeight(ByVal dg As DataGrid, ByVal nRow As Integer, ByVal cy As Integer) Dim arrRows As ArrayList = CType(dg.GetType().GetField("m_rlrow", BindingFlags.NonPublic Or BindingFlags.Static Or BindingFlags.Instance).GetValu ...Show All
Prodigal Son WCELOAD & NETCFv2.wm.armv4i.cab
I am trying install NETCFv2.wm.armv4i.cab using WCELOAD with "/SILENT" via CreateProcess. I am unable to WaitForSingleObject or GetExitCodeProcess as this cab remains ' STILL_ACTIVE' indefinately. I have done this many times for other Cab installs, without any issues. The only difference i am aware of with NETCFv2.wm.armv4i.cab is that you receive a message 'You must restart the device to complete installation' , if you run this manually. I want to avoid using a 'poke &hope' timer on the GetExitCodeProcess. Can another suggest a way i can monitor the CreateProcess'es completion Hi Can you please explain what you mean by correct command line I believe th ...Show All
nikos_22 Change pushpin location
Hi, Is it possible to change the location of a pushpin after it's been drawn on the map I have an application which places a pushpin on the HQ of the company logging in to the application. By default it's set to my company's HQ but I'd like to be able to 'move' the pushpin once I've read in the HQ of the company logging in to the application. Is this possible or do I just need to delete the existing pushpin and draw a new one Thanks. well, i havent found a way to change the position on the fly, so my actual tip is, just delete the pin, and create a new one with the same ID. Thats what i actually do when needed. ...Show All
leonlai Error while using MSN Search Web Service SDK
Hi, I am using MSN Search Web service in my Asp.net 2005 Application . When i call Search method of MSNSearchService class i get the following error--> The remote name could not be resolved: 'soap.search.msn.com' . Windows Sample is working fine but when i add web reference http://soap.search.msn.com/webservices.asmx wsdl in Asp. net application i am getting the above metioned error. Kindly help me in this regard. Regards, Nishant Sharma I was having a similar problem and it turned out to be an incorrectly constructed request object. In my particular case, I had accidentally omitted the culture info field. ...Show All
wpf michelle Thread Help
Hello, i am newbie i never use thread in c++ before i m developing mobile application using c++ and i have create the function like this DWORD WINAPI threaded(LPVOID param) { FILE* file=fopen( "\\My Documents\\thread.txt","w"); num++; char a=num+47; fputc(a,file); fclose(file); return 0; } and when i call this function from initinstance() DWORD dwThreadId; HANDLE hThread; LPVOID lp; hThread = ::CreateThread(NULL,0,threaded, lp,0,&dwThreadId); // returns the thread identifier } i want that threaded function will run in parallel with my application till end how i manage it is there any mistake in the code or i need more enhanc ...Show All
