ANS-Denver's Q&A profile
SharePoint Products and Technologies PassThrough authentication fails: Login failed for user 'NT AUTHORITY\NETWORK SERVICE'
I've tried it with every AuthenticationMode! But no one seems to work correctly in my case. I thought that PassThrough should work with a preset User ID and password. This would be enough for the moment, but even this doesn't work!! With WindowsCredentials I get the following error: The Property with name 'SsoApplicationId' is missing on the LobSystemInstance. SsoApplicationId I tried to set this with the SharePoint SSO but I've no such services. How can I set this just for the current WindowsCredentials (of the current Sharepoint user) With RevertToSelf I get the following error: "An error occurred while retrieving data from MyLOBInstance. Administrators, see the server log for more information." The server log contained ...Show All
Visual Studio Team System Query
I am very exicted to learn this fantastic tool and i have just few day back started off with learning the tool and so far with the help of this forum i have got many of my doubts cleared..now i am familliar with the usage of this tool...i would like to tell that currently i am doing web and load testing on an intranet application...module by module i still have one major doubt!!! 1)How do i decide upon the values,goals to be set ....i mean what are the ideal conditions in which one can consider that an intranet application is giving good performance ..becoz right now i am just giving random values....i need to know some set of standards...is there any tutorial,link that can help me with this specially for intranet applications as i am c ...Show All
Visual Studio Tools for Office Microsoft.vbe.interop.dll
Hi all, In my project for a class called Addins i am implementing the interface Microsoft.vbe.Addin . i would like to know what is this Microsoft.vbe.interop.dll will do for my addins class implementaion. It is having the methods like update,parent,item etc. Thanks. Since this is an Office extensibility question, I have moved it to a forum which is more likely to get you the answer you need: MSDN Forums Visual Studio Tools for Office Visual Studio Tools for Office Thanks Nishan Jebanasam ...Show All
.NET Development How to prevent a cookie from being sent
I want to prevent a certain cookie from being posted from the client on each request. My app has 2 cookies. One is used in FormsAuthentification and is required throughout the lifetime of the app, the other is just used for one form, a login form, on this form I use the cookie to pick up the user details only if they have ticked a "remember me" box. When they tick the box the cookie is created and sent down to the client. The problem is all future Requests attach this cookie too, even though I only require it on the login page.. Is there any way to prevent this cookie from being posted with every request and response HttpRequest.. I had to check that twice.. by the way what's the difference Also I've just come across the ...Show All
.NET Development call stored procedure in C#
This is as far as i could get but i am trying to call a stored procedure from my C# application and use a textbox to pass the parameter to then i want to click the button and it uses whats in the textbox as the @OrderID which is the parameter i need to pass it then i want to add the items it returns based on what i enter in the textbox to my listBox1.Items.Add("data".ToString());....any help where i should go string connect = System.Configuration. ConfigurationManager .AppSettings[ "conn" ]; SqlConnection scn = new SqlConnection (connect); SqlCommand spcmd = new SqlCommand ( "CustOrdersDetail" , scn); spcmd.CommandType = System.Data. CommandType .StoredProcedure; spcmd.CommandText = "Cu ...Show All
.NET Development Table Adapter :Example Access
Anybody have an example of Table Adapter to connect MS-Access because I search at WEB many confused examples that help me but in my project using ADO.NET, ACCESS, and Win Applicaton with DAtaGridView , I run the Applicaton after change values at ROWS and this changes don't appear in DAtaGridView and only change(update) the file .mdb MS-Access . thank’s thank s for your attention. I run correctly my Application making a SELECT query and using OleDbConnection, OleDbCommand in form_LOAD event!!! Too I put a INSERT query in my App. ...Show All
Smart Device Development IShellNotificationCallback
Hello all, I want to implement the IShellNotificationCallback::OnDismiss interface, but need some direction on doing so. I have successfully created my notification balloon through SHNotificationAdd, but I need to handle it being dismissed. There is very little information on IShellNotificationCallback on the web, so I'm hoping someone close to Microsoft can help me out. Thanks very much. This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forum for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati. ...Show All
Visual Basic Accessing HTMLElements Methods from VB 2005 within WebBrowser
Hi there, I have a Windows.Form with a WebBrowser-Component. I can handle almost anything but I want to change properties of HTML/DHTML-Objects. For example: Dim Selectbox As HtmlElement = myBrowser.GetElementbyId( "SelectBoxNr1" ) Now Selectbox is a HtmlElement and I want to change the selectedIndex but I can't. If I debug and add Selectbox to Watchlist I see the property I need under Selectbox.DomElement.mshtml.HTMLSelectElementClass.IHTMLSelectElement.selectedIndex. How can I change the selected index I also tried: Selectbox.InvokeMember("changeIndex", "3") but this doesn't work Any Ideas ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Rocket Commander XNA Game
Hi everyone. I ported my famous Rocket Commander game (first .NET 2.0 game, free game with source code) to XNA and thanks to some multi-threaded optimizations it runs very good on the Xbox 360 too now. More information, the download links, screenshots and some notes about the porting process from MDX to XNA can be found on my blog: http://abi.exdream.com Rocket Commander XNA Screenshot: can not compile the source... its missing the XNAGraphicEngineContentProcessors.dll ...Show All
Game Technologies: DirectX, XNA, XACT, etc. XNA Connect & Feedback - Issues
Is it just me, or does the XNA connect / feedback page keep having problems I log in and the feedback option isn't available, or the page doesn't show at all... is anyone else experiencing these issues Jeff Johnson wrote: Is it just me, or does the XNA connect / feedback page keep having problems I log in and the feedback option isn't available, or the page doesn't show at all... is anyone else experiencing these issues Please post the issues you're having on the Microsoft Connect website under "Feedback" and somebody on the team will take a look at it. ...that was a little "Microsoft humor" for ya Seriously, I just checked it and didn't have any problems. Does th ...Show All
Visual C++ What are the difference among "Debug Release MinSizRel RelWithDebInfo"?
Hello all: I found Visual Studio 2005 provides four options to build a project. So what are the difference among "Debug Release MinSizRel RelWithDebInfo" Thank you very much! -Daniel Mark Hi Daniel, what kind of project have you created that you see those 4 build configurations On my VS2005 projects I only have release and debug. VC6 created those configs for combinations of release, debug, unicode/non-unicode builds. Did you possibly upgrade an older solution to a VS2005 project From the names I would guess: Debug == full debug info, link with debug c/c++ runtime Release == standard release build MinSizRel == like Release + some defines to leave out less common code szenarios ...Show All
Visual Studio 2008 (Pre-release) How do you disable Minimize, Maximize, Close buttons + remove app icon on a WPF window?
How do you disable Minimize, Maximize, Close buttons + remove app icon on a WPF window Any help doing this would be appreciated. Friedrich Brunzema I just tried setting the WindowStyle to SingleBorderWindow - this is almost what I want: I would like the possibilty of showing/hiding the Window Icon in the titlebar and the close button. Friedrich ...Show All
Visual Basic Trying to use upgrade wizard in VS 2005 beta 2
I have a VB 6.0 project I'm planning on moving to VS2005. I thought I could just open it in VS 2005 and the upgrade wizard would do something for me, but all I see is the text of the .vbp file. How do I get the wizard to work Thanks ...Show All
.NET Development Net 3.0 Redistributable Documentation
I downloaded and installed the Net 3.0 redistributable on Windows XP. I could find neither a program group created for it or even where it was installed, much less any documentation regarding it. Does any of this information exist The .NET 3.0 Framework consists of the .NET 2.0 Framework thus including CLR 2.0 and the new Frameworks (WCF, WCS, WF, WPF). All these frameworks are installed in the following directory: C:\WINDOWS\Microsoft.NET\Framework\ You may install the latest Windows SDK from http://www.microsoft.com/downloads/details.aspx FamilyID=c2b1e300-f358-4523-b479-f53d234cdccf&DisplayLang=en . It has the documentation for .Net Framework 3.0. You may also find documentation on msdn for ...Show All
Visual C# activedirectory log files
hi i want to know how can i access to logon times and userdownload size any comment and reply would be greately appreciated.......thanks ...Show All
