Joel_F's Q&A profile
Visual Studio Team System VS.NET 2005 Version Differences
Currently I am using a trial of VS.NET 2005 Team Edition that I got from MS. My trial is running out soon, and I need to purchase the software. I'm having trouble however figuring out which version of the software I need to get. Can anyone tell me the difference between "VS.NET 2005 Pro" and "VS.NET 2005 Team Edition" Also, the version I got included SQL Server 2005 which I need, do both of those versions have it bundled with them Lastly, most versions that I see come with an option to get a MSDN subscription. Is this necessary Sorry for all of the questions, but I am having a lot of trouble deciphering the MS site. Thanks, Russ Thank you for the information, but I'm sti ...Show All
Visual Basic contextmenustrip not shown
Hi, In my application i am using old AxMSChart control. I am using VB.NET in Visual Studio 2005. In the application I added a ContextMenuStrip menu and added one help item in it. I assigned the contextmenustrip properties of many control with this newly added contextmenustrip instance. On right click of many controls like label etc the context menu is shown. But incase of AxMsChart instance the right click doesn't show up the context menu. Then I tried to show the Contextmenu strip explicitly on the chart's right click event (mousedown), but its sourcecontrol property is not set as expected as in case of other controls. I am unable to fix the problem. Is it due to legacy chart control or due to some of the missing settings - Ab ...Show All
Windows Forms How to make certain variables global to all forms? (C#)
I have this problem.. my main form class (MainForm) declares some variables that should be global, in a sense. Let's say my app, at startup, loads a bunch of user data.. into a list (List<UserInfo>). I want that list available application-wide. So if a preferences dialog opens up, and it needs to populate a ListView with that List<UserInfo>, it can. What is the best way to achieve this, in C# Hi there, Assuming you meant using Model-View-Controller (MVC) then I'll give you the quick 10 cent tour. Basically, your data abstraction, i.e. non-user interface type, exposes some (or all) of the data to interested parties and to notifiy those parties when the data changes. This is the Model part of MVC ...Show All
Visual Basic Developing on different machines - problems with dll's & interop toolkit
Hi All, I'm trying to use the toolkit, but I'm having some problems. I use VB.NET (vs2005) on my laptop an VB6 in a virtual PC on the same machine. I've installed the toolkit on both the laptop and the VPC (see other posting of me), so the HelloWorld example workes fine.....but my own app isn't I created an VB.NET class - app (called imageviewer, with 1 form: imageviewerform) and I let the toolkit create the com-wrapper. If I build this, no problems...and if I look in (add) References / COM-tab, I see my Imageviewer.dll. So I copied the whole directory to my VPC, copied regasm.exe to the bin/release directory and runned regasm imageviewer.dll (and I got the message 'types registered succesfully"). If I however try to add ...Show All
Visual Studio Express Editions Web Form Tpye Program
Hi, Im new at programing and I'm making a program and I want to add a "help" feature. I want it to have a "web forms" type look where you answer question(s) in 1-5 textbox's. Then have that string sent to me somehow. I don't want the user to have to type an e-mail, they would just the textbox's inside my program. Please help, -Josh Sorry for being a begginer and idiot, but whats a SMTP Server I looked at the first post and it looks like it will work if I find my SMTP server thing. And the second post is for VB 2005 and it has many errors in VB express 2006. ...Show All
Windows Live Developer Forums IE7 Crashing because of Windows Live Toolbar
Hi All, Not sure if anyone else has seen this. I've got IE7 running on a brand new machine (version 7.0.5730.11) and I've installed Windows Live Toolbar as I've had it installed on previous machines. However, whenever the Windows Live Toolbar is active and visible, if I click to open a new tab in IE7, it crashes. Any ideas anyone It's pretty annoying, and the Yahoo Toolbar that's also installed causes no problems. Cheers for any assistance I have had the same problem however, i have confined it to the Form fill. The tool bar itself works fine, it seems that it only causes problems when you try to use the form fill portion. If you like the tool bar, Uninstall it, then reinstall and make sure that you don't use the form fill. ...Show All
Visual C++ Which One(Managed C++ or Native C++)
Hi everybody i am starting a new project and i ma in doubt about my programming language, should i use native c++ managed c++. i should use following thing in my project: wlan communication. direct input. direct show ( previewing) direct sound (capture wave) using usb. so know please tell me which one give me more freedom to do my project. I didn't read any C++/CLI book, just learned it using MSDN and CodeProject articles. I know that there is new C++/CLI book: http://www.manning.com/sivakumar/ I didn't read it, but I read Nish's other book and many articles, and can guess that it is good. The best sample which contains C# - C++/CLI - C++ code is this: http://msdn.microsoft.com/msdnmag/issu ...Show All
Visual Studio 2008 (Pre-release) Listview memory leak :-\
I think listview have a memory leak since my application keeps eating memory... I'm making a little task manager which updates itself each 1 second. I bind a bindingList to a processView processView is a listview. blprocesses is bound the processView listView blProcesses = new BindingList<Processes>(); processesView.ItemsSource = (IEnumerable<Processes>)blProcesses; Here is the xaml i used for the listview <ListView DockPanel.Dock="Top" Name="processesView" Loaded="on_processViewLoaded"> <ListView.View> <GridView AllowsColumnReorder="True" ColumnHeaderToolTip=& ...Show All
SQL Server Problem Connecting to remote sqlserver 2005
Hi I am having a problem connecting to SQL2005 through a package remotely. if the db is on the same system , the package is running fine. But when i try to connect to a remote db, i get the following error Failed to acquire connection "[DBName]". Connection may not be configured correctly or you may not have the right permissions on this connection. I have already allowed remote connections on the db server using the SQL server surface are configuration utility. Can any body tell me the issue. Umer You will have to check the permissions on the remote server for the user that you are using. Also one good proctice is to use the ODBC connection tools in the admin section on the server and try to make a con ...Show All
Windows Forms Can c# perform a CTRL+V
Hi all How can i get my program to perform a CTRL+V. (paste from clipboard) Thanks. Lars I must be having a bad day, because i don't understand how this works. Can i use ActiveControl do determine which textbox i am in Can you give me a sample code Lars E. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. FocusWindowHandle to Control?
I am converting some MDX code to XNA and ran into this issue. My old code used Device.CreationParameters.FocusWindow to get the control that the device was associated to. XNA instead provides the FocusWindowHandle. Am I able to convert the handle back to a control some how Thanks The Control class from WinForms has a static method called FromHandle that returns the Control associated with a window handle (assuming that there is such a control, window handles can be created by native code and then there are not WinForm controls associated with them). ...Show All
Visual Studio 2008 (Pre-release) Linq WMI Implementation? Custom Implementations?
Anyone know of any work around a Linq WMI implementation I know that it *can* be done - just wondering if it *is* being worked on by anyone Also, does anyone have any pointers if i wanted to write/prototype an implementation myself Say i wanted to write something that worked against ADAM, where should i start many thanks, Steven http://stevenR2.com Hi, Emile Bosch is working on the "LINQ to WMI" provider. You can find more information here: http://bloggingabout.net/blogs/emile/archive/2005/12/12/10514.aspx If you want to implement your own provider, you'll have to work with expression trees. You need to be able to traverse expression tree which you can get from the query and tran ...Show All
Visual Studio Express Editions remote database
Hi People! Please, HELP ME! I use Visaul Basic express edition and I want to connect to remote microsoft access database. 192.168.54.106 with computer about this IP I want to connect Data Source=C:\software\software.mdb strConString = "Provider=MS Remote;" & _ "Remote Server=http://192.168.54.106;" & _ "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=C:\software\software.mdb;Persist Security Info=False" This code doesn't work I' am waiting for answer I will be very grateful nobugz wrote: Hey DMan1: almost missed that one too. Why don't you let the thread start mark answers You ca ...Show All
SQL Server [Microsoft][ODBC SQL Server Driver][Named Pipes] ConnectionWrite (WrapperWrite())
Hi, I got the error message "[Microsoft][ODBC SQL Server Driver][Named Pipes] ConnectionWrite (WrapperWrite())" from my VB6 application that connects to SQL Server 2000. How to fix this ...Show All
SQL Server Expression for visibility of a chart
Hi, I wrote the following expression in the visibility(Hidden) property of a chart. =Iif(DateDiff( "Hour" ,Parameters!StartDate.Value ,Parameters!EndDate.Value)< 24, False , True ) And it is giving me the following error. An error occured during local report processing. The Hidden expression for the chart 'chart1' contains an error: Argument 'Interval' is not a valid value. What is the problem Sincerely, Amde Is the report parameters' data type defined as DateTime Try this: =Iif(DateDiff("h", CDate(Parameters!StartDate.Value), CDate(Parameters!EndDate.Value)) < 24,False,True) -- Robert ...Show All
