Jeffrey K. Ericson's Q&A profile
Visual C++ mfc70.dll not found :(
Gday when I used one of my programs it said I need MFC70.dll cause it was missing so I need a download link to download it. Thanks mfc70.dll is part of VS7.0. How did you build this application If you built it with VS7.0 then you will need the dll in the same location as you are running it. If somebody else built it then you need to contact the owner of the application. Thanks, Ayman Shoukry VC++ Team ...Show All
SQL Server Variables - Changing Scope Once created
If I have created variable and have written expression etc and then I have realised that I have created it in the wrong place. For example I have created the variable inside Package scope instead of Foreach Loop scope. Yes I know it is my mistake. Do you think it would be nice to have a feature to change the scope from Package to Foreach Loop Maybe a drop down list I am sure there is a reason behind why it was done like this. I would appreciate ...Show All
Visual Studio Team System TFS minimum system requirements
When I install TFS Beta 3 in Dual server config both the App server and the Data server are giving a warning about memory and disk space. What values are they checking for Both systems are running as virtual server client machines configured with 1GB RAM and a 16GB fixed size SCSI hard drive. I found information on recommended requirements at the beginning of the install guide... Is that what the installer is comparing the system t ...Show All
SQL Server classes Vs structs
Hi All i want to know for passsing the data between layers in my application ,is it better i use class or struct acoording to advantage and disadvantages of them ,and i dont need to serialazation of data or hierarchy that only class have these advantages ,whic one is better to use thanks It depends on your requirements. It is hard to say one way or the other. You should probably redirect the question to th ...Show All
Visual Studio Express Editions Filter Won't Take Variable Or Am I Missing A Quotation Mark Somewhere??
Hi, I have a section of code that basically should apply filter to my data set that is bound to a listbox. Applying the filters works great for every one that uses a string for a filter, for example... If e.Node.Text = "Operating System" Then Me .lblTopic.Text = e.Node.Text MyBindingSource.Filter = "Topic='Operating System'" End If But I have one section that the filter will be based upon the hard drives on ...Show All
Visual Studio Express Editions ummm so what's the catch?
I just ordered the Visual Studio 2005 Upgrade edition from Amazon a few days ago, which cost me a whopping £430. Now I find that Express is being released for free It doesn't state the differences between the versions anywhere on the site (at least not that I can find) - so have I just wasted my money Express doesn't include a lot of features, from the ability to add source control, to unit testing, to Class D ...Show All
Windows Forms What's up with the stats page?
Not that it's been all that exciting to look at lately, but what happened to the chart on the stats page Well, this is no good, now is it I'll take a look and see what I find out. ...Show All
Windows Forms Showing a Form when the Form name is a String
Hi, Pretty new to VB.net, although I have some experience of VB5. I can show a form in the example below: Dim frm As New Form4 frm.Text = strFormTitle frm.Show() however is it possible to replace Form4 with a string&n ...Show All
Visual Basic Desktop app needs data from web server
Hello everyone, I have a desktop app that needs to grab some data from a table on a web server as well as grab the date/time from the web server. I have looked into using a web service to accomplish this but I'm not sure if there is a different or more efficient way to do this. I'm also having trouble finding a good tutorial for setting up a basic webservice that a desktop app can connect to and utilize so if someone could point me to ...Show All
Visual C# Is it possible to use .NET controls to VB6.
Hi, Please any one tell me is it possible to use .NET controls and libraries [ created by C# ] to VB6. If so can you tell me the way and some useful existing articles regarding this query. Thanks, Yes it is possible to call .NET assemblies from VB 6.0. You need to create a COM interface to .NET assemblies by using RegAsm and generate a type library file. Refer this MSDN article for a detailed explanation http://support.microsoft.c ...Show All
Visual Studio Team System Get all changesets number that linked to work items
Hi, How can I get the list of all the changesets that linked to a specific work item with the API Thanks, Michael. It maybe something like this: for (int i = 0; i < workitem.Links.Count; i++) { Link link = workitem.Links ; ExternalLink elink = link as ExternalLink; if (elink != null && elink.ArtifactLinkType.Name == RegisteredLinks.Changeset) { Console.WriteLine("{0} ...Show All
Visual C++ Toolbar and Menu background colour
hi Could anyone please tell me a way to change the default vanilla colour background colour of a menu and toolbar to another colour. I have seen some owner draw functions, where people have changed the background colour but not for the entire bar, i mean right from one end to another. If i could get the DC object for the entire bar somehow i could be able to do it, maybe. Any kind of help would be much appreciated. Thanks Abhishek De ...Show All
Windows Forms How do I force controls to repaint during a loop
Can anyone tell me how I make sure controls are repainted during a loop I'm trying to slide a groupBox outside the window like this (and back in again later on): while ( groupBox1.Left < 800 ) groupBox1.Left++; I need to make sure all contained are repainted in each loop, to make the animation look smooth. OR - is there a better way to do this Thanks for your help, Mikael And a nice long delay so you can actually see it m ...Show All
Visual Studio Express Editions Data Sources window doesn't display sources
It creates the xsd file. Also, in code windows (such as Form1.cs), I can see the sources I created. the problem is that the windows is not active in design view (such as Form1.cs[Design]), and I can't see the sources. The result is that I can't drag and drop a resource (for example to automatically create a multiple textbox's form which is bound to BindingSource). Is it just me I had the same issue. Check t ...Show All
Visual Basic getting text from one form to another
i know similar posts have been made based on this topic but i havent grasped this concept yet. i need to get text from my form2 to my form1. my program is my own version of a calendar and this is what i need to get my events put in the correct dates. The Date object is a numeric up down that selects the date of the event that is entered in a TextBox and I need the data in this box to go to the label Jan1 in form1, which is my problem, when an "O ...Show All
