Software Development Network Logo
  • VS Express Editions
  • Game Technologies
  • Microsoft ISV
  • Visual C++
  • SQL Server
  • Smart Device
  • Visual J#
  • Visual Basic
  • Visual Studio
  • Visual FoxPro
  • Architecture
  • Visual C#
  • VS Team System
  • .NET Development
  • Windows Live

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

leekitswee

Member List

mech55
Ramzee
uncle_peter
Paul Cornell MSFT
Rajdattani
Dadinos
SDeen
Mayukh142725
JFox
Thomas Petchel
bbogdanmircea
Mr Brewdude
Bobby Bowden
Brehnan
DGB
HeliF
MartinMalek
akhin
Dean K
Kylelanson
Only Title

leekitswee's Q&A profile

  • Visual Studio Team System Custom Exception causes "Not Authorized to View this page"

    Hi, I am having a problem throwing custom exceptions. Whenever my web application throws an unhandled custom exception it does something so that the next time I run the application I get a "You are not authorized to view this page" message. I have tried manipulating the Directory Security in the website property pages and on the physical directoreis themselves with no luck. It seems to work just fine if the exception thrown is a system exc ...Show All

  • Visual FoxPro Create a Directory

    How can i create a directory when the app begins but validating if the directory exists avoiding an error code thanks a lot! Hi Eric, found it. MD fails to create a directory of more than one level, when the parent directory is either hidden or a system directory: Md (Addbs(GetEnv("APPDATA"))+Sys(2015)+"\"+Sys(2015)) Creating the directory one level at a time works, though. ...Show All

  • Visual Studio 2008 (Pre-release) duplex contracts behind a loadbalancer

    Hello, Just starting to work on some duplex communication samples. Can someone confirm that this will work behind a loadbalancer Regards, Ruurd Boeke Probably :-) - Most load balancers are configured to return the client to the same server. Though not ideal it prevents a lot of programming issues ( like not having to track session state in a DB ) If you are using a true load balancer im not sure , but my hunch is it may not wo ...Show All

  • .NET Development REMOTING OBJ SERVER CRASH ON CLIENT CLOSING

    Hi All! I'm goin' crazy, I've a remote obj running on a server app, it works fine if I create jut an instance on client and nothing else. In this way when I close it, closing works fine. Matters will come when I use the remote obj, if I call methods when I try to close the client app serverside crash. Server raises the unsafeSystem.Net.nclNativeMethod.OSSOCK.WSAGetOverLappedResult exception. I can't understand why. This doesn't ha ...Show All

  • SQL Server Run report without Login

    Is there any way to run a report via a URL without having the user login Could I provide special parameters on the url or define a user/password in the report itself We do NOT use active directory. Thanks. You can store the credentials needed for the data source access on the report server. Check this BOL link: http://msdn2.microsoft.com/en-us/library/ms160330(SQL.90).aspx Also check the links at t ...Show All

  • SQL Server Addressing Memmory Settings of SQL Server 2005 Analysis Server

    Hi Guys, Here is the situation. Previously, our server have 4 GB memory with SLQ Server 2005 intalled in it. After some time we add additional Memory of 4 GB without reinstalling SQL Server 2005, so we have now a total 8 GB Memory on our server. I'm just wondering if after the additional memory. Did the SQL Server specifically on Analysis Services configuration adjusted its memory setting based on the total memory. It seems to me that the ...Show All

  • Visual C++ C1083 Cannot find file

    Hello, This goes back to VC++ 6; I have a client who has the error: fatal error (C1083) cannot find file; it is a file in a folder on a network; it has been externally linked. There are a bunch of header files but this one it can't find. Any idea why it can't find a custom header Thanks. If the header is in a different directory, you have to specify that path to the header in the project properties, under ...Show All

  • .NET Development Need help on setting up .NET connector for MySQL (was: Hello everybody)

    I'm using vb 2005, with mysql 5.0 with net connector  2.0 provider from mysql.com.   I need that the framework register this connector for mapping tables and generate tableadapters   Please help me ...Show All

  • Visual Studio Team System InstallationError 32000: in SetupWarehouse.exe (Team Foundation App-Data Tier Beta 2 Setup)

    Hello All, After a lot of installation problems installing Foundation Server I cleaned the Windows 2003 Server Standard Edition and started, allmost desparate, all over again. I checked everything and even started reading the installationmanual. I checked the User (TFSSETUP and TFSSERVICE are local Administrators) and  all the services (Analysis Server, Report Server, SQL Server, SQL Server Agentand Sharepoint) and started the installation ...Show All

  • Visual Studio Tools for Office Infopath project under source control/tfs

    In the following scenario, working with VS2005, TFS, InfoPath and Biztalk 2006 in one solution, the following issues occur: - All files (.xsf, .xsd, etc) needs to be checked-out if you only want to edit the Layout of the infopath form - It is not clear how to share the XSD between the InfoPath project and BizTalk (I did not find a way to 'link' the xsd like in regular VS projects) - I find it more convenient to edit the schema in vs 20 ...Show All

  • Software Development for Windows Vista SQL Persistence, Loading Workflows and Workflow Properties

    I have a workflow that has a bunch of properties on it. One of those properties is the name of the user that initiated the workflow (it is passed into the workflow via the Dictionary<string, object> class. I have SQL persistence working just fine (well, I can't figure out how to 'auto persist', so I am manually calling 'Unload' when the workflow idles), and I run through the list of workflow IDs persisted when my application starts up. ...Show All

  • SQL Server synchronize sql server remote database with local copy

    hello all, I am using vb.net in windows form. I have made a module which is connected to sql server 2000. Now, I want to have a fresh copy of the remote database of SQL Server at my local computer and whenever there is change in remote database(insertions,deletion or updation), my local database copy may gets synchronized(i.e changes get reflected in this local copy). Can any one help me If it is possibel by using Vb.net code, it is ver ...Show All

  • Visual C# requiring a override method to call the overridden method

      I'm trying to fiqure out how to require a override method to call the method that it overrode.  for example: public class test { public test() { } public virtual void whatever() { // do something here you don't want to be done even though the class gets overridden // I know its not the way it should be done but I inherited this and have to get it to work } } public class ...Show All

  • Windows Forms Prerequisites??

    Thanks in advance for listening to this dumb question.  When I try to publish with the prerequisites set to  "Create setup program" and  "Download prerequisites from the same location as my application" I get the error message:   "Error 2 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'DotNetFX\instmsia.exe' in item '.NET Framework 2.0' can not be located o ...Show All

  • Software Development for Windows Vista (Beta2) How to bind WF params to activity properties at runtime?

    I have another beta2 question - stems from one of the (many) changes from beta1. Workflows now dont have a concept of 'parameters' as was in beta1 but instead parameters are defined/used just as get/set type of properties on the workflow class/type. In beta1, we would have activities that would bind their properties to WF parameters dynamically like using the following code below executed from within their c'tors: ActivityBind bi ...Show All

©2008 Software Development Network

powered by phorum