TrackerX's Q&A profile
Microsoft ISV Community Center Forums Copying range of cells to another worksheet without copying the drawing objects
I want to copy a range of cells from one worksheet to another without copying the enclosed drawing objects (like arrows). I use the following code, but it copies everything including the arrows. Worksheets("Blank Item").Range("A1:AY190").Copy Destination:=Worksheets("Item Entry").Range("A1:AY190") How can I get the copy to only copy the cells themselves Use the cli ...Show All
.NET Development ConfigurationElement.ApplyInstanceAttributes
I'm just wondering: [AttributeUsage(AttributeTargets.Property] public class ConfigurationValidatorAttribute : Attribute {...} ConfigurationElement code snippet: private static void ApplyInstanceAttributes(object instance) { Type type = instance.GetType(); *-----> ConfigurationValidatorAttribute attribute = Attribute.GetCustomAttribute(type, typeof(ConfigurationValidatorAttribute)) a ...Show All
Windows Forms Images inside DataGrid's columns
Hi! How can I use images inside DataGrid' column instead TexBox'es And also I want to be able change these images according to program's logic (exporting / importing information) Thx. There are samples available for displaying icons and bitmaps at the WindowsForms FAQ: http://msdn.microsoft.com/smartclient/community/wffaq/ctrlsp.aspx#4umuvlol ...Show All
Visual Studio Tools for Office Problem with managed com add-in (The macro cannot be found or has been disabled because of your macro security settings)
Problem with managed com add-in : I developed a managed com add-in in vb.net for MS Word 2003 application. I have added a commandbarbutton control in one of the existing commandbars(Tools). When i click the commandbar i am opening up a form and displaying some data.Everything works fine.. I did build the main project and setup project and i install the same application in the same machine i developed. When i open the word document and ...Show All
Visual Basic Installing a VB 2005 App under both Old and New OSs
I am about to distribute a new application to a diverse group of customers. Some are running XP, some Windows 2000, and some even have Windows 98. What's the best way to handle this I understand Windows Installer 3.1 that accompanies the VS package is fine for Win 2000 and more recent. I also understand that I can download a v2 Installer that will handle Windows 98. Does the v2 Installer handle Net Framework installation as well Can I u ...Show All
SQL Server Sql Server Business Intelligence Development Studio
I installed all the software that comes with sql server 2005 express including: sqlexpr.exe, sqlexpr_adv.exe, sqlexpr_toolkit.exe. All the installations were successful. However, Sql Server Business Intelligence Development Studio could not be found from start menu. I am not sure whether it got installed. I need it to develop reports. What could the problem be Any solutions Regards sandy hi, hav ...Show All
Software Development for Windows Vista UI ergonomy
Why: Do scrollbars' arrow buttons disappear when not used It makes hard to know if you are at the real top/end of document/area. Do the selection checkboxes disappear when not used This makes hard to know that they exist. Does the splitter between tree and list view disappear when not hovering above it How do you know where is it then (use icon view to see what i am writing about) Do the expansion arrows in tree view disapear ...Show All
Visual Studio Express Editions Connection Test
Hi, im very new to Visual Basic 2005 Express Edition. I have had a bit of past PHP codeing but not alot. I was wondering what i code i could insert into my applictation so that if it does not connect to a webpage, any webpage that it will display a message... "Internet Conection Unavaiable" Then close the program Any help would be great thanks........ Hi, Use the My.Computer.Neto ...Show All
Visual C# window service unable to launch process
dear all i need your help, i did a project setup for a window service in which i want to launch a batch file ... but the process isnt working ... anyone please help out.. here is my code System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents=false; proc.StartInfo.FileName= ConfigurationSettings.AppSettings["exeName"]; proc.StartInfo.WorkingDirectory = "d:\\batchs"; proc.StartInfo.Arguments= e.FullPath; ...Show All
Visual Studio 2008 (Pre-release) Customizing NavigationWindow and using Property Aliasing
PROBLEM: The main window of my application will have 3 areas: 1) A header where there will be diferent controls such as links, menus, images, etc, besides a previous/next navigation button with customized appearance; 2) A footer with more controls on it; 3) A content area where different pages will be displayed. SOLUTION CONSIDERED: WindowsFX provides a build-in NavigationWindow that can be customized using ControlTemplat ...Show All
.NET Development cannot get web application service
When I try to add a new SqlDataSource and click 'Configure...' I get an error message "cannot get web application service" and then it won't let me click 'New Connection' to setup the connection string. Any thoughts Thanks in advance. worked for me too... Anyone else find it funny that a program reboot is the 'fix' for this ...Show All
Microsoft ISV Community Center Forums Program code fro sorting coloumns in a listbox VB Excel
Hi I have in my UserForm a listbox, where I capture the A2:G10 in Spreadsheet1 And my problem is that I want to manage to click on the column header (in the listbox of the userform) to sort the coloumns. I hope that someone pls can help me sort this out! tullaolsen;) Hi tullaolsen, I don't think you'll be able to do it. The reason why is there isn't a OnColumn_Click event for a list box. There's only a click and that ...Show All
Visual Studio How do I add an entry to the Menu in the Solution Explorer??
How do I add an entry to the "Integration Srevices Project" Menu in the Solution Explorer When working with Sql Server 2005, I opened a new "Integration Services" project of type "Business Intelligence" project. When I right click on the project name in the Solution Explorer, I get a menu with (Build, ReBuild, Clean... ). How can I add a new entry to this menu I created a wizard as described in http://msdn2.microso ...Show All
.NET Development window.location
Hi I have an asp.net website, using Jscript. I have a front page, with 2 buttons and a checkbox. Button 1 is to pop up another window with some information; that works fine. Checkbox is to indicate whether the user agrees to the information/terms. Button 2 is to continue on to the next page. It calls a Javascript function that checks whether the checkbox is checked: if not, it pops up a message; if it is checked, it is supposed to move on to ...Show All
Windows Forms Composite Control Child Docking
Hi! I have a composite control which inherits from System.Windows.Forms.UserControl and uses ParentControlDesigner so I can use it as a container. At the top of my control I have a panel which acts as a "header" of sorts. Below the heade ...Show All
