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

Software Development Network >> Igor Mendizabal's Q&A profile

Igor Mendizabal

Member List

imin83
Hi_i_am_Amit
allison_h
JackStri
S Nesbitt
Norbert.Bender
pdns
Sujithf
.NETPhreak
jccondor
Chimme
SenthilNathan
Fwank79
ekekakos
Wayne Sepega
Eugene Zakhareyev
Dan H UW
KevinBurton
Jafar Bhatti
Tigerwood2006
Only Title

Igor Mendizabal's Q&A profile

  • Visual C++ Cannot run in debug mode

    Hi, I am a person with a very basic knowledge of C++. I'm using Visual C++ 2005 express edition and installed Microsoft PSDK on top of it. My programs are running fine but when I try to debug, there are errrors. The same is happening with all the projects. Here is a simple code example: #include<iostream> #include<conio.h> using namespace std; int main() { cout<<"Hello World!!!"<<endl; cout<<"This is a test program..."<<endl; //Breakpoint here cout<<"Goodbye..."<<endl; _getch(); return 0; } After setting a breakpoint, when I run the code in debug mode (F5), then the breakpoint is not hit and execution of program goes on. The breakpoint b ...Show All

  • SQL Server Selection Problem.

    Emp ID Date Manager Nm 2121 2/24/06 Admin 2121 2/2/06 Breakfield 4342 8/21/06 Admin 4342 6/21/06 Peck 4342 6/16/06 Ewen 9661 12/20/06 Admin 0782 10/31/06 Admin 0782 9/29/06 Valakos 4017 5/3/06 Admin 4017 5/3/06 Rosado 5103 1/24/07 Admin 5103 5/18/06 Elm 5103 5/16/06 Generali 5103 5/8/06 JOHNSON Here is the sample data from a table, if you notice it, the first column is the e ...Show All

  • SQL Server Do I need multiple versions of Northwind?

    I am learning SQL Server 2005 Express, and want to use the Northwind data base as used in many code examples. I wanted to attach the Northwind data base via SQL Management Studio, but cannot find a Northwind.mdf file. When I do a search using 'Northwind', I see there are already a couple of different versions of Northwind already loaded. One appears to be associated with SQL Server Mobile Edition (Samples folder) and another seems to be associated with Visual Studio 8\SDK\v2.0\Quickstart. Can I use one of these existing Northwind databases (none have .mdf extention) for SQL Server 2005 or do I need to download yet another version Here are links to the Northwind, Pubs, and AdventureWorks sample dat ...Show All

  • Visual Studio Express Editions Error While Coding!!

    I am following a book's direction to code, but when i entered this startment ' For intForLoopCtr = 1 To CInt (txtNoPics.Text) ' <<<<<<<< then it said 'intForLoopCtr" is not decared....... so anyone have any idea to make it decleared OK I'll lay this out clearly. You are using variables such as blnFullSetComplete before you have declared them. You need to use a statement like dim blnFullSetComplete as Boolean beforehand to specifically declare the variable and type prior to using it. This is probably because you have used option explicit on. It doesnt matter the variable name, type or construct you are using it in - the same thing applies - you need to declar ...Show All

  • Windows Forms discarding user actions on a form while in busy state

    Hi, I can't seem to figure out a decent way to do this. I have a small window, and I need to discard user input while performing some lenghty task. For example, if the user wants to sync the app with a server, and this takes time. The proper behavior would be to change the cursor to a busy cursor, and prevent the user from touching any control on the form. Of course, painting should still be done, and the form should be able to move and resize (user actions like move, resize, maximize, minimize). When the job is done, the cursor changes back to the default one, and the user is able to interact with the received data. I've seen various sugestions: - disable the controls (or the whole form): not good, as the appearance of the c ...Show All

  • SQL Server Processing SSAS2005 from DTS

    Hi, I have a requirement to process SSAS2005 cubes from DTS. Anyone know how to do this or does anyone have any recommendations I've done a search on this forum and came up with teh following which was no help at all unfortunately: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=198374&SiteID=1 -Jamie Did you download ASCMD.exe from this link or was it already on installed for you in the location specified in the ReadMe I've installed the developer edition on my machine and can't find the file in the location specified. ...Show All

  • Visual C++ How to get the local time in miliseconds

    Dear All, using win32 C++, I just want to know what is the usual way to get the local time in the format "hr:min:sec.milisec" Your help is much appreciated regards Bassam Hi, I have done it in the following way: SYSTEMTIME sysTime; GetLocalTime(&sysTime); TCHAR szTime[16]; ZeroMemory(szTime,16); wsprintf(szTime,_T( "%d:%d%:%d:%d" ),sysTime.wHour,sysTime.wMinute,sysTime.wSecond,sysTime.wMilliseconds); Thanx, Ch.T.Gopi Kumar ...Show All

  • SQL Server WMI Error 0x80041010

    Hi all, Am running a SQL Server 2005 Ent IA64, 2 node (active/passive) cluster on Windows 2003 Server Ent with SP1 IA64. Everything working ok, but everytime I launch the SQL Server 2005 Management Studio, the following is logged in the Application Log: Event Type: Error Event Source: WinMgmt Event Category: None Event ID: 10 Date: 04.06.2006 Time: 07:32:04 User: N/A Computer: RESYNGDB1 Description: Event filter with query "select * from __InstanceModificationEvent within 10 where TargetInstance isa 'Win32_Service'" could not be (re)activated in namespace "//./root/Microsoft/SqlServer/ComputerManagement" because of error 0x80041010. Events may not be delivered through this filter until the problem is corrected. ...Show All

  • SQL Server Mix Relative and strict dates

    I am trying to write a report where I can have a drop down with values like yesterday,today,lastweek. But I also want the user to be able to select a specific range, say 7/1/2006 to 7/5/2006. Also why can't i update the value of a parameter through to an expression Like set the value to =Today(). It throws an error about the type. Can someone point me in the right direction here I am trying to get the user be able to select either the relative dates, yesterday, lastweek... OR select a strict date range in a linked report. Also do you know if there is a control which only displays the parameters of the report, which can be used to display them. ...Show All

  • SQL Server SQL 2005 partitioning

    Can anyone tell me for certain in which versions of SQL 2005 is Table and Index Partitioning functionality available Thanks, Dan Enterprise only - see this link for more details ... http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx ...Show All

  • Visual Studio 2008 (Pre-release) InfoPath-WCF

    Hi i have hosted a InfoPath Form in my Windows Application..and the InfoPath form talks with my WCFService...but my HostingApplication(WindowsApp) has a security token which the hosted InfoPath should take before talking to my WCFService... how to do it.... Thanks Jithendrian .R Hi Madhu thanks for ur response.... Actually my infopath form can talk to the WCF Service but that service has to take a security token as one of its input parameters...this security token has to be passed from my Hosting Application into the hosted InfoPath form before it talks to the WCFService.. But i have connected the WCF Service to my InfoPath Form In the designer itself.. this is where i am stuck ...Show All

  • .NET Development Smartclient - Bind result: hr = 0x8007000b. An attempt was made to load a program with an incorrect format.

    Hello, When I run an exe hosted through IIS (as a smartclient) on 64-bit machine it fails with: (From fusion Log) Bind result: hr = 0x8007000b. An attempt was made to load a program with an incorrect format. ERR: Setup failed with hr = 0x8007000b. ERR: Failed to complete setup of assembly (hr = 0x8007000b). Probing terminated. The exe WORKS when loading the exe normally (Double clicking on it) It WORK through the Url when hosted on a 32-bit machine. I have tryed marking the exe x86 in VS. What is problem here It seems related to 64 bit AND smartclients Thanks Tom Hi Will, Thanks for your help. Client - same as server, loading on the same machine. (Win2003 64 bit) It fails by throwing an uncaught excepti ...Show All

  • SQL Server Combining multiple subreports into a single report

    The goal is to produce a single PDF consisting of a number of subreports. Some are landscape, others are portrait. The subreports may also be run as independent reports. The master report that contains them defaults to the width of the widest subreport, which is landscape. This causes all portrait subreports to spill over producing blank pages. Are there any work-arounds to concatenate multiple, single report PDFs into a single PDF and have page numbering too Thanks! The code sample above should have a subscript in brackets but I guess that is also the symbol for an idea. How funny! ...Show All

  • Software Development for Windows Vista SetOutputFileName for GraphBuilder

    Hello, SetOutputFileName is used for a CaptureGraphBuilder. What is the equivalent for a simple GraphBuilder Thank you, Christophe, ICaptureGraphBuilder is deprecated in favor of ICaptureGraphBuilder2. ICaptureGraphBuilder2 needs a call to SetFiltergraph() in order to know what GraphBuilder object to work with. SetOutputFileName automates the process of building the graph. However, you can always build the graph manually by using IFilterGraph::AddFilter to add the filters you prefer, and connecting the pins of the filters. ...Show All

  • SQL Server 2 similar queries - different results! Why?

    SSAS2005. Tell me please, why this query SELECT { [Measures].[Internet Sales Amount] } ON COLUMNS , { [Product].[Product Categories].[All Products] } ON ROWS FROM [Adventure Works] WHERE ( [Product].[Category].&[ 1 ] ) returns: $29,358,677.22 but SELECT { { [Product].[Category].&[ 1 ] } * { [Measures].[Internet Sales Amount] } } ON COLUMNS , NON EMPTY { [Product].[Product Categories].[All Products] } ON ROWS FROM [Adventure Works] returns different result: $28,318,144.65 If I replace [Product].[Category].&[ 1 ] on [Product].[Product Key ].&[BK-M18B- 40 ] then results are identical! $25,919.52 Thanks. This is a quote from ProClarity's white paper: &qu ...Show All

©2008 Software Development Network