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

Software Development Network >> gonzo883's Q&A profile

gonzo883

Member List

RCS300
ASaleem
TemporaryNick
SuperSaiyanZero
LSF
Laurent67
NozFx
zdrae
Markus.Schuster
joshtms
HC86
fuongptit-kodomo
kymaita
Francesco De Vittori
LuckyL
programmer01
Udhay Kadiyala
XNA Rockstar
maest
MatHobbs
Only Title

gonzo883's Q&A profile

  • Microsoft ISV Community Center Forums Sorry it may not have been clear as>>

    I have created a program that I plan on disbursing to other people, on this program, I have added a simple form with support info. I would like the text to be a hyperlink for a website and email. Any suggestions thanks Hi guys, VBA is not the same and VB.NET. The System.Diagnostic.Process object isn't in VBA and unfortunately neither is the link label control. If you want to have a link in a form in one of the Office applications then you need to fool the user by having a normal label control with blue underlined text that when clicked opens the site. You can use the shell command to open your web site. You but this in the label OnClick event. Shell "explorer http://www.yahoo.com ", vbNormalFocus Unfort ...Show All

  • Visual C++ How to restrict a user from 'Deleting' a file by pressing DELETE key on Keyboard..???

    Hi, Here, I want to restrict a user from Deleting a file Manually (i.e, 1. By pressing DELETE Key on keyboard 2. Right-Click on file and selecting Delete. ) In MS-Word 2003, If a file is Opened, and we are trying to Delete it, it gives an error message like, " The file abc.doc cannot be delete : The file abc.doc is in use by following program Microsoft word . The file must be closed before delete." I want exact functionality as above. Could any one help me. third parameter can be FILE_SHARE_READ|FILE_SHARE_WRITE Other processes can read and write simultaneously. But not Delete. ...Show All

  • Visual Studio 2008 (Pre-release) CallContext on WCF

    In remoting we had the CallContext which was very good and extensible. Where is it in WCF I realised MS have probally renamed it to something totally unrecognisable, so what is it now called Just joking!!! Michael You might want to investigate OperationContext . OperationContext.Current obtains the current operation (call) context for the service method. Dave ...Show All

  • Visual Studio Express Editions Embedded Images

    I know this is probably a very bad way of doing things but I've been forced down a certain path. I have a lot (read: loads!) of embedded images, is there a way to dynamically refer to them For example, at tht moment I can chuck loads of these into a select case statement: objImage = My.Resources.screen_1 objImage = My.Resources.screen_2 ... Ideally though, I'd like to be able to construct the My.Resources bit myself, so the number at the end can be generated seperately. Is this possible You could store the resource bitmap references in an array at startup. Retrieving them later is now a simple array index. For example: Public Class Form1 Private Const SCREENS As Integer = 3 Private mScreens() As Bit ...Show All

  • Visual Studio Team System Visual Studio Displays red X over the document folder in Team Explorer

    We have a team project where they want to create a Document Library in Sharpoint that only some project members has access to. To achieve this they selected to Modify Settings and Columns | Change Permissions for this Document Library. They then removed all the cross site groups from the list and added the individual users that should have access. This worked perfectly in Sharepoint but the users that didn’t have access got a red X over the entire Document Folder in Team Explorer and can’t access any of the folders under Documents using Team Explorer. Is this a known behaviour Are there any other way of achieving the result we wanted to have with a private folder. Any input appreciated. Regards, Christian ...Show All

  • .NET Development How to perform nested sort?

    Hello, Could someone pls help me with the xsl:sort and xsl:for-each instructions. I have an input file with sets of x,y pairs and would like to sort the <point> elements by x then y within each set. I can do simple sorts but not sure how to take to next level. Thanks, Tad < xml version="1.0" standalone="no" > <root id="theroot"> <set id="1"> <point x="3" y="3" /> <point x="1" y="2" /> <point x="9" y="2" /> <point x="6" y="0" /> </set> <set id="2"> <point x="2" y="2" /> <point x="2" y="5" /& ...Show All

  • Visual Studio Dynamic help

    Hi, I have Visual Studio.Net 2003 with service pack 1 installed on a laptop. MSDN is installed on the machine but whenever I try to get help it asks for the relevant MSDN CD. How do I get MSDN to register correctly with Visual Studio Many thanks Ray Hi Ray, Apologies for the late response. From your description, it looks like only a Minimal install of the MSDN Library was done on your laptop. You need to do a Custom or Complete install, and you'll also need the MSDN Library CD/DVD to accomplish this. I'm using the latest MSDN December 2006 Library DVD for VS2005, and if I remember, the setup format is pretty much the same as for the VS2003 versions. Insert the MSDN Library CD/DVD in ...Show All

  • Visual C# How to get values of form controls in MDI application?

    Hi.. In an MDI application if i have a parent form & 2 child forms. In that application how i can get values of parent form controls(e.g. textbox text or a boolean variable) form child form & from child form how i can get values of parent form controls (e.g. textbox text or a boolean variable). Thanks, Vinay Hi... Thanks for your reply... I am new in C#...can u sggest me any detailed document on what u have explained or can give more explanation on what u wrote... Thanks, Vinay ...Show All

  • Smart Device Development How to refresh the window in this case?

    hi, all I have a question about window refresh. The situation is, I need to hide the whole window. But it might show up some error message box if I need to. The problem is, after user clicks on Yes or No, the message box won't go away. The code is like this: SomeForm myForm = new SomeForm(); Application.Run(MyForm); SomeForm:OnLoad() { this.Visible = false; bool bValid = ValidateData(); if(!bValid) { DialogResult dr = MessageBox.Show(xxxxxx, do you want to continue); if(dr == DialogResult.Yes) { /// Here, do other work. /// At this point, the MessageBox is still there, won't go away. /// I think the reason is, there is no client area to refresh since the this.visible is false. So it does not re ...Show All

  • Visual Studio Tools for Office How to work with Excel Rows and Cells?

    Hello, I am new to VSTO and VS 2005. I have a challenge to develop a prototype of an Excel sheet which will allow my testers to create test cases using some inputs from external source like a XML file or a VBScript. Scenario is like this: I need to develop an Excel sheet which connects to a XML file and some script file. It parses these files and loads some values in a TreeView control. I did this using UserControl and displaying this in TaskPane. Then I created Range to hold the value selected in TreeView. However, when I select a value from TreeView, it is copied in all the cells of defined range. I want to control this. I want to copy the value in selected cell and row or the cell which is active in defined Range. ‘Environm ...Show All

  • Visual Studio Express Editions newbie: how to open a project?

    I'm just getting started with VB Express. I've made a project and saved it in the project folder. It shows in the "Recent Projects" box on the main window, but won't open. If I go to the projects folder, I can't figure out which file to use to open the project. Help, please. I don't know what is the problem with recent projects box and why you can't use it, anyway, VB project file's extension is vbproj and the extension for the whole solution file is sln . ...Show All

  • .NET Development filter question

    Hello I've a access database on a site and I like to use a filter on that. But this filter must have 6 values. I try this in web developer express but then it doesn't show any output. Even I change the select statement from and to or. Is there an other solution for this, maybe with self written select statement Ok that is not the problem. When I use that I don't get any result in my grid. I have 6 textboxen what I use for runtime filtering but when I put them all six in the where statement I have a problem with the parameters in web developer. Must I write this in ASP code and how then to use my textbox with a like statement ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. No news about XNA 2?

    It has been a long time (feeling instead of real time) since XNA 1 released. I've been waiting for news about the next big thing. But it seems it's rather quite; no early info is out. What will be the next exciting things I can only guess... 1) Maybe it's an XNA Game Studio Professional which works with VS Pro version. But I'd rather like an XNA SDK to work with any IDE. 2) Maybe it's great enhancement to the framework. Many more D3DX stuff come into XNA, lifting XNA to the same level as MDX/native DX in functionality. Hmm...I hope the functionalities are not dropped just because they're not supported on XBox. qrli wrote: It has been a long time (feeling instead of real time) since XNA 1 released. I ...Show All

  • Smart Device Development Register and unregister DLL

    My C++ smartphone app automatically registers (ala regsvr on your desktop) at deployment because in the project's properties configuration page for deployment I have "Register Output" set to yes. What executible is this calling to register the dll I cannot find regsvr.exe or regsvrce.exe or wm5_regsvr.exe or any other variant on my phone. The reason I want to find it is I want to unregister the dll to clean things up (kind of like a clean deploy). I am using a Motorola Q, if it matters. Thanks, Ed I looked around the WM5 SP SDK and did not find such a tool, so you may have to write a reg/unreg tool. I routinely use the code snippets on that article to register / unregister DLLs from within an application which ...Show All

  • Visual Studio Team System Roll back to a file version / Delete an unwanted checked in.

    Hi After checked in some files to TFS, I am lookin at one file history and would like to roll back to one of them, I was looking for 2-3 options: 1. Delete the unwanted revision and in this method rooling back to previous revision. 2. Merge from history revision to top of trunk and getting back a version from history to top of trunk (with full tracking - the best way in my opinion) 3. Rool back to a revision - move the selected revision to the top of trunk or any other solution. What are TFS options to do that Thanks, Rolling back a change that's not the latest is going to be complicated regardless of whether TFS adds a specific feature for it. As the original poster notes, it will require a 3-way merge. Let's say the file history l ...Show All

©2008 Software Development Network