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

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

E_X_P

Member List

Neotech
Matitude
search and deploy
TEJKIRAN
My Vizai
madenci
misiu_mietowy
Michael Herman - Parallelspace
Pauly C
William Xie
kaborka
MarcGBeauchamp
bryanedds
Asday
Indigo Cowboy
PublicError
AbhijeetRaje
snowmoon
donkaiser
YeeBoon
Only Title

E_X_P's Q&A profile

  • Visual Studio Express Editions Need to display given names from Active Directory

    Can anyone help me! I am using this msdn to accomplish Active Directory Authentication from ASP.NET - http://msdn2.microsoft.com/en-us/library/ms180890.aspx Thats all good. Now I need to display the "givenname" and "sn" (surname) from active Directory on to the web form of the authenticated login user. Cheers Hi, Your thread seems to be more appropriate in asp.net forum and there you may find satisfactory answers. Thank you. ...Show All

  • .NET Development Guideline for Connectivity Question Posting

    This was originally posted on http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=362498&SiteID=1 .   In order to better assist troubleshooting connectivity related issue, the more specific the problem you describe, the faster we can help you out. Please take a few minutes to answer the following questions and post the answers as much as possible along with your specific repro steps.   http://blogs.msdn.com/sql_protocols/ may already have your question answered. Check it out.   [1] Client side: What is the connection string in you app (please specify) If client fails to connect, what is the client error messages (please specify) Is the client remote or local to the SQL ...Show All

  • Visual Studio Team System What is accountability and shared responsibility

    In my mother tongue (Chinese), the words 'accountability' and 'responsibility' seem have the same meaning, what is the difference between them Thanks! Now I get it. The accountability is something like individual responsibility, and the shared responsibility is explained in its name. Many thanks to Mike and Clementino for the thorough explanation! ...Show All

  • Smart Device Development MSMQ- on PPC

    Hi, I have an application using msmq on ppc 2003 and wm5 device. Application on the ppc is a client and i happen to recive messages from a host which is a PC. I am losing messages on the cleint if the Host ie the PC sends me messsages in bulk ie around 4000-6000 messages. any idean on this.... thanks, praveen These messages can be lost if you are exceeding the Quotas set for Message Queueing. You need to modify the MSMQ registry settings to allow for the size and volume of messages you're receiving. Please see the link below for details http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcemsmq/html/ceconsummaryofmsmqfunctionsonwindowsce.asp ...Show All

  • SQL Server Cannot use credentials for proxy account

    Hi, because my package does not run with SQL-Server-Agent, but without problems if started by "hand", I created a new credential which contains the information needed for the package. I did this as described on: http://msdn2.microsoft.com/en-us/library/ms190703.aspx . After that i tried to create an proxy account, but when I chose the created credential, Management Studio says "Der Proxy "[name_of_credential] ist kein gultiger Windows-Benutzer(Microsoft SQL Server, Fehler: 14529)". This means something like: "This Proxy is not a valid windows-user. Error: 14529". Any hints how to use a credential that is not a windows-user Regards, Jan Wagner Hi, thanks ...Show All

  • Software Development for Windows Vista State Machine Workflow needs to time out if several state transitions do not happen within specified period

    Dear all, I know how to set a timeout on a specific event not happening within a period of time, within a single state. This is done by putting two EventDriven activities in the same state, with one awaiting the event and another waiting for a Delay to expire. However, I have a requirement for a state machine workflow to move through several states, any one of which has no specific time limit, but the complete set of state transitions needs to take place within a specific period of time. Could anyone explain how to deal with this I seem to have hit a mental block, where I can't see how to do it. Any help would be much appreciated. Dear Shelly, That works really well. Thanks for letting me know about it. I had not reali ...Show All

  • Visual Studio Team System Customising WorkItem & Work Flow

    Hi All, I am trying to customise Work Item Template. This Customisation also include definning workflow. i am not clear about this work flow what is the relation between WorkItem customisation & workflow. Any inputs with good practicle example will be highly appreciated. Thanks. Hi Yogita Thanks a lot for your help. I have gone through this link. while customsing the template (am using PTE) for a perticular WI Defination if i goto Transitions or States nodes under workflow there is option of adding fields i am not able to understand what is the use of it & where these fileds are instrumental. wht role these filds play in transition or state. Thanks Vishal ...Show All

  • .NET Development can't designer.cs

    Hi I have created a VS 2005 web site project.When the project got created, I could not see the designer.cs file. I thought it was probably a hidden file and changed my folder options in the file system=> no show Then I thought of clicking the "show all files" button in the solution explorer.I could not find it at all.Do I need to do something special to see show all files (its a C# web project). I could not find the designer.cs even in the folder on my local workspace.Is there something wrong in what I am doing ( my VS2005 is the VS2005 Team Suite edition).Can somebody shed some light on this please I am not sure if it has always been like this but it seems that for web project ...Show All

  • Visual Studio 2008 (Pre-release) Column '' is not accessible through group-by

    Hello, I'm having problems with LINQ to SQL: var gts = from t in Transactions where t.CreationDate == Today group t by new { t.TransactionDate, t.Type, t.Account, Sign = Math.Sign(t.Value) } into g select new { g.Key, Value = g.Sum(t => t.Value), NationalValue = g.Sum(t => t.NationalValue) } ; I'm getting an InvalidOperationException: Column '' is not accessible through group-by.If I change the t.Account in the group by for a t.AccountID I don't have the problem. I've also tried to use different sources that should be including the Account object to no avail. The only way I could make it work was by using Transactions.ToList(). Is this a known bug Regards, Pablo ...Show All

  • Visual C# how to insert a carriage return at the end of a string in C# pls

    2/ also, if I do : line=myStreamReader.ReadLine How do I do to keep the carriage return as part of line string So when i display line items they keep the returns and my text gets well formatted Thank you ReadLine will strip them out. The easiest thing to do is to insert them back using "\n". However you can also switch to Read to get a block of characters at a time or ReadToEnd to read the entire string into memory. If you don't need to do any manipulation then ReadToEnd is the best choice. Michael Taylor - 2/7/07 http://p3net.mvps.org ...Show All

  • Software Development for Windows Vista Raising an Event from a Workflow

    Hi, I have a very simple question. I have a WinFX Browser Application. Through this I start a Workflow and add a Service into this. The Browser Application Registers for Events in the Service. This event is raised by the Workflow itself when a certain condition is met. For some reason the Workflow raises the event but the code on the Browser Application never gets executed. I have searched everywhere for an example of this kind but could not find any. Could someone tell me how to get this done. Thanks Thanks for the answer, this works great. But how would I manage external library events inside a workflow example: I have a compression library that raise byte progression event during process and I wan ...Show All

  • Visual Studio Express Editions Snipets ??

    Hiya, I was wondering if anyone could help me. I am very very new to visual basic (just going through the first tutorial in my book :) Its telling me to use snipets to add code in, which is fine, but i have noticed that when i put snipets in its only putting in a few lines of code, compared with the pictures in the book there should be alot more. At first i thought it might be because I have a different revision of VB than the one used in the book, but when testing it my programme is not working so i guess i am missing code :( Is there any setting's I need to change I just want to double check with you, I am using for example the snipet Read Text From a File (in Processing Drives,Folders A ...Show All

  • Software Development for Windows Vista SharedConnectionWorkflowCommitWorkBatchService

    I'm persisting my workflows to separate server. This didn't work and after a lot of pounding my head against the wall and digging around in the forums I saw posts from Xin and Steve explaining SharedConnectionWorkflowCommitWorkBatchService as a workaround for the DTC issue. And now persistence works. (Thank you Xin & Steve). My question is will this workaround be a permanent part of the release going forward, or has this already been addressed / corrected I searched the database but the latest info I could find was in mid-May. Can I get a status on this Thanks, Matt From another post on the subject: Joel West wrote: I'll add some to this. The SharedConnectionWork ...Show All

  • Visual Basic FontSyles?

    How do you get a multiple fontstyle i.e Bold and Italic and Underlined all at the same time. I have 4 Checkboxes each with a different style, if I click ckbBold then I get a Bold font in my textbox but if I then click ckbItalic nothing happens until I uncheck ckbBold, so I only ever get one style. Any ideas or pointers Thanks for the reply Admedilyas, It works but not for the pupose that I need it for see below Private Sub FontChange() Dim font_style As FontStyle = FontStyle.Regular If ckbBold.Checked Then font_style = FontStyle.Bold If ckbItalic.Checked Then font_style = FontStyle.Italic If ckbUnderline.Checked Then font_style = FontStyle.Underline If ckbStrike.Checked Then font_style = Fo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Beta 2 announced (date 'in a couple of weeks')

    http://blogs.msdn.com/xna/archive/2006/10/23/announcing-xna-game-studio-express-beta-2.aspx Last week they said 'in a couple of weeks'. Today at Seattle code camp they did not commit any further to a date but said 'keep your eye on the XNA dev center'. So those who know are not talking, and the rest of us are just guessing. ...Show All

©2008 Software Development Network