Software Development Network Logo
  • Visual FoxPro
  • Audio and Video
  • Windows Vista
  • .NET Development
  • SQL Server
  • Game Technologies
  • VS Team System
  • Windows Forms
  • IE Development
  • Microsoft ISV
  • SharePoint Products
  • Smart Devicet
  • Visual Studio
  • Visual C++
  • Visual Basic

Software Development Network >> Sander Bos's Q&A profile

Sander Bos

Member List

Bartosz
dotHuman
James Miles
srishu
Leon94
meravsha
Douglas R
Jamie Thomson
Ganeshm
Alvin Chen
Vedat ARAL
krisg1984
NerdyNick
rykk
Sudhakar.hcitek
AmpLiF1eD
Matt354245
Tadwick
Krad
RizwanSharp
Only Title

Sander Bos's Q&A profile

  • .NET Development access permission probelms. HELP ME!!!

    I have two computers, a desktop and a laptop, both running win xp home. Both are wirlessly enabled and connect wirelessly to the internet through a belkin router. The desktop will happily see the laptop and share files, and everything seems to work just fine. The laptop, however, refuses to see the desktop. I have shared all folders properly, both are part of the same workgroup, and I have run the network set up wizard, and tried to connect using RUN and the IP address. Whenever I try to connect the laptop to the desktop I get the same message; \\... is not accessible. You might not have permission to use this network resource. Contact the administrator of the server to find out if you have access permissions. Access is denied. ...Show All

  • Visual Studio 2008 (Pre-release) How to navigate back to home page?

    Hi, I am using Frame to navigate between different pages. When the application is running, it will first show a HowPage. Then the user can navigate to different pages. Say in page3, I have a link point back to HomePage, the question I have is how do I navigate back to the home page without recreating the HomePage again. I was hoping I can find something similar to GoBack() but will go all the way back to the top of the backStack which will be HomePage but I can not find the function in either NavigationService or Frame. After more search, I found NavigationCommands.FirstPage but it seems Frame doesn't support this command. Please help. thanks Chong [A browser glitch somehow made me post ...Show All

  • Windows Live Developer Forums findnearby and schools

    Hi, Long time lurker, first time poster. I'm using findnearby to plot schools in VE. Right now I'm using the list of filters that comes up on local live when I search for a specific school (Junior High & Middle Schools, Senior High & Preparatory Schools, Elementary Schools, General Interest Schools and Education) to plot local schools on the map. I have two questions. 1. Is there a better method to find schools 2. What is the mechinism to report schools that don't show up that should Thanks. Hahahahahaha, no, dude, but i can do the job for you, you only need to pay my gas, my food in form of burgers, and of course a 7 star hotel in every city i have to stay over night ;) Then i dri ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to fix ForceFeedback bug in C# DirectInput Samples

    Hi there, This thread started here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=985980&SiteID=1 but It was marked as "answered" without a clear solution. Although many people probably found a fix elsewhere, I opened a new thread because this can be useful for somebody. Some devices, like the Logitech G25, fail to initialize Force Feedback when using the DirectInput Samples for Managed Code. Others, like the Logitech Driving Force Pro, don’t present this behavior. I talked with Logitech’s engineers and we found that it’s due to a couple of bugs in the Microsoft DirectInput Samples. The whole thing is explained in my blog: http://graphicdna.blogspot.com/2007/01/managed-directinput-samples-bugs.html H ...Show All

  • Smart Device Development How to play wav through phone line?!

    I try to make a answering machin for pocket pc 2003. So I need to play wav through line when incomming call happend. How should I play wave files through lines ! Hi I am also trying to write a program that receives the call and plays a welcome not to the caller, then it prompts the caller to dial some numbers based on which some information is given over the line. I would most appreciate any kind of help on this. ...Show All

  • Smart Device Development fatal error C1189: #error : Must define a target architecture.

    hello, ***************************************************************** #include "stdafx.h" #include <windows.h> #include <commctrl.h> #include <rtccore.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { // RTC Initialization // Use COINIT_MULTITHREADED on Windows CE ::CoInitializeEx(NULL,COINIT_MULTITHREADED); HRESULT hr = S_OK; // Create the RTC Client COM object. IRTCClient *pIRTCClient; hr = CoCreateInstance( CLSID_RTCClient, NULL, CLSCTX_INPROC_SERVER, IID_IRTCClient, reinterpret_cast < void **> (&pIRTCClient) ); // if (hr != S_OK) process error here. // Initialize ...Show All

  • Smart Device Development Imate sp5m device hang up

    I have just bought a samrt phone device Imate sp5m. Once I restarted the device It hangs up. It cant further proceed from startup windows i.e. ["Windows mobile"] I have restarted the device number of times,put the battery off but no use. How can I start my mobile This forum is dedicated to device emulator. Please post to relevant news group instead: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. Hint: call seller and/or manufacturer for support. ...Show All

  • Visual Studio Express Editions .exe file

    I can run a project by clicking on the project's .exe file located in the debug/bin directory created by VB Express. However, if I move that file to a different directory I get an error when I try to run it. How can I run a project's .exe file when it is loacated in a different directory Thanks, Antonio Does your project/exe reference any other assemblies or libraries (.dll's) that may be in the same build dir If so, you'll need to copy those over to the exe's destination in order for it to run properly. ...Show All

  • Visual Studio Team System How to delete temporary workspace?

    Hi. Does anybody know how to delete the temporary workspace I tried to create Build Type for the first time and Visual Studio crashed. And now when I try to create the build type again I can't because of this error message: TF42026: Failed to start the wizard. The temporary workspace project1@user needed for this operation already exists. Please delete this workspace and try again. Any ideas what could be wrong You could check what's happening with workspaces in several ways: Using "File->Source Control->Workspaces..." view what workspaces with what mappings exist Using command line "tf workspaces owner:user1" Using Workspace Sidekick Once you check you ...Show All

  • Visual C++ Char* issue on Migrating from VC6 to VC8 (2005)

    Hi, I have a function in VS-6 which displays Helzo. (Project settings I changed in VS-6 are: In C++ tab the Warning level is set to "Level4" and Debug info as " Program Database") void CVCTempDlg::OnOK() { char* pChar; pChar = "Hello"; *(pChar+3) = 'z'; AfxMessageBox(pChar); } When I try to use the same function in Visual Studio.Net 2005 it compiles fine but throws an exception during run time. void CtempDlg::OnBnClickedOk() { char* pChar; pChar = "Hello"; *(pChar+3) = 'z'; AfxMessageBox(pChar); } I tried the following : IsBadWritePtr, memncpy, functions to set the 3rd char to Z, but no use. Thanks in advance. Kama It crashes because you are changing a str ...Show All

  • Smart Device Development UI related(Placing Images on menu bar and in beside in list of options)

    Hi, Can any one please guide me How to 1) Place Images (instead of Text) on menu bar. I want to diaplay menu when an icon is clicked. Presently I am using Tool bar and context menus for this. 2) Place Images with beside menu options. 3) Raise OnClick event on WebBrowser Thanks in Advance, Hi Your only option is to write your own Inplementation of the MainMenu and related classes. Windows CE does support owner drawing menu items. Use this to implement it. Michael ...Show All

  • Visual Studio 2008 (Pre-release) Help with type when doing "select new"

    public List< >MyMethod() { var query = from tr in kontekst.TellimuseRida join t in kontekst.Tellimus on tr.Tellimus equals t join k in kontekst.Klient on t.Klient equals k select new {t.KlientID, k.Eesnimi, k.Perenimi, tr.Kogus}; return paring.ToList(); } What would be the return type of this method Is it possible to write such method Since an anonymous type has no 'name' you cannot specify the type in a type signature. Anonymous types are only really useful inside the method body they are created within. So you need to either 1) create a named type to hold the results or 2) return the results as 'obj ...Show All

  • Visual Basic Absolute position of a control on screen

    Hello All, I'm trying to find the abolute position of a control on the screen, as oposed to the relative position within a container panel or form. I wrote this bit of code which works well for objects within objects within a form: Dim ControlLeft as Integer = Me.Left Dim ControlTop as Integer = Me.Top Dim ParentObject as Object = Me.Parent Do Until TypeOf ParentObject Is Form ControlLeft += ParentObject.Left ControlTop += ParentObject.Top ParentObject = ParentObject.Parent Loop Dim FormLeft as Object = ParentObject.Left + SystemInformation.FrameBorderSize.Width Dim FormTop as Object = ParentObject.Top + SystemInformation.MinimizedWindowSize.Height ' Determine the top & ...Show All

  • Visual C++ How do I copy a class instance with a vector of instances of it's own type?

    #ifndef _NODE_H_ #define _NODE_H_ #include "point.h" #include <vector> using namespace std; class node { public : node(); ~node(); point node_position; bool operator == ( const node &) const ; point grid_position; bool walkable; bool grid_exit; vector<node> neighbors; }; #endif   In the above code I need the vector of nodes to properly be copied when I use the assigment operator and on the surface it appears to work just fine with the default copy constructor provided by the VC++ compiler.  In usage I used the vector of nodes to find other instances of type node in a vector of nodes.  However, the vector of nodes ...Show All

  • Software Development for Windows Vista Beta2 to beta 2_2

    hello,   I am planning to move beta2_2( because Most of the examples are in Beta2_2) So Need the following Requirements 1. beta2_2 setup file 2. SDk 3. Labs 4. Required componts 5. And i want to known which version is install in my computer( I guess it is Beta2,   because beta2_2 samples are not working ) Please direct me. And my friend telling me, he installed Rc2 june version, and he could not find any samples for this particular version, so I decide to go beta2_2. Please give me details Where he is correct. Please help me   vijil bangalore     To get the samples for the June CTP you need to install the Windows SDK for ...Show All

©2008 Software Development Network