Software Development Network Logo
  • SQL Server
  • Microsoft ISV
  • Windows Vista
  • VS Express Editions
  • Architecture
  • Visual Basic
  • Visual C++
  • Visual FoxPro
  • Visual J#
  • Visual C#
  • Visual Studio
  • .NET Development
  • Smart Device
  • Game Technologies
  • VS Team System

Software Development Network >> CarlMalden's Q&A profile

CarlMalden

Member List

Centimetre
phillyz
i_hate_printing
jbrunning
Daniel15
ajrs
M O J O
Sara Stanford
EggsBenedict
Subodh Chettri
TonyL82
Dick R
George Eckert
Dan Smithtown
jcarter
Steve Bywaters
azherdev
jepatte
jvsystem
chad_
Only Title

CarlMalden's Q&A profile

  • Visual Studio 2008 (Pre-release) browser app questions

    I have a few questions about browser apps. I guess you can't use NavigationWindow in browser applications as this causes runtime failures, can you advise on the best way of hiding the browser UI Also a ny reason why the following. < Style x:Key = " MouseEnter " TargetType = " {x:Type Image} " > < Style.Triggers > < Trigger Property = " IsMouseOver " Value = " True " > < Setter Property = " Image.BitmapEffect " > < Setter.Value > < OuterGlowBitmapEffect GlowColor ...Show All

  • Visual C# Applying System.Diagnostics.DebuggerHidden() to all Property's

    Hi all, I have a load of Properties (read and writable) and as my debugger is slow I have used the following code above each Property declaration... [System.Diagnostics.DebuggerHidden()] ...Is there anyway I can, instead of having this line above every Property, can I have it once to say that I want to hide all my properties from the Debugger Thanks Tryst No it can only be applied to class members. However I don't think that is really the solution to your problem anyway. The debugger still has to go through the properties even if they are hidden. It simply skips the display process. Furthermore you are making it harder on yourself ...Show All

  • Software Development for Windows Vista TIP @ Log-In? - Has this been included in the December CTP?

    I just installed Windows Vista build 5219 on my Motion LE 1600.  There is no TIP on the logon screen, so I need to have a keyboard to log in (which defeats the purpose)... is there something special I need to do to have the TIP available at logon TIA... In Windows Vista Beta 1 builds there is no support for the TIP at login. There is currently no way to enable it during the login screen. Unfortunately, the only way to log in currently is to plug in an external keyboard. TIP support at login will be implemented in a future release. Thanks, Ross MSFT Developer ...Show All

  • Visual Basic Get multiple files from a directory

    I can't believe after 5 months of working with Visual Basic I've come up with something which I know is right in front of me - I just can't see it. Anyway, I want to get 2 formats from a directory, not one or all, 2. Here's my code for one: System.IO.Directory.GetFiles(TextBox1.Text, "*.JPG", IO.SearchOption.TopDirectoryOnly) Here's some attemps: System.IO.Directory.GetFiles(TextBox1.Text, "*.JPG" OrElse "*.BMP", IO.SearchOption.TopDirectoryOnly) System.IO.Directory.GetFiles(TextBox1.Text, "*.JPG|*.BMP", IO.SearchOption.TopDirectoryOnly) Which have obviously failed... ...Show All

  • SQL Server SQL Mobile performance/size problems with WM5 device

    I just upgraded our application from SSCE 2.0 to SQL Mobile. Our app is written in C++, and we use OLE DB for most of our queries, including the routine the downloads and inserts our lookup table data. This application is running on a Dell Axim X51. Using SSCE 2.0, this routine takes 236 seconds, with most time spent inserting data into various tables (using OLE DB). The resultant database size is 15.1 MB. Using SQL Mobile, this routine now takes 675 seconds, with a resultant database size of 27.9 MB!! There is a noticable increase in time when the downloaded data is being inserted into the database. What would be the reason(s) for the slowe ...Show All

  • SQL Server sql transaction

    I have created three stored procedures. Each one has a begin transaction and commit transaction and in the begin catch statement it has rollback transaction. i.e. create procedure sp1 as begin try begin transaction insert into table1(field1) values('field1') insert into table2(field2) values('field2') end transaction end try begin catch rollback transaction end catch -------------------------------- create procedure sp2 as begin try begin transaction insert into table3(field3) values('field3') insert into table4(field4) values('field4') end transaction end try begin catch rollback transaction end catch - ...Show All

  • Smart Device Development problem with pocket pc emulator on localhost in VS 2005

    HI, I'm trying to develop a Mobile web application in Visual Studio 2005 (in Framework 1.1). I am trying to run it in Pocket PC 2003 Emulator. But when i press F5, i get an error saying that the application cannot open http://localhost/.../..aspx (I have added the emulator.exe file as default browser thru File->Browse With->Add..) Can anybody help me regarding this problem as to why i cannot rum my application on localhost/pocket pc emulator Using 'localhost' instead of actual host name is probably #1 mistake with WS. 'localhost' means 'host, this software is running on'. Sinc ...Show All

  • Visual Studio Uninstalling Add-ins - removing toolbars

    Hi all, I have an addin for VS.NET which I've recently altered to work with vs2005.  I'm having an issue with uninstallation though.  When my uninstaller runs, it runs 'devenv /setup' to remove the toolbars for each of the Visual Studio versions installed.  This works (albeit with ugly consequences) on VS2003, but on 2005 my add-in's toolbar and commands are still present. Some searching around yielded the /resetaddin command, which kinda works.  It removes all the toolbar buttons, but not the toolbar itself.  Also, annoyingly, it fires up a whole new copy of vs2005 which then stays open - not an ideal thing to happe ...Show All

  • Software Development for Windows Vista installation finally works, but vista still freeze!!!

    Hi, after a lot of try, I have finally installed vista 5270 on my system. (I have done the installation process in safe mode!!!) now vista is installed, but after 2 to 3 minutes or normal activity, the system freeze. in safe mode everything works fine (but in safe mode) what can I do to diagnose the problem and correct it Previous version of vista has not these issues on my system.   thanks for your help. I need help too.... As soon as I power up the computer and log on the computer freezes... clock too. Anyone know what is happening ...Show All

  • Windows Forms VS 2005 Winform designer Issue

    I am getting the following error whenever i tried to open forms in VS 2005 solution in design mode. I tried rebuilding the solution several times, but still the issue persists. I referred couple of messages in the forum and applied the resolution provided in those, but still the issue persists. I am stuck and not able to do any modification to the controls and their properties. Is there is any fix available for this issue One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Clicking on each error will take ...Show All

  • .NET Development ValidationEvent only fires once

    Using XMLReader with a ValidationEventHandler (VC# beta 2), a schema and the flag set to report warnings. When I introduce errors to the XML file, only the first is reported, although the processing continues fine. Am I doing something wrong I want it to validate the whole file and write warnings to a log. Thanks in advance. You will get multiple warnings repoorted, it just depends how you introduced the errors into the XML file. Can you post the file and the expected schema Thanks, Mark Fussell WSE PM ...Show All

  • Software Development for Windows Vista Programming vs. Designing Workflows

    Hi there, I had a more or less quick look at WF. I'm a little bit suprised that it seems programming is required for authoring workflows. I hoped that it would be possible to host the designer and to generate some kind of storable representation (e.g. XML) out of designer and to load and run workflows based on this file. The thing that we are currently examining WF as a means to allow customers to customize workflows and to create new workflows based on activities we ship. We cannot expect the customers to be able to code in C# or VB.NET or even have VS installed. So what we wanted to do is just hosting the workflow runtime and designer (m ...Show All

  • Visual Studio 2008 (Pre-release) Endpoint not found exception when more than 20 clients connected simultaneously

    Hi, I am developing a WCF application in which more than 100 clients will connect to the server simultaneously and in each request server may send large data (say 25MB per request). While testing the app, I realized that only 10 request can be handled at a time and client will not get any exception till 20th request but after 20 request it start throwing Endpoint not found exception for the rest of the connection. Below are the server and client config files: (I am using Feb CTP and threading in loop(100) at client side to test the application) Server: < xml version = " 1.0 " encod ...Show All

  • .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 location the database file when the program in the run time, the path given is right, but still the same problem, a form without data can anyone tell me the reason why it can find the db in some computer ...Show All

  • Visual Studio Viewing image from xml to CR

    I need to load the image into a CR 9. Image(binary data) should be coming from an XML file. I've tried loading this image into a PictureBox and it works. It's just so odd I can't view this image in the report. Please help me. Hello, How are you trying to load the image into Crystal Reports 9 Is you datasource for the report the XML file Is this a stand alone report designer or the embedded report designer Keith - Business Objects ...Show All

©2008 Software Development Network