Answer Questions
Fey __ Cannot Use Items Created in a Form Class Using an instance of another class
Hello, I have created a Windows Form class in which i have defined a Media Player ActiveX control that i found on the internet and a webBrowser component. I have created a seperate class (called Display) which uses these two components of the Form class. The program creates an instance of the Display class and uses the two components to display a picture (webBrowser) or play a wmv file (Media Player ActiveX Control). In the Form class i have created delegates for the two functions and i'm using Control.Invoke (in the Display class) in order to display the picture or play the wmv file. I used the command : class Display : Form2 so that the Display class can inherit all the components of the Form class. The comp ...Show All
RMD VE still not working...
My VE Application is not working ... Error: Map is null or is not a object The VEiSDK still not working too... :( []'s Its working for me Mauricio. When you get the dreaded map is null error it means that the VE javascript was not loaded before you tried to use it. I use this code to handle this a little more gracefully: var LoadErr = 0; function GetMap() { try { map = new VEMap('myMap'); map.LoadMap(); } catch (err) { if (LoadErr < 5) { LoadErr++; setTimeout("GetMap()",1000); }else { alert("The Mapping Control failed to load."); } } } The basics are to give 5 attempts one second apart to try to load the map. This is of coarse just the sec ...Show All
cunha How to suspend and resart a particular thread.
In my application there are three thread runing.I have assign Name to all of them.Let Say Name are A B C Now in one of the method of thread A i want's suspend the thread B then resume it. How Can I do it While there currently exists methods outside of CF that can suspend/resume another thread they will be made obsolete and only debuggers will be able to suspect another thread or the thread itself can suspend itself. It's not safe to arbitrarily suspend another thread: you don't know the state of any of the invariants the thread is modifying and could leave data the thread is modifying in a indeterminate state or leave locks locked that cannot be unlocked (both synchronization and file-system based) resulting in deadlocks. Th ...Show All
idos 2 accounts accessing one space?
Hi, my wife and I have different msn accounts but would like to have a joint msn space. Is this possible I have set it up under mine at the moment and the best we have been able to do is to set the personal message on messenger to the url. I'd like to get it so that contacts from both of our messenger lists can see our joint space. any ideas cheers Multiple accounts can not share a single space. This is not a supported feature. I realise that, but is there a way of referencing/linking the same space from two accounts ...Show All
lbendlin Check the internet connection speed.
in VB.net, how can I check the internet speed via code. ...Show All
FedorSteeman having trouble with MSN toolbar
I am receiving an error message whenever I open IE and it says: #msntb_toolbar_full_name# is unable to load its config file: between each word is an underscore in case you can't see them. I uninstalled MSN Toolbar because it was getting in my way and now I get this message. How do I keep it from coming on when I try to open IE. I have already tried to reinstall it but it says it's already installed on my computer and ends the installation. Could someone please let me know how to get rid of this where can i find Windows Live Spaces APIs . . . ive got same prob if you find out how to resolve it please let me know i would be most gratefull thank you I have same problem with #msntb_toolba ...Show All
sumit kr Creating Single Insatance Application in SmartDevice Application
Hai, I have created DeviceApplication present under Visual C#\SmartDevice\Windows Mobile 5.0 Pocket PC.The out of this is an exe.I want to make this exe to have single insatnce i.e if one instance is running,if u click on that exe for multiple times it must not new instances,instead it must pop-up some message.I have developed the exe in .NET 2.0 version.I tried to do fix the problem using mutex,but it did not work.Another approach is to derive a class from the WindowsFormsApplicationBase class in the Microsoft.VisualBasic.ApplicationServices namespace and set IsSingleInstance property.Can anyone explain how to do this for Smart Device Application.I found that GetProcessByName ...Show All
Daveko Bug with Resize() if you remove controls after AddControl()
I've found a bug if we have added a control using AddControl, then you remove it use the non VE API method posted here by me and then make a call to Resize(). The Resize function looks like it loops through the list of controls to do something with them but since they no longer exist it thows an error. So its not really a VE bug but we do need a DeleteControl() added to the API. That said maybe a try catch to handle this situation would be great. John <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>test& ...Show All
genjioo Image from website
Hi all I am trying to grab a jpeg from a streaming server that sends jpeg images on request. I have written an application that gets these images in a desktop app that uses me.picturebox1.imagelocation = http://<path> and this works great. I now am trying to make a similar app for my new wm5 pocket pc. And i have no imageslocation property in the cf. I have the following code Dim req As Net.HttpWebRequest = DirectCast (Net.HttpWebRequest.Create( "http://www.google.co.uk/intl/en_uk/images/logo.gif" ), Net.HttpWebRequest) Dim res As Net.HttpWebResponse = DirectCast (req.GetResponse, Net.HttpWebResponse) Dim img As Image = Image.FromStream(res.GetResponseStream) But it wont work as i cannot use i ...Show All
Lukasz Tarkowski Smartphone 2003
Hi! I want to write a game for a Smartphone 2003 using .Net Compact Framework (C#). I would like this game to be multiplayer to using Bluetooth. Please tell me a simple way to do this! A sample Bluetooth chat application would be perfect. This library should work provided that your BT dongle uses the Microsoft Bluetooth Stack. Please do not cross post. Merging... I already saw that.... Can this be done in a "simple way" ! Thanks for your answer! I've changed the driver last night and now it has ms bluetooth stack so it is working!!! Thanks... I'm working on this game since october and I almoust finished ...Show All
Simon Telling Radio Buttons
Hi, I have this problem: In my application i have a dataset with some rows, and for each row i design some labels and a textbox and 2 radio buttons dinamically, so my problem is that for example if i have 4 lines (8 radio buttons) i only can have 1 radio button selected. I want to have 1 radio button selected by line, does anyone know how can i do this Thanks. Thanks, but this only works for statics screens. I have this: ///////////////////////////////////////////////////////////// aRbtAnswerYes[x] = new RadioButton (); aRbtAnswerYes[x].Size = new Size (60, 30); aRbtAnswerYes[x].Text = "S" ; aRbtAnswerYes[x].Checked = true ; //aRbtAnswerYes[x].BringT ...Show All
nobugz How to fix problem with IE7
Hello. I have ie 7, set to open links from other apps in new tab, but form Live messenger opens new window.. What to do I really want to open new tab! I tried to set to open links in new tab, not IE 7 to deside how to open popups..didnt help now with Vista is ok! you should post your question to the news group ...Show All
Henrik Dahl time_t unsigned with WinCE
Hi, We found that on WinCE the time_t typedef is unsigned, it should be signed and not unsigned. Also the timeval struct should use time_t. Can MS correct this Johnny ...Show All
HariAdu Pocket PC Phone WM 5.0 Device emulator Internet Setting "Automatically detects setting"
I am working on a Pocket PC WM 5.0 application.Application is working fine in the Pocket PC Phone WM 5.0 Device emulator. No In My application I have to connect to internet. My system is on LAN.On my Internet connection setting Automatically detects setting check box is check. In the device emulator I don't know how to configure setting so I can able to browse in the deve emulator. Please Could Any body help Try the Emulator with VS 2005. That what the instructions target. Hello Suvigya, Thanks for your information regarding the Virual Machine Network Driver for MS Emulator. Thankfully, I am able to access the Internet by ActiveSync, by cradling it. regards Rupesh ...Show All
St&#233;phane Beauchemin smart device project creation failed\VS 2005 Pro\Vista RC1\Build 5600
Re: smart device project creation failed! When I choose Visual C++ smart device Win32 Project, and enter project name required, then press OK button, the status bar shows a message " Project Creation Failed" I'm using: Visual Studio 2005 Pro(trial) ON Vista RC1\Build 5600 Microsoft Visual Studio 2005 Details follow: Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Professional Microsoft Visual Basic 2005 77626-230-0000007-41948 Microsoft Visual Basic 2005 Microsoft Visual C# 2005 77626-230-0000007-41948 Microsoft Visual C# 2005 Microsoft Visual C++ 2005 77626-230-0000007-41948 Microsoft Visual C++ 2005 Microsoft Visual J# 2005 77626 ...Show All
