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

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

Finch82

Member List

BobInIndy
Peng Liang
MatthewVincent
Jameslee20
kushpaw
BrentHecht
Chiro
MmeBovary
Soundbyte
GlennZarb
drew_p
Robb Rinard
Stas Kravets
sunny123
progames25
Jim Hough
taumuon
DonMartin
EB78
IanO
Only Title

Finch82's Q&A profile

  • SQL Server Windows integrated authentication - Domain controller

    If my SQL Server authentication is windows integrated authentication, whenever my application makes a connection to SQL server does it contact the windows active directory domain controller to authenticate the windows user account How does windows integrated authentication work in the background http://blogs.msdn.com/sql_protocols/archive/2006/12/02/understanding-kerberos-and-ntlm-authentication-in-sql-server-connections.aspx ...Show All

  • Visual C# Hide/Show form while retaining Info

    Is there a way to load info to a form from a file (ie text to labels,etc.), from that form call another and hide the first only to later unhide the first from an object on the second from. PROGRAM FLOW: 1)Start up 2)Press a button info comes up 3)Press another button to a)hide form1 and b)show form2 4)Do stuff on form2 5)Press button on form2 to a)make form1 visible again and b)close form2 6)Form1 still has info loaded in step 2 I've got everything working but when I make form1.visible = false to make it disappear then make it re-appear through an object in the code for form2 all the info I loaded is now gone. Can this be done Thanks Thomas Hi Blkbird, what is your code to make form1 visible again You ...Show All

  • SQL Server Book

    Hi, Can you recommend a book on SSIS. I am particularly interested in books which demonstrate a particular project from start to finish while going through chapters. Thanks Neither book is based on a case study. If you want a case to study, Project Real is a good start, and includes good documentation. The books stand on their own as good learning and references guides. ...Show All

  • Windows Forms Version Number of ClickOnce application

    I want to display the version number of a Click Once application in my About box. Any ideas on the easiest way to get this It appears to be in the MyApp.exe.manifest file, but I'm wondering if there is a better/easier way I'm guessing there's nothing directly in the framework, as the app doesn't know how it's deployed, but I could be wrong. TIA, Bill Hi, you can take a look at System.Deployment namespace: if (System.Deployment.Application. ApplicationDeployment .IsNetworkDeployed) {     Version version = System.Deployment.Application. ApplicationDeployment .CurrentDeployment.CurrentVersion;     string versionString = version.ToString(); } Note: th ...Show All

  • SQL Server Deployment on load balanced servers.

    Hi, I'm trying to solve the problem with deploying sql code on load-balanced application server. Normally when we put new feature\fix live we take one server out of the loop, than we put new app code, we test it and then we bring it back to the loop. But we've started to have a problem when we had to change stored procedures at the same time to run the new app code, becouse either 'test' server won't work either production application won't work. I wonder is there any good solution for this problem. Regards Piotr. P.S. Sorry for the forum topic but I didn't know where to put it. That was very helpful, but I'm more after stored procedure versioning solution. Sometimes we need old and new code running (part of requests are hitting old ...Show All

  • SQL Server Problem of adding trusted accounts to reporting services: 'Some or all identity references could not be translated'

    Hi I created a new database called "TestReportServer" as mentioned in the installation instruction but I didn't see (or could select) the option "Create the report server database in SharePoint integrated mode". How can I select this option Do I need to remove the reporing services and reinstall it again Any suggestions After creating the database I get the error 'Some or all identity references could not be translated'. The user I selected is a local administrator and has permission to all groups starting with wss. I guess the database is not created as a sharepoint integration mode as I can start Server Management Studio and see the database. Is that a correct assumption I hope somebody out there can he ...Show All

  • Visual Studio 2008 (Pre-release) Security timestamp problem

    Hi, I have a service with "message security". When I try to connect to server I receive this error : "The security time is invalid because its creation time "15/01/2007 13:39:40" is in the future. Current time is "15/01/2007 13:34:27" and allowed clock skew is "00:05:00" The date/time in both (Client and Server) are same and isn't "13:" but "10". In the server is "en-US" and in the client "pt-BR" so GMT -3 is correct from client but I'm using the same date/time in both. Why WCF uses it if we can connect from diferrent culture with diferent data/time In others computer all work fine...one using "pt-BR" and other "en-US". ...Show All

  • Visual C++ Enabling / Disabling property for MFC controls.

    hello!! The problem that i am facing is that, in my form i have used many controls and they need to be disabled and enabled at various points in the program execution. for eg: ****************************************************************** void CUniversalLoaderDlg::On Start Btn() { //have to disable "Start"(so that start can't be clicked again during processing) } ****************************************************************** I have tried finding out this property in local MSDN installed on my system as well as online MSDN, but couldnt find anything. Please help me with this problem. Must be an intellisense bug. It is derived from CWnd which has EnableWindow. Just try to compile the co ...Show All

  • Visual Studio Express Editions what is the problem? that program!!!

    class PointF { public PointF() { } public PointF(float x, float y) { m_x = x; m_y = y; } public static float GetLength(PointF pF1, PointF pF2) { return System.Math.Sqrt(System.Math.Pow(pF1.m_x - pF2.m_x, 2) + System.Math.Pow(pF1.m_y - pF2.m_y, 2)); // what is the problem!!! } public static PointF operator +(PointF pF, SizeF sF) { return new PointF(pF.m_x + (float)sF.Width, pF.m_y + (float)sF.Height); } public static PointF operator +(SizeF sF, PointF pF) { return new PointF(pF.m_x + (float)sF.Width, pF.m_y + (float)sF.Height); } public static PointF operator -(PointF pF, SizeF sF) { return new PointF(pF.m_x - (float)sF.Width, pF.m_y - (float)sF.Height); } public static PointF ...Show All

  • Visual C# Share data between multiple application instances

    Hi! Do you know any way to share data between multiple application instances without buffering it in a file or a database (like a static class) Thanks! Hi, You can choose one of the following: 1) Remothing 2) Shared memory (unsafe). 3) Create a window service/com+ application to hold and supply the shared data 4) database/file/xml/exc.. my recommendation is 4 because it is the simplest one. Hope this helps, guy kolbis ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to defiine line width

    I draw objects using "LineList" primitive type. How can I define line's width Read my answer in your thread: " Can't draw line " ...Show All

  • Smart Device Development Defines in C#

    Originally I am from C++. I got really used to #define. Does this behavior carry over to C# No. Preprocessor is pretty much gone from C#. Defines in C# are only good for conditional compilation. You can use external preprocessor if you want though. ...Show All

  • Windows Forms DesignMode disable selecting control

    Hi together, I have an application which can be set in design mode while running. Now I have the problem that I don't want the user to select several control in design mode. Regarding I have two button on the design surface ("A" and "B") I don't want the user to be able to select button "A". How can this be done Do I need to get a special service from the DesignSurface class, or has this to be done in the control (in my case button "A") itself. I have seen there is a ISelectionService, but as it seems there is no way to disable a selection of a specific user control. Any help would be great, Cheers, Franz i was not able to get what you're trying to accomplish. you d ...Show All

  • Visual Studio Express Editions Array Assistance

    I have a couple of textboxes for user input. They will put in the number of answers to a specific question. For example TextBox1.Text they enter in 7 for "yes" TextBox2.Text they enter in 4 for "no" So I need to get the answer values into an array. Textbox1 value is "YES", Textbox2 values is "NO" So I need an array that would be "YES, YES, YES, YES, YES, YES, YES, NO, NO, NO, NO" Could someone point me in the right directions. Thank you I have to say I don't really understand what you are trying to do, however if you want an array to hold just the two "values" Yes and No then a boolean array might be sui ...Show All

  • Visual C++ C++/CLI Best Practices: .h versus .cpp files

    Hi, I find it mildly unsettling that Visual Studio 2005 seems to put much if not all code for a generated C++/CLI class into the .h file. Shouldn't most of the actual code for a class be written to the .cpp file with the .h file being left for declarations alone Is a new convention forming that suggests otherwise For you folks already programming in C++/CLI, how do you decide what code goes into what files Thanks...Joe "Is a new convention forming that suggests otherwise " No. C++/CLI works much the same as standard C++. It's just the designer that places code in the header file and this is most probable caused by a designer limitation (think that C++ is the only language that has this header/source file d ...Show All

©2008 Software Development Network