keajatthew'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 Explorer kept prompting us with a security alert dialog every time we navigated to the https address - https://vesta.companyname.ca:81/SourceSafe/VssService.asmx even though it said we had installed th ...Show All
Visual Studio Team System Shipping Beta 2
There's been a rash of speculation as of late that Beta 2 has "slipped" to April [ Microsoft Visual Studio 2005 beta 2 delayed ]. As you can read in this post from the Developer Division Release Team [ In the Home Stretch... ], we still plan to ship Beta 2 by the end of March. That has been the plan-of-record for months. Because it takes time to move from shipped bits to downloadable bits , Beta 2 will probably be available for download during the first week or so of April. The Beta Experience is a campaign being run by the local Microsoft subsidiaries in EMEA. Expect to see Beta 2 released on MSDN and available for o ...Show All
Visual C++ How Can I Change The window color
Good Day. I Want to ask you for an easy way to change the window color on C++ ..IN MFC And Thank You(Donnot give me a Link to MSDN ) Yes. Thank you ..Your Speech is right i should read more.. But the problem was in The class and tructures You can use this if you want eiasnabhan@hotmail.com And Thank you ..I will be more specefic in the Future.. ...Show All
Visual C++ number counter issue
Hello, I am trying to do something simple I hope. Basically I have a counter in a for loop that counts from 1 to 500. for ( int i = 0; i < 500; i++) { cout << i; } when this runs, it displays the numbers one after another like so: 123456789101112131415161718192021223 .....and so on. I would like it to display one on top of the next number and not move one position to the right. So basically, if I slow it down, the user could actually see the numbers being counted out, but they will remain in the first position and not move over to the next position each time it is printed out. Basi ...Show All
Visual Studio Express Editions help-visual C++ error
i really new to programming i took a class in high-school that taugh an easy program(turing) right now im trying to get into programming so i am trying to help the devs of a game. Code: URLManager.cxx URLManager.cxx C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\mswsock.h(69) : error C2065: 'SOCKET' : undeclared identifier C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\mswsock.h(69) : error C2146: syntax error : missing ')' before identifier 's' C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\mswsock.h(69) : warning C4229: anachronism used : modifiers on data are ignored C:\Program Files\Microsoft Vi ...Show All
Visual Basic Converting Julian Time Values
I am a VB6 newbie trying to convert a Julian (1970) value to a standard date and time format. The value I am trying to convert is the number of seconds since Jan 1, 1970. Any help would be greatly appriciated. Sorry, I misunderstood. In VB.Net use the following: The example uses two TextBoxes: tbJulian and tbGregorian and two Buttons: btnConvert and btnExit I've combined the buttons in one click event using the button's tag property to select the proper button when clicked. Public Class frmJulToGreg Inherits System.Windows.Forms.Form Private Sub m ...Show All
Visual Studio Team System TFS - Application Tier Setup Error - 29105
I am working on setting up the applicaiton tier in a dual server TFS setup and I am almost complete with the installation and I am running into an error when TFS is attempting to setup the Reporting Services DB. Both the users I am installing and running the TFS reports service are apart of the Domain Admin group and the SQL Server Service is running under the domain admin account. Is there anything that I am missing Thanks for help in advance! Hi Craig are you using the latest installaion guide (version 8.0) I ran into several problems until I began to follow the installation guide word by word. Just in c ...Show All
Audio and Video Development I need a little help here...
I did not know where to post this, so i posted it here. I am running a Windows 98SE and I only have a 16 bit color thing. I would like it to be better, but I do not know how to do so. I can not get Active X on this comp for some reason, but I would like 256 color. Any help will be greatly thanked. I do not know what kind of graphics or video cards I have. all I know is it is a Standard PCI Graphics Adapter (VGA). I want the 256 color realy bad. Thank you for all of the help. ~Tyler Hi Tyler, The right newsgroup where you should post your question is at http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx ...Show All
Visual Studio Team System Startup error
Can you tell me what the following error means. This error has only started to come up this morning during Team Foundation startup. And I found that the Work Items are no longer accessible. There is plenty of space on my local hard disk and my user account should ahve appropriate permission as I have been work in Team Foundation for several days now. What else can I do to resolve the problem TF30330: Team Explorer cannot write to the project list configuration file. Free up space on the local hard disk. If the problem persists, contact the administrator for your computer to confirm that your user account has appropriate permissions to ...Show All
SQL Server Creating an SRS Report
We've been developing in .NET for some time now, and I'm currently working on a large project which uses a mixture of VB.Net and C#.Net objects. I'm considering the use of SRS instead of Crystal Reports for all the reporting in this system, either way the reporting is fairly straightforward stuff, not really complex reports. Because the reporting is simplistic, I want to use someone who is not a programmer to develop the reports, I have confidence that she can produce the reports as she has done som Crystal Reports in the past. However, I cannot figure out how to develop the reports. It appears that she will need ...Show All
Visual Studio Express Editions Form close and BackgroundWorker
I have a BackgroundWorker retriving data to a report viewer and it takes a minute or so. What should I do for when the user closes the form (MDIChild) during the life of the BackgroundWorker I added BackgroundWorker.CancelAsync() in the formclosing event and it seam to work, but when you exit the application you get an error. The long operation is one statement (long query) so I did not have much of a way to check for cancel. I took out the BackgroundWorker.CancelAsync() from the formclosing event, and now it works fine. I guess by closing the form the BackgroundWorker itself is disposed of so it cannt complain. Than ...Show All
Visual Studio Express Editions Unable to create new project in VB Express Beta 2
I've uninstalled Beta 1 and installed Beta 2 and find that when I try to create a new project I get the following message: Could not find a part of the path 'C:\Documents and Settings\John Cologon\Application Data\Temporary Projects\WindowsApplication1 (Obviously that's if I accept the default "WindowsApplication1" name - if I name the project "Foo" the the last bit changes to "Foo") Any suggestions John Arrg! I have this problem too and the solution you found wont work for me. I want to use VB express! Would you happen to be able to recreate a list of things that you deleted/removed so that I co ...Show All
Visual Basic VB Selecting the lowest Integer
Hello again! The program is coming along great... I have a situation where I randomly generated 4 integers between 1-50 What I want to do next is have the program select the lowest and highest numbers from the 4 different dim integers. Can anyone out there lead me in the right direction thanks! Hi, You could write your own implementation of a sorting routine but a neat little thing I found was that you can use the properties of the List class to do your sorting for you like so: Dim ranGen As System.Random = New System.Random() Dim int1 As Integer Dim int2 As Integer Dim in ...Show All
SQL Server Problem with remote replication
I have a number of dialup users who are trying to replicate against a master database.The first few times worked fine.but now each user is getting the following message "The process could not change generation history at the publisher" Any help or pointers gratefully received many thanks David J. 1) How many days has it run smoothly and end up with that error 2) What is the number of transaction run per day 3) Is this transactional replication ...Show All
.NET Development The conversion of a char data type to a datetime data type resulted in an out-of-range datetime
I am putting the current datetime in a microsoft sql server database in the following manner: System.Data.SqlTypes.SqlDateTime time = new System.Data.SqlTypes.SqlDateTime(DateTime.Now); sql = "insert myTable (datetime) values ('" + (string) time.ToSqlString() + "')"; SqlCommand cmd = new SqlCommand (sql, conn); int result = cmd.ExecuteNonQuery(); the column of my table has datatype DATETIME I tried it 7 times yesterday and today without problem. Now (at 00:45 hours) I get an exception: the exceptionmessage: System.Data.SqlClient.SqlException: The conversion of a char data type to a datetime d ...Show All
