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

Software Development Network >> Timothy Wilson's Q&A profile

Timothy Wilson

Member List

ClaraOscura
ClarkMN
Sigge Persson
Derek Ekins
MLG_CSE
omarmhd
MA2005
Kamii47
Ed Abshire
Prabagarane
joeydj
Jonesj3599
AndersBank
rbedard
Ricardo Redert
dampbarn
tabs
webhead
Zoinky
Grumpy McNasty
Only Title

Timothy Wilson's Q&A profile

  • Silverlight (formerly WPF/E) FullScreen via Keystroke

    In the FullScreen documentation it says that: "A WPF/E control can only enable full-screen mode in response to a set of user-initiated actions. These actions correspond to the MouseLeftButtonDown , MouseLeftButtonUp , KeyDown , and KeyUp events. " However, the KeyDown and KeyUp events don't seem to be able to trigger full screen mode. To test this I have the following javascript: var wpfe; function loaded(sender, args) { wpfe = document.getElementById("wpfeControl1"); } function onMouseLeftButtonUp(sender, eventArgs) { // Toggle between embedded mode and full-screen mode. wpfe.fullScreen = !wpfe.fullScreen; } function keyDown(sender, eventArgs) { // Toggle between embedded mode and fu ...Show All

  • Visual Basic Access 2000-2003

    HI!. I am developing a system wich get data from fox pro free tables. I need to connect through ODBC without human intervention. Can somebody help me These forums are for VB.NET questions only - are you writing this application using a Version of VB.NET or using the internal version of basic contained within access. If you are talking about the basic in Access then this forum is not the correct place to be asking - you are using Visual Basic for Applications and this has its own forum as it is based upon an older version of VB specific to Office applications. These forums are http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=74&SiteID=1 ...Show All

  • SQL Server Expand/Collapse Button Region

    i have a number of reports which make ample use of drill-down...very cool. however, on some of the reports the mouseover region for the button is within the visual edges of the +/- button image, while on others it is somewhat to the left of the button. this is disconcerting when you put the mouse pointer over the button and nothing happens... any idea what's up with that thanks in advance ...Show All

  • Microsoft ISV Community Center Forums subscript out of range

    I am getting an error when running the script Do While (Not (Workbooks(bookmonth).Worksheets("by associate").Cells(4, i) = "dsl") Or Not (Workbooks(bookmonth).Worksheets("by associate").Cells(4, i) = "hsi")) I am uncertain why this is coming up. i is currently set to 1, so it should be starting to search in cell a1. I can not see anything wrong with the code that would produce a type mismatch on that line. Any value contained in the cell A4 would be compared to the two string values and would either proceed into the loop or pass over it. What value do you have in the cell when the test raises the error ...Show All

  • Smart Device Development Using Resources

    Hi I have a solution with two projects : 1) Smartphone 2005 project (s_ui) 2) Pocket PC wm 5.0 project (p_ui) Project 2 (p_ui) has a usercontrol which is to be added in a form in s_ui. This Usercontrol (usrLogin) has to be multiple languages depending on the culture info on the device. It should detect if the device is using "Danish" da-DK or english. So I have made to resource files (resx) in the p_ui project, one named Resources.resx and the danish one called Resources.da-DK.resx. The two files contains the values "Test" - "Hello" and for the danish "Test" - "Hej". When the control is added in a s_ui project form, the resources does not change for my string. But if I make the two ...Show All

  • Visual Studio Express Editions Where to keep User ID and Password if the user choses to check remember my user name and password

    Hi all, In a C# windows Application I have a login screen which will ask the user id and password. It also provides a check box "remember my user id and password". So when ever the user checks that check box, I have to store that information (user id and password) some where so that the user need not to enter again and again. So where should I store this information Which is the efficiant and secured way. Is this information should be stored in cookies or some where in windows registry or should I write a windows service for this or should I store in a file or database Please do me favour by your valuable answer. Thank you, Raviner Reddy.K ...Show All

  • Visual Studio Team System Confused about install requirements.

    Hi, I have been reading the posts w.r.t install requirements for VSTE DBPro RTM. I have a MSDN Universal subscription and hence have VSTE SP1 installed. That is what came in my MSDN subscription. My understanding is that I can't install VSTE DBPro RTM. Is this right I suppose my first thought is how can this be Then my second thought is how can I get VSTE DBPro RTM installed without changing my install of VSTE (because I need it work, i.e. no trial jazz). There seems to be some confusion between what the read me states and CTP6 -> CTP7 changes. Can someone clarify the install requirements for MSDN folks Thanks, -Allen To install DBPro, you have to either be running Visual Studio Team Sui ...Show All

  • Visual Studio Express Editions Open Specific File

    Hi all, How can i open a file without using the OpenFileDialog and i know the location to display a text file into a rtf box Any Help will be appreciated, Thanks in advance MW200675 Still does not work, private void label1_Click(object sender, EventArgs e) { this.rt.LoadFile("C:\\Documents and Settings\\test.rtf", RichTextBoxStreamType.RichText); } The error that comes up now is file format not valid, Anyway, thanks so far, i hope we can solve this problem soon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with ATI Radeon 9700M

    Hi. I've a problem with my graphics card. I wrote the code using a GF6600GT, now i tested it on my notebook with the card specified in subject. Following problem occured: All cube texture are not functional anymore. The skybox doesn't render. I use a custom vertex (Position (V3), TextureCoordinates (V3)). Does someone know what's wrong Code of VertexClass: internal struct VertexPositionCubeTexture { /// <summary> /// position of vertex /// </summary> public Vector3 Position; /// <summary> /// texture coordinate of vertex /// </summary> public Vector3 TextureCoordinate; /// <summary> /// vertex declaration /// & ...Show All

  • Smart Device Development Get processor usage

    Hi, does anybody knows how to get processor usage percentage, i mean like how it looks at the windows xp task manager. thanks in advance I would guess that would be a sum of 3 and 4 divided by current time minus #1. You can run a little experiment to confirm that. ...Show All

  • Windows Forms Why is panel width max 32676 pixel???

    I created a Table Layout Panel control including several panels in each cell. Now I detected that the max length for each of these panels is something like 32 676 (panel.width-Value) pixel. How can this be The property should be a Int32-Value! How can I now create a panel which is about 60 000 pixel long (I need this for a diagramm with scroll bar...) Thanks for any help!!! The highest resolution current monitors support is approximately 1600 pixels across. Given that you could use several monitors you'd still need 20 monitors spanned end-to-end to get to 32K pixels of width. I don't see this as an issue. If I were to wager a guess I'd say it is a limit of Windows itself. Michael Tayl ...Show All

  • Visual Studio 2008 (Pre-release) Get client's local physical port number for net.tcp binding?

    Hi, I have a simple net.tcp, sessionful, client-server WCF system with both sides in separate WinForms apps.  After the client calls Open on the proxy to talk to the service I wanted to get the physical TCP local port number the client had connected on (for debugging).  In a conventional Winsock app the client could call getsockname on the socket to find this out.  Is there something similar in WCF The place I would have expected to get this from is LocalAddress, but that produces somewhat odd results. When I run this code on the client side... oLA = ClientSideProxy . InnerChannel . LocalAddress; oRA = ClientSideProxy . InnerChannel . RemoteAddress; ... RemoteAddress.Uri.Port returns the e ...Show All

  • Visual Studio Team System Unable to see information when user added to project administrator group

    I add three user to Builtin Project administrator group and try to loging with that user, i am not able to see any information of project and it give error that u not have enough permission on TFS. Then i made custom group and give all permission for project then everything goes fine. Can some one guide me what would be wrong Thanks for taking interest and reply. But the problem is different now I am writing in detail what I did. For more Granularity in permission we perform following steps: Create Global group on Team Foundation Server according to different role given for CMMI in the Visual Studio Team Foundation Administrator Guide. We give permission according to role on Server, P ...Show All

  • .NET Development Book here says MSIL does not get fully compiled to native?

    One of the earliest books in C# was "C#: The Complete Reference" by Herbert Schildt. His book suggests in the beginning that the MSIL code gets compiled to native "as needed," so it basically suggests it does the same thing as Java. Later, I remember reading that Microsoft was insisting that all of the MSIL code gets compiled to native, which would also mean there's no runtime processing of the garbage collection etc. The reason why I doubt Microsoft in this case is because the front of the cover of this book has a quote from Prashant Sridharan, the the C# Product Manager from Microsoft, saying that this is a must-have resource for C# programmers. Doesn't this mean he would have reviewed the book first Why was he okay before with the bo ...Show All

  • Visual Studio Team System Strenger! Where does the team explorer store authentication information?

    Dear experts: I installed team foundation server in a domain server successfully, and my team explorer can connect it without any problems. Also I put it to the internet, anyway it is not security, but I just want a test. However, I found the VS2005 didn't ask me any authentication before let me connected as the administrator As the client computer connect the server via internet, and it is not a domain computer. So the team explorer must store the authentication in some place, and it uses some default authenticaiton. So can anyone tell me where does the team explorer store such sencitive information and how to modify it Any suggestion is appreciated. Thanks in advance Ron Hi Bruce: Sorry for the long delay, as this f ...Show All

©2008 Software Development Network