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

Software Development Network >> Ģ&#174&#59;€ğ&#167&#59;QĻ's Q&A profile

Ģ&#174&#59;€ğ&#167&#59;QĻ

Member List

howco
bennettdan
Quilnux
BobInVermont
Sumit_Dagar_8eba6d
joeydj
HiTech2k
Aaron Silverwatch
gazcuex
Mateusz Rajca
Black-Pear
hrubesh
RobSteele
bruce bubello
Patrick Sears
quuxo
cmccarrick
Boulderdude
Mathew1972
David Weller - MSFT
Only Title

Ģ&#174&#59;€ğ&#167&#59;QĻ's Q&A profile

  • .NET Development ASP Website Permissions

    Hello, I am putting together an ASP website and would like to run it using a limited account. Currently, the main thing this page is doing is querying the local machine and verifying that a service is running. However, the only way I can find to successfully run the script is by using an Admin account. Is there any way to specify which account type to use or how to run it with limited permissions with IIS The permissions would be specific to this page only. You can impersonate the admin account in the web.config file: <identity impersonate="true" userName="domain\MyAppUser" password="password"/> Adamus ...Show All

  • Software Development for Windows Vista Certified for Vista. Test Case 32.

    Hello , I've WER implementation from the Winqal Web site ( https://winqual.microsoft.com/help/default.htm#obtaining_a_verisign_class_3_digital_id.htm Developers Guide to WER ) employed in my MFC application, which is working perfectly on XP, but doesn't work at all on Vista. From previous publications I understood, the way to get it working on Vista is the new API only ( http://msdn2.microsoft.com/en-us/library/ms681656.aspx ), which "... has been VASTLY improved ...", but I didn't found any useful example how to embedd this new API in real MFC application. Current code looks like this: #include "Werapi.h" static LONG WINAPI ExceptionFilter( struct _EXCEPTION_POINTERS * pExceptionPointers ) { ...Show All

  • SQL Server Is there any easy way to evaluate complex date logic in expressions?

    Hello all, I am new to SSIS, so I am hoping there is an easier way to do this... I need to evaluate a date in a field and determine if it is between the beginning and end of whatever the current month is...  In Access, this was written as something like:   IIF ( datevalue  >= CDate ( Format ( Now(),"mm/01/yy" ) )   AND datevalue < CDate ( Format ( DateAdd ( "m",1,Now() ) , "mm/01/yy ) ) , value1 , value2 )   Trying to recreate this in SSIS using expressions during a derived transformation has been extremely difficult.  Here is what I came up with:   ( DUE_DATE >= ( DT_DATE ) ( ( DT_WSTR,2 ) MONTH ( GETDATE() ) +"/01/"+ ( DT_WSTR,2 ) YEAR ( GETDATE() ) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. bounding boxes

    I am having trouble with bounding boxes. I am not sure if I created it right or if I am using the intersect lines properly. I started programming with turing where I just used the variables coordinates of the pictures to detect intersection. This is what i have so far. BoundingBox car = new BoundingBox ( new Vector3 (spritePosition2.X, spritePosition2.Y, 0), new Vector3 (myTexture2.Width, myTexture2.Height, 0)); BoundingBox incoming = new BoundingBox ( new Vector3 (spritePosition10.X, spritePosition10.Y, 0), new Vector3 (myTexture1.Width, myTexture1.Height, 0)); if (car.Intersects (incoming) == true ) { spriteSpeed2 = -spriteSpeed2; } See changes in red that should help: Boundi ...Show All

  • Visual Studio Team System Spellchecking w/o MSOffice

    I'm new to the FxCop tool and interested in knowing if FXCop 1.35 handles spellchecking without MSOffice. Thanks! AC I not 100% sure on this, but you might be able to choose to only install the spelling checking components (without needing any of the other components) from the Office CD by simply choosing the Proofing tools under Office Shared Features. ...Show All

  • Visual Studio Tools for Office Displaying Word Documents Within C# Forms

    Hi everyone. In our project, We have the following scenario: We create Word 2003 XML documents on the fly from certain data, And present this document to the user for preview in the following way - A form containing an AxBrowser control is loaded (basically wraps the IE engine unless im wrong) and we navigate that control to the location where the .xml sits. Now, With word 2003 and the registry value EditFlags set-up correctly, The control does successfully render the document inside it. Lately, We have been testing word 12 out to see if it fits us and migrating does not hurt current business logic, And we were unable to mimic this behavior - The class Word.Document.12 does not contain the same registry value and the document, When n ...Show All

  • SQL Server sql connection

    hello, Is it possible to use TELNET(from the client in LAN A) and access database instance at(sql Server at LAN B) . I meann to say is, can we use TElnet over the internet to access the instance. can anybody helps me Thanks in advance YOu can open a port to SQL Server via telnet, it questionable what you can do with telnet on the instance. You can also use any query tool to access the appropiate port on the SQL Server. If the Server is behind a firewall you will have to do a port fowarding, opening the firewall and redirecting the request to the sQl Server. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • .NET Development Update query in DeleteCommand

    Hello, I'd like to use an update query in an adapter's DeleteCommand. I want to set a boolean column to 'true' (to mark the row as 'deleted') but leave the row there. I've tried what looks right but it doesn't work: OleDbCommand delCommand = new OleDbCommand ( "UPDATE tbl SET Action = 1, Deleted = where Id = " , cn); delCommand.Parameters.Add( "Id" , OleDbType .Integer, 0, "Id" ); delCommand.Parameters.Add( "Deleted" , OleDbType .Boolean, 0, "Deleted" ); delCommand.Parameters[1].Value = true ; m_dbAdapter.DeleteCommand = delCommand; I get an error that states I'm missing a value for the 'Deleted' parameter. Has anyone done this before Thanks, Ken ...Show All

  • .NET Development How to ignore SSL CA error in Site Name?

    Is it possible to programmaticaly ignore errors in SSL Certificates when connecting to a web service The site I am connecting to has a mistake in it's certificate (site name spelt wrong). I can ignore the error if I browse to the site, but I want to ignore it with my program. Are there any parameters or properties I can set to achieve this (It all works fine on a site with the correct certificate info) I am initialising the web service through Excel at the moment. Excerpt.... Set sc_myWS = New SoapClient30 sc_myWS.MSSoapInit2 c_WSDL_URL, str_WSML, c_SERVICE, c_PORT, c_SERVICE_NAMESPACE Set sc_myWS.ClientProperty("GCTMObjectFactory") = New clsof_Factory_myWS ...Show All

  • Windows Forms Problem with installing WinForm application

    I have developed a WinForm application. In the setup project I have the Detected Dependencies and the Primary Output from the WinForm application project. If the application is already installed, I would like to have the new installation not overwrite the .config file as it has lot of settings. How can I make this happen Also, to take it to another step, is there a way the user can select whether to overwrite the settings in the config or not Thanks Basani Phil, Thanks for your prompt response. I am new to creating Setup&Deployment projects. Can you point me to any article that discusses custom action Also I have used NOT REINSTALL with Transitive property to TRUE and NOT EXISTS wi ...Show All

  • SQL Server Performance issues in upgrading from SQL Server 2000 SP3(win 2000) to SS 2000 SP4(Win 2003)

    Of late the Sql Server and Windows server is bouncing and we are trying to figure out the issues in the environment. Some of recent happening are – 3 weeks back we moved from WIN 2K to Win 2003 EE; and Sql Server 2000 SP3 to SQL Server 2000 SP4. It's a Datawarehouse which is used for generating many important reports. Problems we are seeing – reports are taking more time; sql server is getting self blocked and jobs are failing; SQL server is taking too much time to restart (8 hrs). Architecture: OS: Windows 2003 (64 bit) EE Database: SQL Server 2000 SP4 (32 bit) Datastage Version: 7.5 Hi, Is it works fine now or still performance problem!!!! Have you used any locking hints ! H ...Show All

  • Visual Studio Express Editions Repost: How to lock windows key/alt-tab and ctrl-esc

    The previous post was locked because someone accused me of being a virus-writer. I have made a WPF screensaver, but need to disable the windows key, ctrl-esc and alt-tab (I don't want it to exit unless I press Alt-F4). It is to be displayed on computers in my store and I don't want customers shutting it down every time they press a button. I will email the screensaver to anyone that doesn't believe me. Could someone give me some advice on the easiest way to do this I have found code on 'hooking keys' but I am an amatuer and need some simpler information. Is there a way I can just say "Disable that key!" or what do I need to do Thanks alot, from mrmckeb! Just-A-Nerd wrote: Anoth ...Show All

  • Visual Studio Printing msdn2005 topic trees with collapse all option disabled

    I'm grateful to Micro$oft and her great developers for msdn 2005. But there's still alot of work remaining on the print engine. Manuals and comprehensive help stuff like msdn 2005 are better read on paper than on the screen. I've found a way around the 'unfriendly mode of printing a tree of subtopics' (see my recent post on printing msdn tree topics). But how do i print the material without the collapsed '+' buttons closing up all the vital information you need to learn the fantastic .Net technologies. If you disable the collapse button on the documents pane, it has no effect on the contents pane. Maybe there's an internet explorer or jscript script i can write to enable ie to open up all the collapsed material when i choose to print a tre ...Show All

  • SQL Server Can't launch executable from SQL Server Agent Job

    I'm trying to launch an .exe from SQL Server Agent Job and basically nothing happens. I created a job, with 1 step, type is Operating System (CmdExec), run as sql agent service account, and in the command box I typed "start notepad" (no quotes). The job owner is set to administrator. I manually start the job, it processes successfully yet notepad does not launch. I've tried with other .exe's and result is the same. Any advice Thanks! hi odalys, Yes. You can. you scenario and encountered the same error anyway here's the work around create an operating system(cmdexec) step directly invoke command.com and pass the command as parameter so the script should look like this Command. ...Show All

  • SQL Server "Package Configurations" Problem

    Hi all, I have just set up my first deployment utility for the Integration services package i've been building. I seem to be getting problems with the package Configurations. I added an XML config file so that i could change the values of my SQL connection manager at deployment time. This was so that i could deploy it on both a test environment and the live environment. Any other variables can be changed in code by the calling application. As soon as i added the options for the sql connection manager and enabled package configuration i got errors when running the application: [Execute SQL Task] Error: Failed to acquire connection "InternalProductionData Connection Manager". Connection may not be configured correctly or you may no ...Show All

©2008 Software Development Network