Software Development Network Logo
  • Visual Studio
  • .NET Development
  • Microsoft ISV
  • SharePoint Products
  • Audio and Video
  • Visual FoxPro
  • Smart Devicet
  • Visual C++
  • Windows Vista
  • Game Technologies
  • Visual C#
  • IE Development
  • Windows Forms
  • Visual Basic
  • SQL Server

Software Development Network >> carol chen's Q&A profile

carol chen

Member List

amitsingh18
Webhostbudd
Citrus
Bravo2007
Vashnik
Matt Lin
Darrell Norton
Paval
spshah
JRQ
kanjo
MamboJoel
SaintAnger
adandreamohr
Jorge P
jtaylor42
RMatthe
overthetop
Jeroen Bransen - J-Thread
buzzbuba
Only Title

carol chen's Q&A profile

  • SQL Server sql beginner - saving views to a file

    is there anyway to automatically save a view to a file at a scheduled time Thank you for any help or pointing me in the right direction. You sure can - just change the query part ( the -Q"something something" part) to this: EXEC sp_helptext 'viewname' Of course, replace viewname with the name of your view. Buck ...Show All

  • Software Development for Windows Vista data execution prevention stopping IE on Vista,

    hi, data excution prevention is not allowing me to use windows live messenger, i have tried to disable it for windows messenger but it wont allow me to, anyone know how i can disable data excution prevention on windows vista thanks for any help. Lorettablonde wrote: I just bought an HP Pavilion PC, it came with Vista Prem, I have never encountered this error before in my old XP, and I am a newbie so please be kind and no too technical, I am just learning . My IE will not open at all, when I try it says it is closed and I will be "notified" (lol) when a fix is found, it says DEP closed it down. So, why is that Is there something already bad on here I did every scan available and nothing came ...Show All

  • Visual C++ Opening multiple files in a single program instance

    This is something that is done millions of times every day... Using Windows Explorer you double click a file to open it, the associated program starts up and the file is opened, if the associated program is already running, then the file is opened in that (already running) instance of the program. Simple... However, I'm having trouble finding how to do this simple feat with VC++ 2005, CLR, CLI, .NET. What is the simplest "supported" way to do this Seems you are looking for solution for making your program a single instance one. Please go through this article Run a Single Instance of a .NET Application ...Show All

  • Visual Studio Express Editions How to append BSTR data type?

    Dear all, I would like to append double variable and integer variable into BSTR data type. How could I do that Thanks. Following is my part of program, I just want to append the number "k" on the saveBSTR, but don't know how I should do.... Please help. Thanks. CComBSTR saveBSTR(m_editSaveDir); for(double k = 0; k < fr * dur; k++){ hr = pDet->WriteBitmapBits(frame_interval,width, height,saveBSTR); } kawing0510 wrote: for(double k = 0; k < fr * dur; k++){ [ ... ] } A side observation: Although the use of double in the iteration statement is legal, it is quite costly. Doubles require floating-point arithmetic and that's overkill for val ...Show All

  • Visual Studio Visual Studio 2005 cannot access my very own debugger visualizer

    Hello, I have a debugger visualizer for datasets witch worked very well. But when I try to visualize a dataset now I get the following error message : Shim.RemoteObjectSourceException: Could not load file or assembly 'file:///C:\Documents and Settings\szjongg\My Documents\Visual Studio 2005\Visualizers\DSWatch2005.dll' or one of its dependencies. Access is denied. ---> System.IO.FileLoadException: Could not load file or assembly 'file:///C:\Documents and Settings\szjongg\My Documents\Visual Studio 2005\Visualizers\DSWatch2005.dll' or one of its dependencies. Access is denied. When somebody else tries it on another computer it works! Anybody has any idea thanx Hi Dennis & welcome to the forums, It might be a sim ...Show All

  • Smart Device Development Win Mobile 5.0 SDK for Smartphone and Win Mobile 5.0 SDK for PocketPC

    Is it safe for me to install both these SDK's on the same machine Also, they won't effect any VS projects that I currently have that use earlier versions of the SDK's will they Yes, it is safe and even necessary if you need to develop for both PPC and SP. It won’t affect your current projects but would add new project templates and emulators for WM 5.0 SP and PPC. ...Show All

  • Visual Studio 2008 (Pre-release) GridViewColumn + 1

    Hello, I'm using a gridview for my listview.View. I have defined 2 GridViewColumn in my gridview. When I see the resulting gridview there is 3rd column, with empty space. Is there a way to instruct the GridView not to show the 3rd column and allocate all remaining space for the my last column (2nd column). < DockPanel > <ListView ItemsSource = " {Binding Path=Family} " > < ListView.View > < GridView AllowsColumnReorder = " False " > < GridViewColumn Header = " Name " DisplayMemberBinding = " {Binding Path=Name} " /> < GridViewColumn Header = " Age " DisplayMemberBinding = " {Binding Path=Age} " /> </ ...Show All

  • Visual Basic Create Web-like Forms as Windows App

    I have used VS 2005 to create a family-based web site ... about 100 pages/forms consisting of mostly text with some graphics thrown in for interest. I have no intention of putting this out on a publicly-accessible server but instead had anticipated burning everything onto CD's and then distributing that to family members so that they could view the site on their own machines (XP Pro SP2) using IE. In inquiring on this forum how to do that I am told that that is not feasible and that instead I should have created a windows app and simply deployed that app to the family (via CD). That's fine except for one thing ... I don't know how to create a web-like app as a windows app. For example, as I create the app I want to be able to easily highli ...Show All

  • .NET Development automatic connection to client cert authentication

    Hello All, I use this code (see below) to connect programmatically (no manual input or user intervention) for web site with integrated windows authentication - or similar turned on. see here [http://static.flickr.com/144/324888321_56676fa86b_m.jpg] for sample prompt. req.Headers.Add ("Authorization", "Basic " + Convert.ToBase64String ((new ASCIIEncoding ()). GetBytes ( username:password ))); Is there any way (similar way as above) to connect to "client cert authentication enabled" [see prompt here: http://static.flickr.com/144/324877866_79a4a09503_m.jpg ] web site Aung ...Show All

  • Visual Studio Express Editions Making a program run at startup (if user wants it to)

    Hi, does anyone know how to make a program run at startup, if a checkbox is checked ( i.e. checkbox in options dialog box checked or unchecked). Please help, thanks in advance You'll basically need to write code to add/remove your program from the regisitry depending on whether the checkbox is set or not. The key to use is: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run Hope this helps, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Fullscreen problems....

    EDIT: I am using Beta 2. I use this as the constructor method... public Game1() { graphics = new GraphicsDeviceManager(this); graphics.PreferredBackBufferWidth = 640; graphics.PreferredBackBufferHeight = 480; graphics.PreferMultiSampling = true; graphics.ToggleFullScreen(); content = new ContentManager(Services); } Works great. But when I change the resolution to 800x600, all I get is a black screen. The loop is still running because I can still quit the program. I have also tried 1024x768, that works too. Thought maybe it was an aspect ratio problem, but they are all the same, 1.3333... I have tried turning the multisampling off to no avail. Didnt think that would be it anyways, I play World of Warcraft at 800x60 ...Show All

  • Architecture Looking for Business Analysis template document...

    Hello, I don't know if I'm writing to the right forum... I have to start the business analysis process for a huge project within my company. I'm more experienced on the Technical analysis, I know what the business analysis involve but to write documentation is not my core skill and english is not mother language so I would like to ask if somebody can send me some kinds of template document (if it exists ...) to start to work on. Thankx for any help Marina B. Hi marina B. The best set of templates I have seen is from the MSF for Agile Software Development. MSF Process Guidance can be downloaded from here: http://www.microsoft.com/downloads/details.aspx familyid=9F3EA426-C2B2-4264-BA0F-35 ...Show All

  • Windows Forms External component has thrown an exception

    Hi, I'm getting this error really sporadically in my Winforms app. Seems to happen when trying to display a form with a call to .ShowDialog(). It doesn't seem to happen on any particular form, just pops up now & again. I can close the application and restart it, then I can view the form without the error The application is running in a Citrix terminal server environment, the assemblies themselves are running from a network share. Can anyone think of what would be causing this error - why is it only happening every now & then (the worst sort of errors!). One post mentions a faulty network connection to blame, but our network is pretty solid & we run a number of other applications from shares. I've seen a few other p ...Show All

  • Visual Studio Express Editions HowTo: Startup Application Invisible in the System Tray

    The standard method for starting up an application invisible is to use the Sub Main() as the startup object, then load the form as necessary. However, if you want to use the application framework, this option isn't available. I've been wrestling with this problem for some time, and have several solutions, none of which are adequate. But what follows seems to be the best solution, but first, the 'broken kludge': One option was to have the form completely opaque, and set the ShowInTaskBar to false. Once the form has loaded, set the visibility to false, restore the ShowInTaskBarback to True, and set the opacity to that which is desired. There are two problems with this: 1. It requires an 'event' after the form has loaded to reset ...Show All

  • SQL Server Passing value inthe Query

    Hi All, I have problem creating query. here is the scenario I have a table EMPLOYEE , the fields are Employee Name, month1,month2,month3,..month12 thomas,100,1200,400...1200 wilson,500,1100,500...1000 carol,200,500,200... 3400   I am creating report using visual studio reporting services I am passsing the report parameter to the query, but i could not the actuall result MY PARAMETER  is 2 ( varrialble is gmonval) I am writing the query  like, select empname,"month"+Ltrim(@gmonval) from employee the result which am getting is thomas,month2 wilson,month2 carol,month2   it suppose to be thomas,1200 wilsom,1100 carol,500 how to get the above result. plea ...Show All

©2008 Software Development Network