Goncalo Ferreira's Q&A profile
Visual Basic Where to find BASIC help after downloading and installing Express with small option
I thought I remembered being asked if I wanted to download a monster help file and since I wasn't sure about Express, I said no. Now I have used it for a while and want to avoid the online help - where do I find it Other learning resources can be found here: http://msdn.microsoft.com/vstudio/express/vb/learning/default.aspx The only place I saw to download the express MSDN library was with the express products...Download it again: http://msdn.microsoft.com/vstudio/express/vb/download/ Full Installation: 1.3 GB Also includes MSDN Express Library 2005 and Microsoft SQL Server 2005 Express Ed ...Show All
.NET Development Need Help, How to read the xml?
i have a xml file that contins context like: <cases> <case> <id>2</id> <operator>abc</operator> <saved>0</saved> <Exectors> <id>2</Id> <t>1</t> <name>abc</name> <telephone>1234</telephone> </Exectors> </case> <!-- more case node --> </cases> Each case node of the xml file contains two tables (case,exector ) . How can i save the contents to related table i think that you knew what i said! thanks. What data structures are you using for storing tables DataSet ...Show All
Visual Studio Team System Working folder already in use by another workspace on this computer
I am getting this message on a computer on which there are no other workspaces for that computer. In addition, all of the working folders have been deleted for the workspace that I am working in. We do occasionally log into that box with another user name, but there were no workspaces defined under that login either. (Besides, can't we see all the known workspaces if you log into TFS as admin anyway -- BTW: I don't particularly like that "feature" under the standard workspace editing location for admins because its easy to grab the wrong one.) You may want to try running "tf workspaces /server:[ser ...Show All
Visual Studio Installation problems!!!! Please Please help!
Hi i dont know if im in the right part of this forum but here goes. Im trying to install .NET framework 2 on two pcs. On the first pc the install is nearly at an end but then it just quits on me. On the second i get the erroe message "Windoes installer cannot be accessed" Im running XP Pro on both pcs. Can anyone please help me Thanks. Machine 1 - is a virus checker on there If it is, unplug your network, disable it, and try the install again. Machine 2 - go into your services and start/stop your windows installer service. then reboot. ...Show All
Windows Forms Extending MenuStrip and ToolStripMenuItem
Greetings! I need to create MyMenuItem inheriting from ToolStripMenuItem, add a private variable to the class and a property with get&set accessors to return the value of the variable. Now I need to create a MyMenu class inheriting from MenuStrip so to make available to add MyMenuItem to MyMenu as menu items in design mode. May be the inheritance for MyMenuItem should be from some other class, but I hope you get the idea. How this can be implemented Thanks, truetype If you need to add one propery, use Tag property that each control has, and may hold any item you need, anyway, just override the To ...Show All
SQL Server Connectivity Issues in AMO
Hi, I am using AMO to connect to SSAS 2005 and programmatically create objects. currently I am specifying only the ServerName in the connection string. Please see the code below: <code> Server SSASServer = new Microsoft.AnalysisServices. Server() ; SSASServer.Connect ( "DataSource=" + ServerName); </code> The above code works fine and I am able to connect. Now I want to provide the instance name of the server and also the server name. because tomorrow we will have multiple instances of Analysis server running on the same server. I read somewhere that we need to specify ServerName\InstanceName. S ...Show All
Visual Studio Express Editions making the program starting with windows via registry
Hi there. I have a question. I want to make an Option in my application so the user can decide if it should be put into the startup folder. so, how can i write into the registry, or create a shortcut into the startup folder - and how can i delete it, if the user uncheck the option I already opened a thread like this, but i forgot that the english name for the startup folder is different from the german one ( autostart ) which may cause irritations.. Ken Tucker wrote: If your place a registry key in HKey_LocalMachine\Software\Microsoft\Windows\CurrentVersion\Run the program will start with windows. Public Functio ...Show All
SQL Server Command line action still not supported after installing sp1
Why is the command line action still not supported after installing SP1 in the SQL Server Business Intelligence Development Studio What command line functionality you are looking for from BI Dev Studio Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
Visual C++ Why is strdup() deprecated in VS 2005?
< hyslopc@discussions.microsoft.com > wrote in message news:9a93850c-505b-48c3-bd60-44625db8bbc6_WBRev2_@discussions..microsoft.com ... This post has been edited either by the author or a moderator in the Microsoft Forums: http://forums.microsoft.com You may not care about it, but I do. I don't want to disable the warning because I think the concerns with most of the deprecated functions are very valid, and only wished Microsoft had done this a long time ago. As such, I have taken the opportunity to change a lot of my code to use the new functions. The problem ...Show All
SQL Server Shredding recordset object var in ForEach loop (problem)
I have a package that starts by loading a recordset into an object variable. The recordset is then enumerated with a ForEach loop. The loop sets some string variables. Within the loop container I have a Script task that uses a MsgBox to show the results for testing purposes. The package uses checkpoint restart (if that matters ). The first time I run the package the 1st record is displayed in the MsgBox, then the 2nd, but then the loop is stuck on the 2nd record forever. I break the run, and when I rerun it the 1st record is displayed followed by each subsequent record correctly and the package completes successfully. Now, if I were to r ...Show All
Visual Studio Express Editions develop windows service
Hello, i would like to develop a windows service with vb express. Is this possible with express or do i need a another version Has someone samples DiDi Windows service projects are only supported in Visual Studio 2005 Professional and above. It's probably possible to use the Service Control Manager API directly to create services even with the Express edition, but I'm not aware of any sample code that demonstrates this. '//mdb ...Show All
.NET Development Simple solution
Hi, my .NET-application uses a .NET-Assembly which seems to create some problems: When I click the X-button of the window of my app, the window hides but the programme doesn't end. I tried to get arount that by using this code: private void MyForm_FormClosed(object sender, FormClosedEventArgs e) { Application.Exit(); Thread.CurrentThread.Abort(); } The Assembly mentioned above works asynchronously and has some events, which are triggered periodically. And this is, why I get a System.InvalidOperationException (Can use Invoke or BeginInvoke only when window handle is created) occurs, when I close the window, when I don' ...Show All
Smart Device Development About MainMenu
I've created a MainMenu object, added buttons, events etc. But this menu isn't showed while running on my HP Ipaq h2210. In form designer it is showed under the form. I've found no methods for showing or smth like this. How can I access it P.S. ContextMenu is clear: it is binded to Control and Point... Usage of MainMenu is incomprehensible for me. Help please and Thanks :) I've found out this problem. May be it's a bug, but I've done this: 1) First I've created a ToolBar on the form. 2) Then I've created a MainMenu and filled it with some buttons. 3) Finally I've deleted the ToolBar and MainMenu has remaine ...Show All
Windows Forms Databinding a class with DataGridView
I have a databindingsource object whose target is a DataGridView. _PDList is a list of PresentationData objects that have Properties for each data item. _PresentationDataBindingSource.DataSource = _PDList; When I declare a binding source for my DataGridview the grid column names display the properties from the class. This was expected behavior. But the problem is the names that get generated for referencing the columns in the DataGridView are a concatenation of the property in the class and the type of column it is. For example, One of the properties in my class is called SampleRate. When I bind to the DataGridView the column name i ...Show All
Visual Studio Express Editions Hey Help me please
Thanks to traxer_x I got what I was missing without the tear down and with out putting 60 pages of code over the internet but I am sorry for my mood swings I had so much going on I just needed to step away from the problems of life and focus on the task at hand. I apologize guys but that I know isn't enough. Thanks anyway for your help Stacy, this is a web forum. These forums have rules, for the benefit of those people who use them in the manner that is intended. It is the job of moderators to tell people when they post off topic, so that the forums can function as intended. In fact, a moderator can ...Show All
