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

Software Development Network >> Indigo Paul's Q&A profile

Indigo Paul

Member List

Gordon Speirs
Nat999
intrepid
Ariel Valentin
HKEC
Sharon.Danino
xRuntime
IamWasim
MikeHNatti
WinFormsUser13232
Gili
Tom Phillips
bluexx
Ziad Adada
M.Yaseen
gallarock
Caml01
Tommysaurusrex
NeTBaPb
I.Katzav
Only Title

Indigo Paul's Q&A profile

  • Windows Forms PivotTable (OWC??) SmartClient C# 2005

    Hi, - SmartClient (WinForms) C# 2005 - PivotTable control from OWC 10/11. I have an existing ASP.NET C# 2003 app that uses OWC pivottable controls extensively. I would like to migrate to SmartClient (WinForms) C# 2005. However I find the PivotTable control will not work. I am looking for a solution or an alternative to the pivottable control with equivalent features. I am using Analysis Services on the back end. Thanks ...Show All

  • Visual Studio 2008 (Pre-release) Creating positioned elements with databinding

    Hi, I need to create some positioned content of a Canvas control using databinding to a collection of business objects containing absolute coordinates of every element. I tried with ItemsControl bute the Canvas.Top and Canvas.Left properies cannot be assigned and the elements appear always stacked one under the others. Thankyou in advance Andrea Boschin Sorry, I forgot to mention. The items don't get placed directly in the ItemsPanel . You also need to use the ItemContainerStyle to pass your Canvas.Top/Left values. Something like: < ItemsControl > ... < ItemsControl.ItemContainerStyle > < Style > < Setter Property = " Canvas.Top " Value = " {Binding Y} " /> ...Show All

  • Visual FoxPro Database name in subreport with Visual Foxpro 9 with Crystal reports 9

    Hi, I am using Visual Foxpro 9 with Crystal reports 9 any one could help me to change the data source of my subreport. I am using a native Xls data type in my crystal report. I have subreport having another datasource with native Xls data type also and attched to the main report. I could change the data source of the my main report but the problem is how to change the data source for the subreport. I am using this code to create the report from Vfoxpro: *-------------------- Public CRApplication Public CRReport Public CRParm CRApplication = createobject ("CrystalRuntime.Application") CRReport = createobject ("CrystalRuntime.Report") CRReport2 = createobject ("CrystalRuntime.Report") REPNAME=REPSPATH+ ...Show All

  • Visual C++ CWinFormsControl and VC.NEt

    1) Is CWinFormsControl supported by VC.NET 2) How would I use a .NET control in native code in VC.NET. I wrote some code in VC2005 using the CWinFormsControl class. I included afxwinforms.h in my stdafx.h file to facilitate the class. But when I tried running the code under CV.NET it said that afxwinforms wasn't found. So my question is: Is CWinFormsControl supported by VC.NET . and if so do include afxwinforms.h or something else. and if this is not supported by VC.NET how would I use a .NET control in native code in VC.NET. Thanks! I have VC2005 standard. But yeah, I'm getting a compile error saying that afxwinforms.h was not found when compiling using VC2003.net. When I looked at msdn online library under .NET ...Show All

  • .NET Development Error occured when reuse the socket after Socket.Disconnect(true);

    Error text: Only one usage of each socket address (protocol/network address/port) is normally permitted. I have to compare speed of Socket.Accept() vs speed of Socket.Select() in multithread server without using internal thread pool (Socket.BeginAccept/Socket.EndAccept) for accept incoming connections. And I found nothing useful about .NET alternative for DisconnectEx() + ConnectEx() for client side. Can anyone help me with right way for use Socket.Disconnect(true)   Server code: class Program { static ManualResetEvent waitHandle = new ManualResetEvent ( false ); static int connectionsCounter = 0; static void Main( string [] args) { IPEndPoint localEP ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. xBox 360 and Windows Development

    From what I understand the whole point of XNA is to provide an environment for developers to develop games that can run on both the xbox 360 and Microsofts Windows XP. However, when I create a new project I notice that both the xbox and Windows platforms have two different starter projects. If I create a windows project will it still be able to run on an xbox Or should I create an xbox project and a windows project and just use the same source files Another quick question, please correct me if I am wrong, but xbox 360 support is not supported or implemented in XNA yet correct So even if I create an xbox 360 project, I can't use it till the final release of XNA That is why I posted this, because I want to develop it on Windows till t ...Show All

  • Visual C# Iterating Outlook Contacts

    Hi there!, I have this very strange problem: I want to iterate through Outlook contacts located in a public folder, but iteration stops randomly giving different error codes, among them these ones: -833601531, -695189499, -625983483, -37732347. Everytime I get the same text message: "The operation failed". for (int i = 1; i <= mexicoContacts.Items.Count; i++) { if (mexicoContacts.Items is Outlook.ContactItem) { Outlook.ContactItem contact = (Outlook.ContactItem)mexicoContacts.Items ; if (contact.LastName != null) listBox1.Items.Add(contact.LastName); } } Any Ideas Thanks... Finally!!! this is what I needed: using System.Runtime.InteropServices; ... Mar ...Show All

  • .NET Development New to Web Services

    I have been developing applications for about 5 years and I have never used web services. Right now I work for a state agency that is wanting to move to a ASP.NET application within the next 2 years. I would like to present them with an option for a smart client application, but I am not familiar with web services or SOA. Can someone please help me out with this What are the differences between web services and SOA Would it be better to create a windows form application or a ASP.NET application using web services or SOA. Please keep in mind that we do not have any web developers in the agency. I am a VB.NET guy and we have a VBA guy who knows SQL Server. Thanks For pointers to technologies that are involved in the implemen ...Show All

  • SQL Server How to get Top 3 records in the group level?

    Hi all, I have a query which is grouped by a field called R_ID, which gives me a list of records for each R_ID. So here is the thing, I want to get only top 3 records for each R_ID. I tried using 'select top 3....', but the result is not what I wanted. It doesn't consider the grouping. Is there any way to achieve this task Please let me know if some body has any idea. Thx. Amde: I set up a mock-up to compare Lucky's query with a query based on ROW_NUMBER. I created the T1 table with 32767 distinct R_ID entries and 30 distinct TEXT_DATA entries for each R_ID -- nearly 1,000,000 rows. When I ran Lucky's query with the table without any indexes it took about 102 seconds with 6.6 million logic ...Show All

  • SQL Server Upload Changes to SQL Server 2000

    Hi I need a solution on how to upload a UDF to SQL Server. I have already thought of using DTS, but I am told that we do not have access to SQL Server 2000 at all, but I was on the right track. I looked at using a utility called toad but this is not installed on the box. I was told that we are using MSDE and not SQL Server. Any help would be appreciated ...Show All

  • SQL Server What methods can be used to improve the reliability of SSIS?

    Hi ,all here, I am having a question about what other methods are avaliable in SSIS besides error outputs and checkpoints to improve the reliability of SSIS Thanks a lot in advance for any guidance and advices for that. With best regards, Yours sincerely, What do you mean by "reliability" That is such an open term I could give a whole raft of answers. Reliability of what exactly If you are talking about reliability of your ETL processes then there is no substitute for a well defined and executed testing strategy. -Jamie ...Show All

  • Visual C# Ambiguity between methods ... Using method group?!

    Why do I get the following message when I am trying to rebuild my solution ! Warning 1 Ambiguity between method 'Microsoft.Office.Interop.Word._Document.Close(ref object, ref object, ref object)' and non-method 'Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close'. Using method group. C:\Documents and Settings\Charoite\My Documents\Visual Studio 2005\Projects\InteropProject\Microsoft\WordPrinter.cs 27 27 InteropProject Warning 2 Ambiguity between method 'Microsoft.Office.Interop.Word._Application.Quit(ref object, ref object, ref object)' and non-method 'Microsoft.Office.Interop.Word.ApplicationEvents4_Event.Quit'. Using method group. C:\Documents and Settings\Charoite\My Documents\V ...Show All

  • SQL Server Calculated Measure at Totals Level

    Hello guys, Y have the following cube. Dimensions: Age group, Year Measures: Mortality, Population, Standard Population (this measures doesn't have Year dim relation because it applies to all Years) I need to get the [Mortality Age Adjusted Rate] defined as: SUM(Expected Death) / SUM(Standard Population) * 100 000 Where: Expected Death = (Mortality / Population) * Standard Population As you can see the Mortality Age Adjusted Rate (MAAR) is a measure that is not at the row level but it depends of the set of Age Group(s) selected. Example: This is an extract for Year 2003 to show you as example: Age group Mortality Population Standard Population Expected Death 0-4 years 6 275, ...Show All

  • SQL Server Package Configurations - Using One config file for Multiple Packages

    Hi All, I am working on a project currently where we have many SSIS packages and we want to minimize the number of config files to be used. What I was thinking was using one master config file which will have Server/Database info which will be used by all the packages. Now the thing is there are multiple packages which are being executed from within a master package and I was wondering if this will be an issue. Is there anything else that I will have to keep in mind Any help is appreciated. Thanks If my memory serves correctly then you will get lots of warnings about references in your config file to properties that don't exist in your package. But it should still execute OK. -Jamie ...Show All

  • Visual C++ possible compiler bug: C++ exception handling crashes when fibers are in use

    When a catch block inside a fiber contains a SwitchToFiber() API call, the next throw will crash in some internal, compiler generated code (near a call to IsExceptionObjectToBeDestroyed()). See test snippet below. It consistently crashes on on the marked line. If you move the SwitchToFiber() call after the catch(), it works fine. Tested with VC++7.1, VC++8.0, both debug / optimized and single-threaded / multi-theaded (/MT,/MD) compile options -- makes no difference. Regards, Andras #define _WIN32_WINNT 0x0400 #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <stdio.h> LPVOID lpFiber; LPVOID lpMainFiber; class Ex { }; void fiber_func(void *) { printf(" enter fiber_func\n"); try { printf(& ...Show All

©2008 Software Development Network