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

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

Hagop

Member List

ezhxra
Joshua_10002
dotnetdumps
Jef Kazimer
flobadob
JCS53885
Derek Moffett
rsknowles
BSergio
BryanM-NZ
cgsdev
pest
Patrick Sasky
Duke Voldemar
globim
Fantacity
drakkan
Joeman345
nove9nove
LittleNew
Only Title

Hagop's Q&A profile

  • Windows Forms URGENT:Resolution Problem

      Hi all,               I having the big application having several forms and controls over it. I developed that application in the environment 1024 * 768 resolution. The probelm is that when we change the resolution, my application does not show the forms and controls over it correctly, if we increase the resolution, the forms goes outside the screen, if we decrease the resolution, the the controls over the contol get shrink and form do not shrink in the same ratio, it shows the unnessary gap between the forms and control over it. Can anybody tells me the so ...Show All

  • Visual Studio Team System Merging from one branch to another

    I'm having issues merging from our main development branch to our test branch. Before it worked great, but we're restructuring our code, so we've moved about 100 files around. I tried merging the changes but it totally screwed the branch up. We're going to re-do the branch, but in the future is there any way to do a pure "copy & overwrite" from one branch to another Can you elaborate on "screwed up" Can you reproduce the problem Resolving with /auto:AcceptTheirs ("copy changes from source branch" in the UI) will overwrite whatever's in the target. ...Show All

  • Windows Search Technologies How to enable indexing and searching the local history?

    Hi, Because privacy and security had become your priorities, Microsoft Desktop Search can't index nor search the local history. However, I would like to index and search the local history through MDS. I'm sure that other users also need that feature. Any hint Fokus Hi Fokus, The only method I'm aware of for doing this is a third-party solution that is documented on CodeProject, here: http://www.codeproject.com/internet/MSNDesktopSearchWebCache.asp It's not endorsed or supported by Microsoft in any way. However, it might be what you're looking for (or at least give you a starting point). ...Show All

  • Visual Studio Debugging Addins

    I've been working on an addin for a few weeks now, and the debugger has stopped catching unhandled exceptions in my addin code. The "Break when an exception crosses an AppDomain..." option is checked; I mention this because I found information (somewhere; I've forgotten the source now) that this option would solve the problem. It did originally, but... Anyone else have this problem Ben More information: The problem seems tied in some way to exceptions thrown within the context of a ShowDialog() operation. In my addin's command handler, if I cause an exception to be thrown outside of ...Show All

  • Visual C++ Need clarification on MFC in .NET

    hi, I have read an article that has VC++.NET faq in the following URL. http://msdn.microsoft.com/visualc/productinfo/faq/default.aspx I found the below info in that. Will Microsoft continue to support and add features to MFC Microsoft has no plans to discontinue support for MFC.  New features will in most cases enable MFC applications to better interoperate with the .NET Framework.   My Question is,  1. this article points to VC++ .NET 2005. is this applicable to apps developed in VC++.NET 2003 (the one comes with VS.NET 2003). 2. i have successfully compiled one vc++6.0 application ( ...Show All

  • Smart Device Development CameraCaptureDialog

    I tried building the camera API and got this error. I went and saw the space using Space Maker Storage (Flash) Storage Total: 27.98 MB Used: 4.60 MB Free: 23.39 MB it displays this. Please help me ------ Build started: Project: CECamera, Configuration: Release Any CPU ------ CECamera -> C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Samples\Cs\Cecamera\bin\Release\CECamera.exe ------ Deploy started: Project: CECamera, Configuration: Release Any CPU ------ Deploying 'C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Designtimereferences\Microsoft.WindowsMobile.dll' Deploying 'C:\Pr ...Show All

  • SQL Server Connection is busy ...

    Hi all, I use VC++ 6 and MFC, with SQL Express 2005. source code sample :  CRecordset *rec1 = new CRecordset(machine->pDB); rec1->Open(...,szSQL,...); while(!rec1->IsEOF()) {    CDBVariant var1,var2;    rec1->GetFieldValue("COL1",var1);    rec1->GetFieldValue("COL2",var2);    int val1 = GET_INDEX(var1);    int val2 = GET_INDEX(var2);    var1.Clear();    var2.Clear();    CRecordset *rec2 = new CRecordset(machine->pDB);    szSQL.Format("SELECT COL3,COL4 FROM TB1 WHERE COL3 = %i AND C ...Show All

  • Windows Forms Ordering Items in a Property Grid

    This is really pathetic. I have tried a ton of stuff to try to order property grid items in VB.NET but it seems there is no way. I have heard that it is a VB.Net langauge bug, but very low priority on Microsoft's list... Well, its something everyone with a propertygrid wants, so can't Microsoft just add an Attribute for "Order"   pizzayoyo wrote: Ok, i found how to do it in VB, by converting a C# file (PropertySort.cs) into VB. I still can't sort the categories, but at least i can get the properties in order. I tried to convert the code to VB.net and couldn't get it to work. Can you post the ...Show All

  • Visual C++ Browse info and build

    When I turn off "BscMake tool" in the Tool Build Order dialog box, the browse info is indeed not updated, but Visual Studio always thinks that the project is not up to date, each time I try to launch the program it prompts me to build it, and when I say yes it doesn't build anything as the bscmake step is skipped. Is there a way to tell the IDE to ignore that the browse info is not updated Thanks, Flavio. P.S.: disabling bscmake is recommended in the docs to shorten build times, so that one can choose to update the browse info only once every few builds: From ms-help://MS.VSCC.v80/MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.VisualStudio.v80.en/dv ...Show All

  • SQL Server How to get DateTime type parameter in the reports which based on AS Data source

    Dear all, I am designing a report based on Analysis Services 2005 data source. And I need two DateTime type parameter. Whatever kind of Time dimension i made in Analysis Service i only got dropdown list for Date selection in Report. How can I use a DateTime type parameter (datepicker in RS 2005 is great) to filter the time of AS source Can anyone give me some samples Thank You very much. ...Show All

  • Windows Forms Streaming Files from Binary Files Table in MSM

    I stream multiple files from a basic msi during an install. The code works fine. When I use the same code to stream the same files, but from a merge module, in the same install, the first file streams successfully. The second file fails on MsiViewFetch. The call to MsiViewExecute, proceeding the call to MsiViewFetch succeeds. The code is a function that's called for each file that needs to be streamed. I use PMSIHANDLE for all handles. The call to MsiVeiwFetch returns 259 which I believe is ERROR_NO_MORE_ITEMS. Select used strSelect.Format(TEXT("SELECT `Data` FROM Binary WHERE `Name`='%s'"), strFileName); When str ...Show All

  • Windows Forms RadioButtonList

    It's easy enough to make your own, but I still think it would be nice to see a RadioButtonList control with WindowsForms in the future.  WebForms has one, so why not just make the two even closer to having the same controls btw, thanx for this new section! Hello I am new to all of this and I am wondering if you could&n ...Show All

  • Visual Basic custom windows forms..

    hii ppl.. i want to know how to create windows forms other then rectangular form (default) i have done that using transparency key property but that is seen properly only when moniter color depth is less then 24 bit..which is useless.. otherwise it's seen as rectangular form even on enabling tranparency key property.. i want to know how to create form like the one in apps like winamp etc..   Ashish Yadav wrote: hi ppl.. thanks for being so helpful.. but it isn't what i was asking.. i know the msdn article , i started with that article only(but the problem is that the form is isn't visible in moniter having colo ...Show All

  • Visual C# How change startup form

    I have just switched from VB to C# and am writing a Windows application. In VB you could easily change the startup form by selecting the properties of the project and moving to a dropdown where you could pick the form you want to use as the startup. I see no equivalent in C#. That is, there is a Startup Object dropdown, but it only lists the ProjectName.Project file. I see that I can go into the code of this file and rem out a line like this: Application.Run(new Invoices()); and type in a line lke this: Application.Run(new Form2()); This solves my problem. Just wondering if this is the orthodox way of doing things in C# Someitm ...Show All

  • SQL Server BizTalk Server 2004 Installation Query

    I am trying ti install BizTalk Server 2004 on a Windows 2000 Server platform.While i try to configure BizTalk Server 2004 I get the  undersaid error Failed to create subscription datatbase "BizTalkMsgBoxdb" on server"XXX" Statements could not be prepared Conflicting locking hints specified Conflicting locking hints specified Conflicting locking hints specified SqlScript file "C:\ProgramFiles\MicrosoftBizTalkserver2004\schema\\msgboxlogic.sql" SqlCommandBatch:"Create procedure [dbo].[int_PurgeMessageZeroSumTAble]@ Aggressive int as declare..." Can someone ehelp me out to resolve this error Thanks and Regards Rohit Hi, I am also ...Show All

©2008 Software Development Network