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

Software Development Network >> Nate Garvey's Q&A profile

Nate Garvey

Member List

Ananda Ganesh
davidy13
ClintTredway
Stokh
Yaoyuan
Bandile
Sgupta
Nokoff
Polina159216
Miles Cohen
M.D.A
msbuilddude
kangalert
ferdesceline
su45937
h1
brandera
Robert Shurbet
Programm3r
haryindsfjdbf
Only Title

Nate Garvey's Q&A profile

  • Visual Studio 2008 (Pre-release) Impersonation isn't working

    Hosted in IIS right now, directory security is set to anonymous and everything else is unchecked. My service methods all have impersonate.required attributes and principlePermission(securityaction.required,role="mydomain\domain users") on them. however, i keep getting security exception and it faults out. here is my web.config servicemodel info. < system.serviceModel > < bindings > < wsHttpBinding > < binding name = " wsHttpBindingConfig " > < security mode = " Message " > < transport clientCredentialType = " Windows " proxyCredentialType = " Windows " /> </ security > </ binding > </ wsHttp ...Show All

  • Visual Studio Express Editions hyperlink

    How do I include a hyperlink to a file on my website (e.g. http://www.freewebs.com/styson92/Battlefield%202142.PIE ) Into a program im writing Please give code ...Show All

  • Internet Explorer Development WM_PASTE - Active text box

    I have used IE object and want to send some message to the active inputbox in the IE window (not by something.value="abc") but using WM_PASTE. the problem is that WM_PASTE doesnt paste anything to the active window. if i press ctrl+v or use the mouse to paste using the right click popup menu it works. any ideas how do i achieve this I found this question on the web, and have the same problem. Any ideas Thanks in advance. ...Show All

  • SQL Server Bulk Insert Unicode

    Good day, We are using bulk insert with a formatfile to load a text file into sqlexpress. One field in the text file contains non-ascii (unicode) charaters and the corresponding database field is nvarchar. When the record and row are specified in the format file as: <FIELD ID="23" xsi:type="CharTerm" TERMINATOR="\t" MAX_LENGTH="400" COLLATION="Latin1_General_CI_AS"/> <COLUMN SOURCE="23" NAME="FullName" xsi:type="SQLNVARCHAR"/> the value "Boca Cura" gets imported as "Boca CurA!". This is true even with datafiletype set to widenative or widechar, and/or codepage set to raw or acp. When the field is specfied in the rec ...Show All

  • Visual C++ create dll with visual 2005

    Hi, I have got my own mathematic classes (vector , matrix etc.) and I wish to export those classes in toa dll. How should I proceed to make it with visual studio 2005. thanks I wish to create my mathlib with Matrix4D Vector3D and Vector4D I have used this internet url : http://www.codeproject.com/dll/dllexport.asp so I have done , everyting which is explained in this tutorial but problems occured. (Visual C++ C1010 unexpected end of file while looking for precompiled header directive) what's wrong ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Content Pipeline Type Environment Odditiy

    Sorry this is likely to be a bit confusing, as its fairly complex... I have a Managed C++ Library (called Lua2ILContentImport) with a custom content pipeline in it, its has to be Managed C++ because it embed a fair chunk of old C code in it (Lua 5.0 for the curious), I also have a C# library (called Lua2IL) that runs on PC and 360 (a define removed some Emit calls on the 360, the rest is identical). Lua2ILContentImport reference Lua2IL with the define defined so that a Lua byte code to CLR IL system is enabled using Reflection.Emit. Now the product of the content pipeline is an assembly full of lovely IL that originally were Lua scripts. For testing I also have a tiny console driver that manually calls the content pipeline classes to make ...Show All

  • Software Development for Windows Vista indexers in a Rule condition of an If/Else activity

    I seem to be having some trouble getting Indexers working with the Rule Conditions of IF/Else activities. I have a property ("TestProperty") on my Sequential workflow Activity class which i've put a standard indexer override on. This indexer works fine from other C# code but through the "Rule Condition Editor" I get an error saying: "Error building the condition: No indexer properties were found on type "PostImportRules.XMLObjectWrapper" My Workflow is a Sequential workflow with 1 IF/ELSE activity added. Each Branch has 1 code actvity which calls a simple stub function. The Condition on the If Else activity is a Declarative Rule Condition and I want to set it to TestProperty["/XML/@Test&quo ...Show All

  • Windows Forms How to add member variables to a dialog?

    Is there an easy way to add a member variable to a dialog With some difficulty, I have located the "Add member variable" Wizard, which is cumbersome, and takes approximately 60 sec from the time I click OK until it returns. Sorry, I see I accidentally posted to the wrong forum. This is an MFC dialog; it does not use Windows Forms. Why not add the code directly Because it has to appear in several places, and it's more convenient to use a wizard. Alas, the departed ClassWizard did this very neatly. ...Show All

  • Windows Forms change size of scrollbar used in textbox

    Hi, I am newbie in .net C#. I want to minimize height of scrollbar which used in textbox. or I want to bound hscrollbar to textbox (in this case i can change size of hscrollbar). is this possible Waiting for reply. Thanks, Niku Hi Niku, I'd like to know what does "minimize height of scrollbar" mean Like a form Generally, the width of a vscrollbar and height of a vscrollbar is system defined You can change this value by right click on the desktop -> property -> appearence -> advanced ...Show All

  • Smart Device Development Application loses focus when closing a Form - but only on one Form it happens...

    Hi all, I have this strange problem/issue that I have had bothering me for a while now. I have an application where the users browses through Forms to perform various bits of functionality, and then closes the form to return back to the previous form (the Form from which it was openned), and the Focus is right back with the Form that openned the closed Form (if you know what I mean :)). Now this all works fine in my application apart from in one place, where when the called Form is closed, the calling form (or my Application even) doesn't get focus back until the 2nd tap on the application with the pen. The Windows start button and Input control on the MainMenu are focused and can be activated from the first click on them, but not my appli ...Show All

  • SQL Server include column from table in SELECT in an INSERT OUTPUT clause

    Hey All – I am having problems with the OUTPUT clause in an INSERT. I have something like this: INSERT INTO dbo.Person ( PersonID ,Name ) OUTPUT p.AuditVersionGUID ,inserted.PersonID ,inserted.Name INTO dbo.PersonAudit ( AuditVersionGUID ,PersonID ,Name ) SELECT p.PersonID, p.Name FROM #Person p AuditVersionGUID is not and shouldn’t be defined on the Person table but I do have it defined in my #Person table. I get this error: Msg 4104, Level 16, State 1, Procedure spExtractPerson, Line 275 The multi-part identifier "P.AuditVersionGUID" could not be bound. I can accomplish this when I ...Show All

  • SQL Server When is SQL 2005 SP2 available?

    I have seen a few KB-articles about SQL 2005 SP2 at support.microsoft.com, but I cannot find the download. Is it available If not, when will it be available Best regards Niklas Engfelt Niklas, I do not believe that a public statement about the RTM availability of SP2 for SQL Server 2005 has been released. However, I did find mention of the CTP2 release of SP2 located here: https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=760644&SiteID=1 Based on that announcement, it can be assumed that the RTM version SP2 is still under development and is not yet available for public download. ...Show All

  • Visual Studio Tools for Office [Excel][C#][Com Server][Bug]Bug: the result of formula is output in a wrong cell (using the Wizard)

    The following bug write in another cell the result of a formula calculated using the wizard. Here is how you can reproduce the bug: - add a com server with MyFunction to an addin. - Write in sheet 2 !A1 the text "Foo". - Select the cell sheet 2 !A2. - Select the cell sheet 1 !A1. - Write in sheet1!a1 "=MyFunction(", then use the wizar (clic on 'fx'), and select the cell sheet 2 !a1. The cell sheet2!A2 is modified !!! Here is he function MyFunction , followed by some comments : public string MyFunction(Microsoft.Office.Interop.Excel.Range MyRange) { try{ // Removing these 4 lines does not change the problem: if (application.Ready == false) return "Not ready"; else Application.Vol ...Show All

  • Visual Studio 2008 (Pre-release) Databinding IValueConverter magic

    I have an XmlDocument that I have bound to my DataContext for a screen. Then I use xpath statements to extract the information from the document, on of the xml element's contains Base64 encoded image data or it can contain just textual data or it can contain a string that represents a WPF color like "Red" Is there a neat way to create a Converter that could return the appropriate type and have a DataTemplate for each type e.g. <DataTemplate DataType="BitmapImage"> <Image Source={Binding Path="/"/> </DataTemplate> <DataTemplate DataType="Color"> <Rectangle Height="25" Width="25" Fill={Binding Path="/"/> </DataTemplate> etc.... ...Show All

  • Visual C# Project Idea

    Hello every one, I have just recently started coding away with C# and decided that this would be a suitable language to produce third year project for my degree course for various different reasons. I am still researching couple of ideas, was wondering if any of you bright people would kindly give me some ideas which will not only be a fun project to work on but something i can learn from. p.s. I have a good understanding of OOP Thanks in advance Well for my final project in college I wrote a distributed (No central server) chat/filesharing application that used a plugin architecture for extensibility, it was a lot of fun, it was a lot of work but it wasn't too bad. I built it in java but that is close enough to c# s ...Show All

©2008 Software Development Network