Ltrs Zariyuco's Q&A profile
Visual Studio Express Editions creating a .exe File
Hello, i have a really simple question, I’m a noob on Visual Basic. Can I create .exe Files with Microsoft Visual Baisx 2005 Express Edition greetz steverino Hello Steve, yes you can. See this page for more info about what types of projects you can create in VB Express: http://msdn2.microsoft.com/en-us/library/b4z62wxz(en-US,VS.80).aspx Console applications and Windows applications produce an executable file (.exe) HTH Antoine Visual Basic team ...Show All
Visual Studio 2008 (Pre-release) PropertyChanged event not fired
I have a class where I have implemented the INotifyPropertyChanged as below: public class Shape : INotifyPropertyChanged { private Type _shapeType; public Type ShapeType { get { return _shapeType; } set { _shapeType = value ; this .OnPropertyChanged( "ShapeType Changed" ); } } #region INotifyPropertyChanged Members public event PropertyChangedEventHandler PropertyChanged; private void OnPropertyChanged( string propertyName) { if ( this .PropertyChanged != null ) { this .PropertyChanged( this , new Proper ...Show All
Visual Basic Accessing a running program's ram
I want my program to access a program's ram (when the program is running in memory) so I can debug it explicitly. I know how to edit a file by storing it in a buffer but how would I do this when a program is running. If suggestions or code samples are given, please make sure they are for vb.net and they are explained. Thanks. Hi! Access memory Your program access it's memory. Access to other program's memory is protected for security and stability reasons. If you want to make this you need a lot of reading about virtual memory, kernel, Win32 API, etc. What do you want to read in this memory There is no list of internal object ...Show All
Visual Studio Performance in VS vs. outside it
I have a pretty small test program using Windows Forms and one unmanaged function. When I run it in release mode inside VS 2005 it takes about 9% CPU. When I run it outside VS, it takes 2% CPU. Why would running inside VS take so much more CPU time Only a profiler can really answer your question. One possibility is that your application produces a lot of debugging events. Example of debugging events: Throwing/catching exceptions Outputting debug strings (traces) Creating/destroying threads Creating/destroying app domains Loading/unloading modules ...Show All
Visual C++ Exporting Function
Hi all How would I go about making a dll that can export some functions in C++ 6.0 (btw Im new to this) From Luke Take a look at http://msdn.microsoft.com/library/default.asp url=/library/en-us/vccore/html/vcconImportingExporting.asp . Also if you are new in using the VC++ products, I would recommend using VC2005 since the official support for VC++6.0 already expired. Thanks, Ayman Shoukry VC++ Team ...Show All
SQL Server Connecting to a web based MSSQL DB
Hi all, I'm running a MSSQL DB on our web server and currently I need to use Teratrax Database Manager to connect and manage it. Unfortunately this doesn't seem to have any features to export the data from the database. I read somewhere about an online MSSQL tool which can manage online databases Does this exist What tool would I use to connect to my database to export data from it I have an evaluation copy of MS SQL Server 2005 but my knowledge with it is limited and I'm having trouble getting it connected to a remote DB (local DBs are fine). Any help would be appreciated! Thanks! Hi, alt ...Show All
Visual Studio Team System Error while generating 'Quality Indicators' report
Hi there, I'm getting the below error while generating 'Code Coverage Details' report for my Team projects. Any idea anyone Thanks, Anu An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'DataSet'. (rsErrorExecutingCommand) Incorrect syntax near '{'. Hi there, I'm getting the below error while generating 'Remaining work' report for my Team projects. Any idea anyone Thanks, Anu An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'WorkItemTypeWorkItemType'. (rsErrorExecut ...Show All
Smart Device Development Visual Studio 2005 Beta 2 - Emulator problem
Hi! I've got a problem and wonder if anyone else has it (and has resolved it ) My problem is as follows .. I create a new device application and try to run in in emulator.. the emulator starts just fine, but it won't connect to it! At all! The error is "Connection failed. The system cannot find the path specified." Thanks in advance, Tadej I had the same problem so from a previous tip for vs.net 2005 beta 1 I added the service Virtual Machine Network Services to my network connection. I still got the same error so then I saw this tip and deleted the CoreCon directory and it worked fine. (I tried removing ...Show All
Windows Forms Sample Code: TreeGridView - collapsing/expanding DataGridView
I've just started a blog and the first main post is a sample that I wrote to customize the DataGridView to support collapsing and expanding. I call it a TreeGridView: http://blogs.msdn.com/markrideout/archive/2006/01/08/510700.aspx Let me know what you think! -mark DataGridView Program Manager Microsoft This post is provided "as-is" fair enough.I really like your control,any advice on adding the ability to add rows thanks anyway for making this available ...Show All
Visual Studio System.MissingMethodException: Method not found: 'Microsoft.Office.Core.CommandBarControl EnvDTE.Command.AddControl
Hi, I'm trying to add a command into a commadbar, I believe the code is correct but when i run the code i get the following exception: Exception recieved System.MissingMethodException: Method not found: 'Microsoft.Office.Core.CommandBarControl EnvDTE.Command.AddControl(System.Object, Int32)'. Anyone know why We need a bit more context. What OS, what SKU of VS, what SDK version What are you trying to do, and please show the source thats failing ...Show All
Visual Studio Team System Team Foundation Server MSSCCI Provider Beta 2 Now Available (Feb 20, 20006)
The Team Foundation Server MSSCCI Provider Beta 2 is now available here . IMPORTANT: Beta 2 is not strongly signed, so you'll need to disable strong name validation as mentioned in the README. You can find details at http://blogs.msdn.com/buckh/archive/2006/02/21/536260.aspx . New in this beta: Support for Visual Studio 2003 and Fox Pro in addition to the already supported VB6 and VC6. Integrated Checkin - you can now associate/resolve bugs and specify checkin notes with your checkin Improved performance - opening controlled solutions, get, checkout, checkin, and compare/diff are much faster M ...Show All
Windows Forms TaskVision client destroyed my PC!
I've decided to repost this message as separate thread cos I don't think it's getting the attention I deserves. Here's the problem... I installed the TaskVision client about a week ago, and immediately after started noticed weird things happening to my PC - suddenly lots of application were missing files. I checked the Program Files folder where they wer ...Show All
Windows Forms can anyone help me in solving this problem?
hello i have made a database in sql server 2000,one of the fields(named Result) of a certain table can contain one line or multiple lines of data,i have made a crystal report which takes this table and display it,but i have a problem how can i make the field in the crystal report which displays the field(result) takes one line or multple lines&nbs ...Show All
Windows Forms Anyone know where to get custom skins?
I would like to add some custom skins. Anyone know where to get them Thanks PThomas@Corillian.com Consider enabling script access for the folder that holds your update files (e.g. 1.0.0.1) in iis. Most of the times 403 (forbidden) is a result of appupdater trying to download .config file which iis does not allow it to download unless script & ...Show All
Visual Studio 2008 (Pre-release) Cider Designer Problem/Bug
Hello When i create a new WinFX Windows application i can't switch to the designer. I get following error: "Could create a instance of type window". This is new windows application without any other controls on it. Can someone help me out Kind regards Dieter Hi Dieter, Without more information (such as a call stack you get by attaching another instance of VS and catching exceptions), every indication is that you have some mixed/wrong WinFX versions installed. Troubleshooting a WinFX installation is beyond the scope of this forum, but if you search the web for "winfx install uninstall gac" you'll find ...Show All
