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

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

DennisMW

Member List

Molon Labe
Rajesh batchu
xyzt
GRK
Corby111
Jim Aksel
dstorch
Shadi_05
ReiXou
Matt Lin
I.You
DKeefer
Jim Dunn
Dave9999
Ram v
Shuman Kibria
SaloS
Neeraj Maurya
egor598
Henry_Yang
Only Title

DennisMW's Q&A profile

  • .NET Development How should i start learning building Distributed Application in .NET

    Hi Guys, I am having 3 year of .NET programming exp. I made few web services but i want more knowledge about .NET Remoting as well as web services. Can you please suggest me some good book and tips for self learning. How MSTS certification help me in this. Thanks Mahesh http://msdn.microsoft.com/practices/apptype/distapps/default.aspx http://www.thinktecture.com/Resources/Books/default.html#ADR_CSHARP ...Show All

  • Visual Studio Connector inheritance problem

    Hi, I got problems with connector inheritance (i'm using the RTM bits). Suppose I start from the Task Flow template. I add a connector MasterConnector that becomes the base class for the CommentConnector. When I create an instance of the CommentConnector (I associate a comment to a task), save the diagram and reopen it, the instance of the CommentConnector has doubled (two lines appear instead of one). Has anybody noticed the same problem Thanks! Mike Try this: 1. Create a new DSL using Task Flow template 2. In the DSL designer, add a new connector and make it the base class of CommentConnector 3. Hit Transform Text Templates and F5 to debug the DSL 4. In the exp hive ...Show All

  • Windows Forms How to iterate through Windows Forms list box

    To find the selected items in a mulit-selection list box, I have tried foreach(ListItem item in myListBox.SelectedItems) but "ListItem" is not recognized. How can I identify each of the SelectedItems in order to extract their value Thanks in advance You can use the same type you used when adding to the listbox. If you used myListBox.Items.Add("a string"), then iterate with foreach(string item in myListBox.SelectedItems). Andrej ...Show All

  • Visual Studio Express Editions Activation software

    Hi All Again, right here goes, when publishing my app would like to incoporate activation but no just by serial I would like to confirm this with email aswell, obviously I know ya gonna shout and say Use sql, Is it possible u can upload Access File (mdb) and use this method or will it have to be done in sql, sample code will be very gratefull. thanks stuart You may want to look into using the Shareware Starter Kit which provides just that sort of functionality as well as much much more. ...Show All

  • Visual Studio 2008 (Pre-release) Handling username/password validation errors

    Hi, I try to implement custom token provider as is shown in "Token Provider" sample from WCF samples collection. There, when user's credentials validation fails in my custom UserNamePasswordValidator is trown new SecurityTokenException . On the client side i receive MessageSecurityException from which i'm not able to get error message from the server, only general exception description: "An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail". But FaultException also doesn't contain my error message. Also, i tried to change trowing of SecurityTokenException with FaultException but has same results. Can someone provide some guida ...Show All

  • Visual C++ LNK2019

    Hello, this will probably seem very easy to any c++ guru but I'm having a problem with the error below. I'm writing a CustomAction dll in C++ 8.0 for an MSI installation. I have a function called UpdateDispatcherAppConfig and in that function I want to be able to call a shared function which is defined in a separate class file. I don't want the shared function to be exported, I have included it so I can share some of the code that is being called from two different custom actions. What do I need to do to be able to call a shared function in a separate class Error 1 error LNK2019: unresolved external symbol "public: static unsigned int __cdecl Util::UpdateConfigFile(unsigned long,wchar_t *)" ( UpdateConfigFile@Util@@SAIKPA_W ...Show All

  • Visual C++ C standard applications in Visual Studio 2005

    Hello. Is it possible to develop Ansi C applications in Visual Studio .Net 2005 using standard libraries like <stdio.h>, <conio.h> etc. If yes, how Thanks'. Technically, you should also specify /Za to disable the ANSI C++ language extensions. And avoid all the CRT functions whose names start with an underscore... ...Show All

  • SQL Server sql 2005 downgrade to sql 7.0

    Hello people, I'm experiencing problem here that we need to downgrade our sql 2005 back to version 7.0. Apparently, all the mdf files from 2005 are recognized as "corrupted" by the 7.0 server. All my dbs are created within 2005 and i'd like to move these to the older 7.0 server. I wonder whether there are any procedure to convert 2005 mdf files so that is is compatible with sql server 7.0 or what is the most common way of solving this Any pointer would be appreciated. thx! Yes, if you want to do that more than once. If you just want to do that ad hoc you can also use the Data Import / Export wizard from SSMS. HTH, jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • .NET Development Kerberos delegation problem

    I have hunted through a serious number of blogs and web pages, but I just can't get delegation to work with our WCF application. To save some space, here is a link to the source code of a small test app that I am using: http://members.shaw.ca/murraypeterson/rcstest/ You can look through the source code to see the various settings I am using (NetTcpBinding, ClientCredentialType = TcpClientCredentialType.Windows, ProtectionLevel = System.Net.Security.ProtectionLevel.None, AllowedImpersonationLevel = TokenImpersonationLevel.Delegation, etc.). The scenario for testing is simple. Two machines, both members of the same domain (machine1 and machine2). Two users, both members of the domain (user1 and user2). On machine1, run the test ...Show All

  • Visual C++ Reading CSV data from a byte array

    I'm writing a C++/CLI (vs2005) app and would like to read in CSV data from a byte array. Is there any .Net classes that I should be using to read the CSV data If not, what are my options Charles Tam wrote: The byte array contains csv data. Then I don't understand why you are saying it is a byte array; it seems to serve no purpose except to confuse. ...Show All

  • Visual C++ New programmer getting a conversion error

    Hi, I'm hoping someone can help me with this error I have a class called CListLib which has a function with the following prototype: ListStruct *FRYSortList(int (*compareContent)(void *, void *), int order); My code call the function as follows: if(SchedFileList.FRYSortList(SortSchedOnList, LIST_SORT_ASCENDING) == NULL){ .....; } The SortSchedOnList function is declared as follows: int CKronosCOW :: SortSchedOnList(void *Node1, void *Node2) I am getting the following error: error C2664: 'FRYSortList' : cannot convert parameter 1 from 'int (void *,void *)' to 'int (__cdecl *)(void *,void *)' What am I doing wrong Thanks much Ray Sometimes you are passing (structure) object rather than it' ...Show All

  • .NET Development what domain name & username should i use for impersonate

    I have studied about impersoname & got that i need to provide Username & Password also. I got this sample : <identity impersonate="true" Username="Domain\Username" Password="Password"> what domain name & username should i use for impersonate My website is www.buzzmenow.net I am also having this same issue when deploying a website to Windows Server 2003. Everything works fine on my development server running on Windows XP. I have found that giving the SERVER/EVERYONE group access to Excel in DCOM on the 2003 server will fix the problem, but that is not a good solution. Does anyone know which local account actually needs acce ...Show All

  • Visual Studio 2008 (Pre-release) Small Bug in FederatedSecurity sample :: Off by one

    Hi, I based an STS on the FederatedSecurity sample that is on netfx3.com http://wcf.netfx3.com/files/folders/authorization/entry1954.aspx I just found a bug in it. When I use this to find the claim, I find nothing set.FindClaims(ClaimTypes.Thumbprint, Rights.PossessProperty) A bit of debugging shows that the claims do contain this information, but that it does not match the value of ClaimTypes.Thumbprint. There is an extra whack in it between "claims" and "Thumbprint". http://schemas.microsoft.com/ws/2005/05/identity/claims//Thumbprint In fact the whole set seems to have extra whacks (below). http://schemas.microsoft.com/ws/2005/05/identity/right/PossessProperty : http://schemas.microsoft.com/ws/20 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Radiosity Light Maps Generator

    Hello, I wish to light my worlds (about 200k triangles) with light maps computed by a radiosity processor. However, radiosity calculation is incredibly slow for medium/large worlds and so acceleration technique are needed. Computing lightmap on the GPU is a way to speedup the process, but I haven't found any far decent tool on internet (I have tried FSRad, but run on CPU and can't handle so much triangles). Any suggestions Thanks. P.S.: XNA include tools like this Not real-time... I means classical precomputed lightmaps (offline), but... with a radiosity processor able to handle large worlds and fastttttt... in order to permit a fine tuning of lights... Can I use D3DX PRT library to do this ...Show All

  • Software Development for Windows Vista ASP.NET and WWF

    Hi, I need to build anything like this :-) Scenario: 1) The user clicks in a button and start the workflow. 2) The workflow executes an activity and stop waiting for a action user. 3) In any moment the user access a asp.net page and list all workflows pendent and approve and cancel the workflow. 4) The stoped workflow is notified and resume the flow. I'm thinking in use the mechanism to save and track workflows in database, but I don't have idea about how to do this communication between asp.net page and workflow already started. May I to do it using events Thanks in advance. Andre Ok. thanks to your web activities i've managed to send email from wf when specific web page loads (i wonder if i could do the same w ...Show All

©2008 Software Development Network