jessielu's Q&A profile
Microsoft ISV Community Center Forums Selecting Data By....
the color of a cells Is this possible Tiger Hi tiger, Yeah it should be. This is code that sets the colour of a selected cell to orange With Selection.Interior .ColorIndex = 44 .Pattern = xlSolid .PatternColorIndex = xlAutomatic End With It includes the pattern. To make it easier make sure the pattern is consistant for all the cells. As you loop over the cells, or access a cell, look at the Interior.ColorIndex property. You'll need to work out what colour has what colour index though. there are a few contants you can use vbBlack and vbWhite. ...Show All
Visual Studio Team System VSTS Architect vs. VSTS Developer
With he proposed changes in MSDN subscriptions and Visual Studio licensing, I now have to make a decision between VSTS Architect and VSTS Developer. As I understand, MSDN Universal subscribers will have a choice - they can either go for VSTS Architect and VSTS Developer. I believe that I need both architecture and development tools. Which out of two should I go for The information was interesting but too high-level to be really useful or answer the questions I feel most developers have. I hope you folks will be releasing something with a bit of meat on it like a feature by feature breakdown of what is included in each edition in t ...Show All
.NET Development How to generate 64 bit executables with visual basic .net?
We have code that was created in visual basic 6. Now we have a new itanium 64 bit machine, and want to take the old code and generate 64 bit executables that will run on the ia64 machine. The question i have is what is the easiest way on doing that From what i see on the forum it looks like i have to take the project generated with visual basic 6 and convert it to .net 2005 edition, and than using the .net framework 2 beta will create 64 bit executables. Is this the way to go Is .net 2003 edition capable of generating 64 bit executables Thank you... danb2005 wrote: We have code that was created in visua ...Show All
.NET Development Memory limited device, needs to stream WebService results to File
I am trying to transfer a dataset from the server and insert it into SQLmobile on my PDA. As it currently is, my Webservice returns the dataset, the PDA recieves the results, then iterates through the dataset inserting them one at a time into its SQLServer2005mobile database. This works fine for datasets up to 100,000 but once i go over that limit the device runs out of memory as it tries to load the dataset into memory as it receives it from the webservice. One way around this i thought would be if instead of loading the dataset into memory as it receives it, i get the Webservice to instead return theDataset.toXml(), then the PDA c ...Show All
Visual Studio Team System Creating New Process Template
Hi all, I won't to hear if it's possible to create our own Process Template. When in Process Template Manager (Visual Studio), I only get two process templates listed in the box - what if we wanted to have our own. Where do we create it, and how. Running VSTS RC - TFS Beta 3 dual server setup Best regards Musa As Joe says you can download and configure by modifying the XML files. And then upload. This works well for Work Items and basic configuration of the project portal (SharePoint). But if you want to do more tricks to the portal, such as changing the links in the navigation bar, you will need to move into Share ...Show All
Smart Device Development Picturebox with transparency?
Hi, I have a picturebox object containing a circle .gif picture. This .gif picture itself has the transparent property set. In VS2005, when I choose the backcolor property to transparent, the portion that is out of the circle turned black. How can I make it real transparent Thanks! Hi Drudkh, You can see the previous post for some help on this issue: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=183889&SiteID=1 Also if you look through our news group archives microsoft.public.dotnet.framework.compactframework you will find a lot of helpful information on this. One of which pro ...Show All
Visual C# C# EXPRESS DOWNLOAD
I downloaded BETA 2 installed! ERROR MESSAGE POPUP Package 'Visual Studio Settings and Project Designers Package' has failed to load properly (GUID= 67909BO6-91E90-4FrE-AB60-495046BE9A9A}). Please contact vendor for assistance. Application restart is recommended, due to the possible enviroment corruption. Would u like to disable loading this package in the future You may use VCSEXPRESS/resetskippkgs' to enable package loading. WHaa I do wrong and what should I do Thanks in advance! EXCELLLLENTTTTTT!!!!!! COOL THANKS A LOT! Actually I did uninstall in the wrong order OOPS* ah duh , but its all good now !!! YOU ...Show All
Visual C++ .Net Framework
Hi, I have an application which I did not originally create. I develop it using Visual Studio 2003 - Visual C++.net. When I click on the configuration manager for my solution I can see that this platform, for said application is "Win32". I didnt think this was the case since my work (code) is developed compiled and run correctly using visual studio.net. Then i created a completely new project, visual c++ and chose the option "Windows Forms Application". Once this had set itself up I checked the configuration manager and it also told me "Win 32". Then I added a new project but this time in C# call ...Show All
Visual Basic Blair Allen Stark
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday. ...Show All
Visual C++ LINK : fatal error LNK1104: cannot open file 'libcimtd.lib'
Hi, I've been trying to compile a code snippet and this is the first time I was using Visual Studio. I got an error while linking the objects: 1>LINK : fatal error LNK1104: cannot open file 'libcimtd.lib' I've already installed the Windows 2003 SDK without the x86_64 things, because my processor is x86. I didn't change any setting apart, VC++ directories where I added the SDKs ones. Do you know what my problem is Thanks! PS: I'm still learning how to program, so bare with me... Do you have the file on your machine Also, wha version of Visual Studio are you using Than ...Show All
Visual Basic InvalidCastException was unhandled error.
Hi, I am trying to compare a known value to a value from a column in a dataset table. I just keep getting the following message all the time: Conversion from type 'DataColumn' to type 'String' is not valid. my code is: Dim Position = btnSeat01.Text Dim PositionCompare = Me .SalesDataSet1.Transaction.TransactionPositionColumn If Position = PositionCompare Then etc. etc. etc. Any help would be greatly appreciated. The reason you're getting the error is that Position is a string, and PositionCompare is a DataColumn object. There is no implicit conversion from one to the other. Without knowing w ...Show All
Windows Forms Where can I find some free icons
Does any one know where I can download a free set of icons for business application for use with the buttons and menus Wow, These icons are great. Thanks for the tips. ...Show All
Visual Studio Tools for Office VSTO 2005 Outlook Add-In reply event not consistent
I'm developing an Outlook Add-In with VSTO 2005 and I'm running into a problem with the Reply event on an inspector not always firing. I'm using an active Inspectors collection and I'm registering the reply event in the constructor of the Inspector. I also tried registering the event on the Activate event to see if that would solve the problem but it didn't. There is no consistent way to repro the reply event not firing - it just happens randomly. Here's a code sample from my Inspector class: public myInspector(Outlook.Inspector newInspector) { m_ol ...Show All
SQL Server Problem in bulk insert
Hi All, I am trying to perform Bulk Insert for an existing folder containing the data files into an existing destination table . I get the following error : [Bulk Insert Task] Error: An error occurred with the following error message: "Cannot bulk load because the file "C:\PD Data\PDDW_md_costs\Files_to_load" could not be opened. Operating system error code 5(Access is denied.).". Here Files_to_load is the existing folder that contains the data files. I am not sure why it is saying that i do not have access to it. I have however also tried sharing the folder providing full access to it. A ...Show All
Microsoft ISV Community Center Forums Problems compiling an MDB to an MDE
Hi all, I have a front end/back end split 2002-2003 file format mde which I have been using for 3 years, and tweeking every now and again. All of a sudden I can not compile the development mdb file into an mde file, and keep getting the same error message saying that I "probably have too many forms". The error msg mentions problems associated with 500+ forms, but I have nowhere near that many. (Linked Tables:33, Tables:2, Delete Queries :5, Append Queries : 2, Crosstabs : 14, Select 87, Union : 1, Forms 34 , Reports 73, Pages :0, Macros :7 and Modules : 3). Also the link to the further help (online) goes nowhere!! Has anyo ...Show All
