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

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

CTA

Member List

Iainr
PraveenL
Cesare Balena
Lulu01
Jaap Wagenvoort
Rod Lopez
ssalter
Bill.Net
Manoj Kumbhar
Sushil Chordia
JustaCoder
Jeff Dion
Joey2006
Omar Khorshed
reevolution
Vish
dinks
cindyding0412
Jason Baginski
mark20052005
Only Title

CTA's Q&A profile

  • Software Development for Windows Vista Page

    How can I set the page size and other PageSetup parameters when creating and printing an XpsDocument PrintTicket pt = printQueue.UserPrintTicket; pt.PageMediaSize.PageMediaSizeName = PageMediaSizeName .ISOA5; seemed like the obvious thing but it is readonly. Thanks Michael Daniel, (our posts maybe just crossed) I'm using the overloaded constructor but isn't ISOA5 a known size I'd like to understand the reasoning as to why Width and Height are not set to a default for the passed PageMediaSizeName. It means every WPF program must store these defaults when it could very easi ...Show All

  • SQL Server Conditional Insertion & Updation in Destination Table (SSIS)

    HI, How to create package in SSIS by applying the business Logic like if the record already exist it should be and update else it should be an insert in the destination table. how to achive this funcality in SQL SERVER 2005 (Business Intelligence studion). Thanks & Regards Nagaraj.S All the answers in here: http://www.sqlis.com/default.aspx 311 -Jamie ...Show All

  • Windows Forms How to input like powerbuild in datagridview?

    Dear all, I really like the datawindow in powerbuild. If you input somevalue in a column (just like a production id), and this column is binding with datasource (like t_prod), the column right will display the binding data ( here like production description). How to do such a case in datagridview Need to write a new control  or override a event of datagridview Thank you very much!   I'm not following exactly what the powerbuild datawindow does -- when you input a value in a column and the column is databound -- what occurs next   -mark DataGridView Program ...Show All

  • Visual Studio 2008 (Pre-release) Error at element 'StaticExtension' in markup file '' : Binary format of the specified custom attribute was invalid..

    I'm getting the above error in my WinFX Windows Apps (including XAMLPad when it tries to start - I've never succeeded in opening it, so it can't be badly formed XAML) at line 51: return app.Run(args); in MyApp.g.cs Stack trace is given as follows: "   at System.Reflection.CustomAttributeEncodedArgument.ParseAttributeArguments(IntPtr pCa, Int32 cCa, CustomAttributeCtorParameter[]& CustomAttributeCtorParameters, CustomAttributeNamedParameter[]& CustomAttributeTypedArgument, IntPtr assembly)\r\n   at System.Reflection.CustomAttributeEncodedArgument.ParseAttributeArguments(ConstArray attributeBlob, CustomAttributeCtor ...Show All

  • Visual Basic Database/Project Problems

    Hey, for my project i have to create a program for a travel agency. i've got most of the program working but im having big problems writing to my database. What i don't understand is that i can read from it with out any problems but when i try to write to it i keep getting errors. The debugging error keeps coming up when i execute this line "objDetails.Update(objDataSet, "Customers")". the debuggin error i get is " An unhandled exception of type 'System.Data.OleDb.OleDbExecption' occurred in system.data.dll "   im using Access 2003 for my database. heres the code for my form   {have to take the code away its too long an ...Show All

  • Visual Studio Express Editions GACUTIL

     === Edited by AdeptBlue @ 19 Jan 2006 4:04 AM UTC=== Me again ... I think this is a bug in VS2005 Express ! I just added my DLL to GAC manually without any problem. (Don't ask why I didn't try that before -- sometimes I am so dumb I scare myself) Will the VS205 team pick up this bug report here or should I post it some other way (Maybe a silly question, but I'm a newbie) ====================================== OK ... I admit it ... I'm in W a a a y   over my head now! I don't even know which Forum to use for this question, but since the problem occurs while I'm working in C#, I guess I'll start h ...Show All

  • Visual Basic VB2005 & VB.NET 2003 BUG: Enumeration Comparison to Integer with Option Strict On does not evaluate correctly

    Hopefully I am posting this in the correct place.  If not, please help me get there. Basically I want to report a bug with the VB2005 (and VB.NET 2003) compiler. Here is the behavior:  In VB2005 (and VB.NET 2003), Enumeration comparison to Integer with Option Strict On never implicitly converts the enumeration to the integer, and also does not show up as an error in the pre-compiler or the compiler. Thus it will incorrectly evaluate to false, even if it is true. I am part of a team where I work, and we have a very large solution that we recently converted to VB2005 (after turning on Option Strict).  We came across ...Show All

  • Visual Studio Supported projects

    I'm doing a brown bag on MSBuild in a week or so and I wanted to make sure I had this info right.  VS uses MSBuild for C#, VB and J# (I never install this so I'm not sure) projects.  SLN files aren't MSBuild files but MSBuild can parse them and build the SLN as long as it only contains projects of type: C#, VB, C++ and J#   C++ works because MSBuild just invokes VCBuild on the C++ project file.  Running MSBuild on a SLN file never invokes Visual Studio.  If your solution contains a project type not supported by MSBuild e.g. Setup projects, then you can always fallback to running devenv /build on the solution wh ...Show All

  • SQL Server Receving error with no description

    I have designed quite a few reports over the past few weeks, and today I received the following error: An error occured during local report processing. The definition of the report /Discharge7.rdl is invalid. Exception of type: 'Microsoft.ReportingServices.ReportProcessing.ReportProcessingException' was thrown. I've never seen this error before. I've gotten errors with typos in names of fields in my expressions, but I've never gotten an error on the 40 someodd other forms I have. Does anyone know what could be causing this Did u tried to preview this report before uploading it to the server, the error ...Show All

  • SQL Server How connect SQL server 2000 with c#.net .....?

    Hello masters, help me yaar i am using dotnet 2003 and SqL SERVER 2000. BUT UNABLE TO CONNECT DATABASE using dataAdaptor(design time ) or sqlconnection any can help me gs whats the error lets see the connection string. make an empty text file called "c:\test.udl" - double click it and try to build a SQL Ole Db Provider datalink. . . can you get that to work Are the TCP protocols enabled in your machines client network settings and in the servers network settings ...Show All

  • Microsoft ISV Community Center Forums Form Requery

    I have a command button on a form to create new records for the data shown on the form. When the code finished I want the form to have the new record available. I have this code at the end of the button code: Forms("frmDocumentDetail").Requery It does not work. The records do not update unless I exit the form or do something like hit the sort records button. TimD OK, that worked. Thank you. I really appreciate the time you have put into this. Now... When I went to execute the New Record a second time I got an error. I was closing the New Record form. I changed it to Me.Visable =False, but when I c ...Show All

  • Visual Studio Express Editions No projects

    Hello all I just downloaded Visual Basic 2005 Express Edition and C# 2005 Express Edition (.iso), burnt them to a CD and installed them. But when i go to create a new projects, via File - New Project, there are no projects there. I have downloaded the online downloader-thingy and repaired Visual Basic 2005 Express Edition (downloading the files instead of using the cd's), but the problem still persists. Can someone please help me with this hi, i guess there are problems happend during installing templates , may be that thread will help you http://forums.microsoft.com/MSDN/ShowPost.aspx Post ...Show All

  • Visual Studio Team System TFS MSSCCI Provider Final fails to install

    I have downloaded the latest MSSCCI provider for Team Foundation Server that was published today. The .MSI is about 1.06mb. I am able to complete most of the installation but during the last few percent a message appears with the following error: "The cabinet file '_DE4122DA27BBE897D870DBB37A5A532C' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package." I have tried installing a few times on different machines. I have also tried re-downloading a few times from different machines with different browsers. The download page ...Show All

  • Smart Device Development WM 5.0 Install update to Existing installation

    How do I update only a few EXEs to an existing program installation. Currently the Windows Mobile 5.0 PPC device causes a complete Uninstall before running a new Installer. This causes users a loss of some of their data. I only want to update some of the program executables. Please see this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=179578&SiteID=1 ...Show All

  • Software Development for Windows Vista DelayActivity dynamic update

    Hello, I would like to ask you if it is possible to update DelayActivity.TimeDuration value when DelayActivity is executing I want to achieve scenario like this: workflow is configured to simulate delay specified in the DelayActivity. After DelayActivity starts waiting, user wants to change delay value for the running instance (increase or decrease the delay value). Applying WorkflowChanges to the running workflow instance with different DelayActivity.TimeDuration value set does not work (no errors, old delay value is respected). I was also trying to remove DelayActivity from the running workflow instance and recreate it ...Show All

©2008 Software Development Network