Enz0's Q&A profile
Visual Studio SSL
We've recently gotten our SS2005 system running over our intranet using both the Lan and Remote Access Http services. The HTTP service was initally setup without SSL as recommended in the following article... http://alinconstantin.dtdns.net/WebDocs/SCC/_VSS_Internet.htm During our initial attempts to setup SSL (as described in Setting up SourceSafe and VisualStudio for Secure Internet access (HTTPS / SSL) in the article above), Internet E ...Show All
.NET Development vb.net and Access deployment problem
Hi I am working on a project using vs.net 2003 and access database. the problem is that I created a installer and try to install to other computers The installation is succeed on any computer, but when click on .exe file, some computers work fine, but some others just can not load data from access database only the form shows up without the data. Then I change the code a little bit. I use Application.ExcutablePath to location t ...Show All
Windows Forms Still Can not find Microsoft Communications Control?
I am using Visual Studio.NET 2003. I am trying to add the Microsoft Communications Control to my toolbox. I have the "Customize Toolbox" window open, but I do not see an option for Microsoft Communications Control. Please advise what I should do. Thanks. mturnage is correct. Check out this KB article for details. http://support.microsoft.com/default.aspx scid=kb;en-us;318597 ...Show All
Visual C# How can I detect KeyPress?
I want to make a program that could run in the background and detect any key press even when the program is not in focus. It should be able to respond or at least record the key pressed even when others programs are running in foreground. Does anybody have any idea how i can do it Thanks. You need to use low level Windows hooks. But seriously, stealing keypresses or evesdropping on keypresses meant for other application isn't a good ...Show All
SQL Server How to show the current datasource in a report?
I'm using Reporting Services 2000 on SQL Server 2000. I want to show the currently used datasource to avoid troubles when switching between test data and productive data. Is it possible to show the name and/or the description of the used datasource Thanks for your answer, Andreas You could try selecting @@servername, db_name() along with your query. ...Show All
Visual C++ build solution every time
Hi! I have a unknown problem here: every time I want to run my project, VC says that my solution are out of date, even I have cleaned and build or rubuild soluction... Why this happens Furthermore, my project is never actually build, that is, i have done a lot of modifications, but when i run and build the project, my application is like a old version. Why "But... what can i do with VS' bugs " You can now contribute in improving VS a ...Show All
Software Development for Windows Vista Roles and WWF
I've read the articles that Microsoft have published about the new WWF. I saw only in the article by David Chappel a few words about this issue. In People 2 People Workflows one of the major concernes is how flexible is Role resolution and Role assignment works. Where can i get more info about how WWF is going to address this issue Hello Krishna, I'm deriving the class WorkflowRole, and then using it in an EventSink. When the call to the ...Show All
Visual C# How to create a base class windows Form?
Hi All, I wanted to created a windows form with functions that are reusable. For example, creating a function to connect to the SQL server and validate user's name and password or insert record to SQL Server just by calling the AddRecord function. TIA For example, try this: public class BaseForm : Form { public void MyMethod() { MessageBox.Show("Hell ...Show All
Windows Forms Getting data back from a dialog?
Does anyone know how to return data from a form back to the launching form E.g. 1. Form1 launches Form2 with showDialog( ). 2. User selects/types data on Form2 and OK's it. 3. How do I get to that typed data in Form1 I cant provide&nb ...Show All
SQL Server Enhancement: SSIS Designer
Not quite sure if this is the right place for this comment... While using SSIS Designer came across a DUE where the package was setup to: SEQ1 - Truncate staging tables SEQ2 - Load staging tables (sequence container had been setup to hold multiple data flows) For some reason one data flow was run before the truncate table sequence. Looking in the designer it appeared that the dataflow was a member of SEQ2 but looking at the Pac ...Show All
.NET Development Exception with System.Type.GetType(...) function
Hello all, I have a strange problem with the System.Type.GetType(...) function. When I do : try { string maChaine = "System.Windows.Forms.Button"; Type ty = Type.GetType(maChaine, true); } catch (Exception ex) { label1.Text = ex.Message; } An exception raises ; the message is (I translate ...) "Impossible to load the type System.Windows.Forms.Button from the assembly WindowsApplicationXXX, Version xxx, .. ...Show All
Windows Forms Highlight text in MessageBox
If there a built-in message box that let you highlight the text in it (and copy paste it else where) or do I have to build my own The System.Windows.Forms.MessageBox has limited options to choose from. You should implement your own form (pretty simple). ...Show All
SQL Server where is my business integenct projects
Hi all, I have installed reporting services but wasn't able to find the Business Integence Projects while I opened a new project from visula studio.net. Can anyone tell me what I need to do I don't remember any errors or warniings while I installed the reporting services. Does this happen to anyone else Thanks in advance, Are you running BI Development Studio (VS 2005), not VS 2003 If you are r ...Show All
Visual Studio Express Editions Mdiparent - Is this bug solved?
I've an mdiParent (maximized) with X children (maximized). The mdiParent contains a menustrip. I load the children into the parent. The first time when I load a child into the parent, the menustrip hides a part of the child. When I minimize the parent and then maximize it, the position of the child is correct (below the menustrip). The same problem: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=180826&SiteID=1 P ...Show All
Windows Forms Creating a C# Chat Application...
I am wondering exactly how I would create a Chat based windows application using C#. Also if anyone could point me in the direction of any code samples or anything that would be very helpful. Thanks in advance. Well basically the coding side. I'm good at designing graphical interfaces, But coding is my problem area. Every user would get a copy of the message that say I was to type (if they were logged in - The send message button wou ...Show All
