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

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

asalcedo

Member List

daijun
CJW99
WN3335
katokay
scribework
EtherealSky
Chris4578
pinoyz
fiaolle
claydevin
Aleksey Nagoga.
Alan M Dunsmuir
WHats wrong
Marcel Pighin
haba
bSathish
chrissav
Thomas McClendon
Steve Graber
ZeroSerenity
Only Title

asalcedo's Q&A profile

  • Software Development for Windows Vista Design questions for payment system (timer)

    Hi, I'm new to workflow and currently is trying to evaluate our payment system by utilizing this new technology. I have the following question and would appreciate any links, comments, or hints. Our application is a asp.net web application, where user can submite their donations. There are many possible scenarios. One of them is: user do their first payment right away and then schedule future payments, for example, charge their credit card every first day of the month. The steps are as follows: There is a asp.net website where donations are made. After the donation is submitted, the workflow starts. Inside the workflow, we create invoice, charge credit card/check/direct deposit, send thank you email, and etc. On the ...Show All

  • Windows Forms Font families

    hey, I am trying to make it so that a combobox's items are all of the fonts the computer has, so I tryed this: comboBox2.Items.Add(System.Drawing. FontFamily .Families.ToString()); but that only makes it have one item with the words: System.Drawing.FontFamily.......... but I want it to show all the fonts currently on the computer...how would I do that Thanks :) FontFamiliy.Families property returns an array of FontFamily and you need to add an item to the combobox for each item in the array: foreach (FontFamily family in FontFamily.Families) { comboBox2.Items.Add(family.Name); }   ...Show All

  • SQL Server Cognos Vs SSIS

    We are trying to investigate the ETL tools available in the market and have narrowed down to two COGNOS - ETL (Data Manager Tool) Microsoft - SSIS Is there a comparison study out there which would help us in this process. Also a list of things we need to look out for in a ETL tool will also help. Thanks http://www.180systems.com/BI-Comparison2006.xls Looks like someone has done the research for you. Is this what you are looking for ...Show All

  • Visual FoxPro Using SQL to create a multi-periods sum result.

    Hi; I need to create a cursor with multiple columns listing sums of sales. For example: Product# 2006 Sales 2005 Sales 2004 sales 2003 sales 2002 sales Lets assume the table structure is simply ProductId, SoldDate and SoldAmount. This table obviously lists individual sales. Before I start xbasing my way into this, can I do this using a SQL select command Thanks. product id    sales   sales_date 0001      1000   01/01/2006 0002        500   12/01/2005 0003      2300   12/01/2004   introduce one field ...Show All

  • Windows Search Technologies Problems enabling WDS in the Enterprise

    Our network consists of Win2003 Servers and WinXP clients. We installed WDS on some clients, and faced the following serious problems: 1. When WDS was configured in some clients to also index the network drives, for some other clients, some remote files became "Read Only" during their work on these files. It seems that the indexing process gained some exclusive access to these files. 2. When we tried to disable the indexing of the network drives - WDS neglected this configuration and continued to index all drives. It seems to us that WDS is somewhat not matured enough for the enterprise. Can anyone help Thanks, Gadi If you do not use group policy to control WDS in an enterp ...Show All

  • Windows Forms Automatically login Remote Desktop web connection?

    Hi, everyone! I'm looking for a way to have my Remote Desktop Web connection send the login credentials behind-the-scenes, so it would automatically login when a user clicks "Connect". I don't know if it's possible or not, but the MSDN article about Remote Desktop Web Connection here indicates that "Optionally, the user supplies automatic logon information (username, domain) for the remote session." To me, this sounds like it might be possible, but I don't see any forthcoming way to do it. As always, your help and consideration is appreciated Thanks a lot! It sounds like this is the stuff I need. Do you know of any sites that use these interfaces in examples I'm just trying to ...Show All

  • Software Development for Windows Vista human workflow and tasklist

    hi,im quite new to windows WF i have experience of developing human workflows with wfmc standards,but windows WF concepts seems to be diffrent. i should develop a human workflow which is role based.for example each step of the flow(activity) is assigned to a role(an individual person or a group of persons who meets a certain criteria eg. all employer of department X). i want to know how should i get the task list of a certain user who logs into the system.any methode any example any idea i should mention that i DONT want to involve sharepoint in my system and i want to develop all the system as a web application without incvolving sharepoint. any help on this is welcomed. Hi, The basic a ...Show All

  • .NET Development Transfer data form webpage to other application

    Hi All, I want to transfer the data form webpage to any other own application which is running in backend.How i develop this web page. which technology is good for this or any particular protocol i have to use for this. Please suggest if any idea regarding data transfer. Thanks Shiva Vrata Anand Hi All, Actually I want to implement Push Technology. When any data updates in database or any web page who fetch information from database then this information or data i want in my exe which is continous runing in backend. Is there any method how i get the data in my exe. This exe is VC++ exe. I don't want that my VC++ exe regularlly monitor in that webpage. means the information flow from webpage to VC++ applicat ...Show All

  • Visual Studio Team System TreeDiff - another usefull entry point for the IDE integration

    view history for a folder select two changesets right-click & Compare ...Show All

  • Visual Basic BIG error

    OK, I'm gettin this error 44 and I don't know what to do. Error    44    The "ResolveComReference" task failed unexpectedly. System.SystemException: The type library importer encountered an error during type verification. Try importing without class members. ---> System.MissingMethodException: Method not found: 'Void VB._PictureBox.set__Default(System.Object)'.    at System.Reflection.Module.InternalLoadInMemoryTypeByName(String className)    at System.Runtime.InteropServices.TypeLibConverter.TypeResolveHandler.ResolveEvent(Object sender, ResolveEventArgs args)    at System.AppDomain.OnTypeResolveEvent(String typeName)    --- End of inner exception stack trace --- S ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. release date of font stuff?

    on the xna lunch party, they showed some font stuff. do anybody know, when the font stuff will be released i know that there are a lots of classes etc. which implements some stuff equal to the stuff which were showed on the xna lunch party, but i want to know, when we will be able to use some stoff from microsoft microsoft will go the same way in order to draw fonts. but the question is if there will be an official utility and an official class in order to draw fonts (with sprites)... ...Show All

  • Visual C# C# and Adobe PDF Reader

    We all know how easy it is to display a pdf in a C# application, but the problem that I can't seem to figure out is how to create a reference to any version of Adobe Reader installed on the users machine. If I use AcroPDF.dll from reader 8, I cannot open a pdf within my application if the user has either a newer or older version installed. Is there any way around this Can I create a reference to any version of Adobe Reader installed on the machine Thanks in advance. Hi, Look, I'm not an expert, but I don't think its a C# issue either. It may work (try it, but I wouldn't know myself) if you got hold of a very early version of Adobe Acrobat Reader 3 or 4, and found the AcroPDF.dll for that applicati ...Show All

  • Windows Forms is there a limit on Controls contained in VS 2005 .NET Form ? handle creation exception

    I get a Error creating a window handle upon trying to create the 9937'th control. The number of controls when the exception occurs is dependent upon the mixture of controls created, InkEdit controls produce the exception much earlier. I was attempting to reproduce the incosistent behavior of ToolTip in my "real" application which currently has 9,216 controls (previous post that has no solution yet!). This has the feeling of running out of memory OS: Windows XP professional (32bit), patches as of 9/12/2006 CPU: Dual Core Opteron, 2GB Ram Attached is the exception detail and the files that make up the VS 2005 test program. ================================================================== System.ComponentModel ...Show All

  • Software Development for Windows Vista Windows Workflow Analyser

    Anyone know if there are/will be any tools to analyse the efficiency of a workflow designed in Visual Studio 2005 I'm going to be modelling our organisation's procedures and dataflows using WWF and wanted to use a tool that would highlight where any bottlenecks or possible points of low efficiency may exist... There's a sub-category of Business Process Management tools called Simulation Tools. That's what you need. I haven't seen any announced publicly yet for Windows Workflow Foundation but I'm sure they will come. Regards, Paul ...Show All

  • SQL Server ADP connection to SQL

    I would like any advice on connecting an Access Project to SQL Server 2000. Authentication is in mixed mode and user enter a name and password. When he click cancel twice, it will appear error - he enter without check a name and password. How I can prevent that ...Show All

©2008 Software Development Network