ElCapitan's Q&A profile
.NET Development deployment of vb.net app and access database problem
Hi I am working on a project using vs.net 2003 and access database. the problem is that I created a installer and try to install to other computers The installation is succeed on any computer, but when click on .exe file, some computers work fine, but some others just can not load data from access database only the form shows up without the data. Then I change the code a little bit. I use Application.ExcutablePath to locati ...Show All
Visual Studio 2008 (Pre-release) Method parameters
Hi, i would like to know what the parameter replacing the StartingUpCancelEventArgs is in the latest version of C# or the Winfx feb ctp really. I'm reading a book based on an earlier version clearly. The method is: void AppStartingUp(object sender, StartingUpCancelEventArgs e) { ..... } Intellisene has not a hit at the second parameter, and instead it gives the alternatives StartupEventArgs and StartupEventHandler ...Show All
Windows Forms Raising Events / Copy - Paste
I have a main menu in my form class with Edit->Copy and Edit->Paste. I assigned the normal shortcut keys of Ctrl+C and Ctrl+V to these menu items. However, the Form that gets notified when these events fire can't really handle the events. I&nb ...Show All
Visual C++ Add a custom warning
Hi, I want to know if this is possible to add custom warnings for specific projects or solutions. I want to display warning messages when compiling/building projects or solutions because a specific function has been used. For example, if I use function X, I want the compiler to generate a warning saying: This function should not be used, or something like that. Thanks AFAIK, no way. I have never ...Show All
SQL Server problem with XATransaction
Posted: Mon Jun 5, 2006 07:22 AM Post subject: Re: Problem with Lookup XADataSource ...Show All
Windows Forms Last Position Code Editor - navigational feature
VB6 code editor provided Last Position navigational feature, is that available in VB.NET Thanks ...Show All
Visual Studio Open a C++ header file in custom project crashes VS2005
We create a custom project type in C++/COM. There are some C++ header file in our project. When open them from our project, after click the the type or member combo box on the top of teh editor window, VS2005 crashes. As I understand, the combo box should be provided by C++ language service and should have nothing to do with our project type. But directly open the header file from file->open menu works fine. I also tested with the IronPython ...Show All
.NET Development .NET Security Permissions
Hi All, I have some code that I wrote a while ago that is a file browser. I use the call Environment.GetLogicalDrives() to return the drives on my computer. This code used to work, but with the new framework I am not getting "Because of security restriction the type ... cannot be accessed". How do I give my application the sufficient permissions it needs. Here is my code to get the drives: public str ...Show All
SQL Server Export Schema and Data
This is a totally newbie question, but... I've create a database, I'm able to script the schema to a query window, file, etc. I can't for the life of me find out how to export my data so that it is scripted into insert statements. The data is standardized lists of data I will be distributing with the DB. For those of you familiar with mySQL, this would be the output of the mysqldump command which dumps schema and data all into one file ...Show All
Smart Device Development Multiple Resources files in a VS .Net 2005 Project
CVTRES : fatal error CVT1100: duplicate resource. type:ICON, name:1, language:0x0409 LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt I am getting this error when I compile. I did some searching and I discovered it has to do with having multiple resource files within a project. But I can't seem to find a solution. Anyone help me out I think you need to look th ...Show All
Visual J# J# Browser Controls for Pocket IE?
Are there any plans to make a Pocket Internet Explorer version of J# Browser Controls That will save a lot for the application deployment to mobile PDA's. Thanks for the feedback. As of now we dont have any information on this, however we will keep you updated of our future plans. Thanks, Varun ...Show All
Visual Studio Team System Tools->options vs. project properties vs dynamic selection
I think there is some opportunity for improvement in the location of options and settings. For making schema comparisons, the option to ignore various features of the database are set in the application scope Tools->Options area. This doesn't make much sense to me. While you could set standard or default options there, I think that those choices will vary significantly from project to project or comparison to comparison. These sett ...Show All
Visual Basic ListView without text
Hi, i would like to display square images in a list view, without any text and I would like the images to touch each other. If I use the tile view, I still get a blank space between each "column" even if I do not have text. Does anybody has an idea on how to do that Thanks Thanks for your answer. I was trying to use existing controls because I thought it would be possible. But I understand that I will need to cr ...Show All
SQL Server SSIS Packages Under Source Control - Odd behavior
I have an odd scenario going on. Using Visual Studio 2005 Team System, when I open a Solution containing several Integration Services Packages that is under source control (Version 6.0 Sourcesafe Database) it automatically checks out each SSIS project file in the solution and then creates in my local directory additional ".database" files. Has anyone else come across this odd behavior The database f ...Show All
.NET Development Sending Email problem (.NET 2.0)
Hello folks! I'm trying to send email using the new classes of .NET 2.0, with the following code: MailMessage msg = new MailMessage(); msg.To.Add("bribeiro@certisign.com.br"); msg.From = new MailAddress("bribeiro@certisign.com.br", "Bruno Ribeiro", Encoding.UTF8); msg.Subject = "Teste de envio de emails usando .NET 2.0"; msg.SubjectEncoding = Encoding.UTF8; msg.Body = "Este e o corpo da mensagem ...Show All
