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

Software Development Network >> Kyle Leitch's Q&A profile

Kyle Leitch

Member List

vgta
mwindham
user32
Digger1321
rs12345
daname
Sarguna
Edwardvb
CRasmussen
Neil_D_Jones
Anthony Tarlano
Domenico Barile
Alexander Stoyan
lawrieg
JIM.H.
gafferuk
Codeblack
Vaft
maqk
VidyaSagarCh
Only Title

Kyle Leitch's Q&A profile

  • Visual Studio Team System Using AssemblyMajorVersion to update AssemblyInfo in Team build

    Hi, Haivng used the build script according to http://blogs.msdn.com/gautamg/archive/2006/01/04/509146.aspx , I find that the AssemblyMajorVersion is not updated for the binaries that are compiled. Anybody else who is having the same issue If you know, how to resolve this issue, can you please help me. Thanks Ill try that. Why does this not grab all files with AssemblyInfoFiles within the level < CreateItem Include = " $(SolutionRoot)\*\*\*\*\AssemblyInfo.cs " > < Output ItemName = " AssemblyInfoFiles " TaskParameter = " Include " /> </ CreateItem > It only grabs one when there are about 15 in different directories. How do I get 135 files to be placed ...Show All

  • Windows Forms using mousewheel in treeview

    I want to use the mousewheel to scroll trough nodes in a Treeview, selecting und unselecting each in turn as I scroll. This will displays display certain related information about the selected treenode. My problem is that this also scrolls the entire treeveiw display up or down, often hiding the node I am trying to select with the mouswheel. I dont want the nousewheel to scroll the treeview. Essentially I want the mousewheel all to myself after pressing the middle mouse button to start the process. How can I acheive this Also, I cant quite figure how to determine how many mousewheel click occured. (e.delta always seem to be either +120 or - 120, but relative to what ). In practice the user might want to click down several nodes, b ...Show All

  • SQL Server Report Model Template

    HI, When I create a new Business Intelligence Projects, I can not find the "Report Model Project" template. I am not sure If I failed to install a few components ( client components). If this is the problem, how can I add these templates Thanks, RR I'm having the same problem. I've chosen to install all components and yet no Report Model Project Template. Is there somewhere we could download this template. I don't know if this makes a difference, but I have a licensed copy of Visual Studio 2005 on my computer. Thanks in advance for your advice. ...Show All

  • SQL Server sort this user/login name permissions mess?

    Hi, I've been asked to sort out a mess as follows: two dbs on one server... first db has a user called 'bob'.. that's the login on the server and also the login name on the db in question. this db has several SP's owned by 'bob' which need to copied to the second db. Here's where the problem starts. Somehow, this second db has the standard users it needs, however the db User has a LoginName of 'bob'.. So basically if I try and create a user of 'bob' on the second server which will then allow me to copy these SP's across it says it already exists.. but if I just go ahead and try and copy the SP's it says the User does not exist. Just to clarify what I mean.. I go into the 2nd db using EM. go to users: ...Show All

  • Windows Forms working on picture layers?

    I simply have a Form, and a picturebox on it. I can open a new picture and draw something on it using the mouse. What I need to do is, to have the picture which I opened in one layer, and the things I draw on it, in another one. So that I can save my drawings in a different file. (closest case is the photoshop layers.) I would appreciate the answers you'll give. Good evening to everyone, I will shortly explain the things I have basicly. The program is like a mini-paint which looks like a mini photoshop. anyway.. Two forms (till now) MdiParent & mdiChild forms. Things I must do are: To open a picture, To draw lines, curves, and other basic drawing applications, (I've done till here ...Show All

  • Visual Basic HOW DO I: resume execution after Throw in Catch?

    Sorry for what seems like a trivial question, but... How do I continue execution after issueing a "Throw New..." inside a Catch Nothing I do moves me off the Throw command (tried ctrl+shft+f8, etc.) so I must halt execution altogether without being able to test the exception handler code at all. [Without the"Throw New..." it continues execution fine. Also, rethrowing the original exception instead of a new one does not change the behavior.] I have Option:Debugging:General:Enable Just My Code as enabled, along with Debug:Exceptions:CLR Exceptions set to User-Unhandled. Ultimately, I am looking for the equivalent of VB6 "Break on Unhandled", which has so far proven to be very elusive!!! ANY help would be ap ...Show All

  • .NET Development How to suppress the BOM while using XMLTextWriter?

    I am using XMLTextWriter to create an UTF8 XML document. Is there a way to suppress the "EF BB BF" bytes thanks everyone! FYI - to do it using the "new" convention XmlWriterSettings settings = new XmlWriterSettings(); settings.Encoding = new UTF8Encoding(false); XmlWriter xw = new XmlWriter.Create(outFile, settings); ...Show All

  • Smart Device Development How To edit mxip_lang.vol? software?help please

    How to edit mxip_lang.vol need to language translate (to slovak language) and repair lang, my device is motorola mpx220, system windows mobile 2003 SE, PS... my english language is low my language is slovak, sorry THANK TO REPLY!!!!! (Kardos Tomas, Developer Mobile Software, Slovakia) Please refer to http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=223605&SiteID=1 You will likely get faster and more reliable response there ...Show All

  • Visual Studio Express Editions Create and Set Environment variables

    I would like to create and set a system environment variable from a vb application. The environment variable will hold a path (c:\Program Files). I know that it has to do with Environ$, but i'm not sure how. Any help would be much appreciated. Thanks in advance With some help from someone on another VB Forum, I have found the answer. This will create a registry key in the Environment Variables section of the registry. Dim Reg As Object Set Reg = CreateObject("wscript.shell") ' Suppose Write App to Startup with Computer Reg.RegWrite "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment\" & App.EXEName, App.Path & "\" & App.EXEName & ".exe" Hope this help ...Show All

  • Visual C# POPULATE A DROPDOWNLIST IN DATAGRID WITH XML FILE IN EDIT MODE

    HI All, I want to populate a dropdownlist which is in an editable datagrid ,the data have to come from an xml file; in an asp.net page with c# as the language please can anyone tell me how to do it. ...Show All

  • Visual Studio Team System get active selection in TFS

    i am intending provide a function like this; in the "work item query" result session, when user click one of them, i want to recognize what they choose, so that when i click "myhelp" from the Menu, i will be able to display some text to the user. ps: the "myhelp" menu is added through Add in. thanks in advance William, Check out my blog at https://blogs.msdn.com/narend/archive/2006/07/07/AccessingWitFromAddin.aspx for detailed steps and sample on how to do it. BTW, the sample https://blogs.msdn.com/narend/archive/2006/07/10/661767.aspx does exactly this. Naren ...Show All

  • Visual Basic Simple for you - not so for me :(

    Hi again guys, I would be grateful for some help with either of these two questions: 1. Using the webcontrol in .net 2005 how do I detect a popup or new window opening to show a page I would like to make it open in a copy of the main window of my app, if thats possible... 2. Is there a way of cleaing out the internet explorer history I would like a button to be able to do this. Thanks everyone, Wilk06 Also I am having a big problem as when my splash screen closes so does the mainpart of the app! Any ideas as to why this is happening Thanks for the otherlinks, Wilk06 ...Show All

  • Microsoft ISV Community Center Forums opc

    I am trying to develop an opc - da client using .net technology. Have gone through the documents on opc and opc client and all, but am still not sure how to implement it, can someone give me a direction on how to start with it Sorry , this one should work http://www.faweb.net/us/opc/sample_vbnet.html Here a sample of the code: '--- connect OPCServer OPCMyServer = New OPCAutomation.OPCServer OPCMyServer.Connect(txtSvrName.Text, "" ) OPCMyGroups = OPCMyServer.OPCGroups ' !!!!!!!!!!!!! << The problem happens in this line OPCMyGroup = OPCMyServer.OPCGroups.Add( "Group1" ) ' OPCMyGroups.Add("Group1") OPCMyGroup.UpdateRate = Val(txtUpdate ...Show All

  • Windows Forms DataTable property from within BindingSource

    hi how can can i access the DataTable property from within BindingSource thanks The BindingSource's DataSource property is pointing at your DataSet. You need to get the DataTable that the DataMember property is set to. You can do that with this code: dt = CType(CategoriesBindingSource.DataSource.Categories, DataTable) or, more generically: dt = CType(CategoriesBindingSource.DataSource.Tables(CategoriesBindingSource.DataMember), DataTable) The latter looks up the DataTable on the binding source by the name of the DataMember being used. HTH, ...Show All

  • Internet Explorer Development Protected -> Medium Integrity, elevation policy

    I have an ActiveX control which needs to start a process with medium integrity. I am trying to get ieuser to elevate the process without prompting the user to ok the elevation. On install, I generate a GUID and add it to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Low Rights\ElevationPolicy, and set the 'AppName' and 'AppPath' to reference the application to run (I do not set the CLSID). I set the 'Policy' value to 3. Even after restarting the PC, IE still prompts the user with the dialog seen in: "Understanding and Working in Protected Mode Internet Explorer" Any suggestions on what I am doing wrong The ActiveX control and application to be launched are both signed, and the application has the manifest trust level s ...Show All

©2008 Software Development Network