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

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

paukp06

Member List

VegasKristy
TAMurugan
sstackho
dmarkow2
sharon n.
Tony1979
Rajiv Roopan
RJ_KP
Eric Donoho
Musiconet
Karthik Subramanyam
Anjum Ali
brettman
sydneyausguy
Jesper25539
matthew.tech
Dmitry Okonov
PatrickEh
JohnSo
Delly
Only Title

paukp06's Q&A profile

  • Visual Studio Team System TfsReportDS Error

    While trying to look at the "Builds" report, I got this error: An error has occurred during report processing. (rsProcessingAborted) Cannot impersonate user for data source 'TfsReportDS'. (rsErrorImpersonatingUser) Logon failed. (rsLogonFailed) Logon failure: the user has not been granted the requested logon type at this computer. (Exception from HRESULT: 0x80070569) Ideas on how to fix Nevermind.  I just rebooted the TF Server VM and now it's working.  Thanks! ...Show All

  • Windows Live Developer Forums Worlds Best App Contest Winners

    It’s time to announce the winning applications for MSNR Messenger’s Worlds Best App Contest , which MSN ran from September through December 31 st , 2005. There were a lot of great entries, hard work and interesting new ideas for building new applications and games within Messenger. Submitted applications were judged based on the official rules and judging criteria which included creativity, launches during the contest, suitability for the medium and best use of other MSN services. The following identified winning applications still subject to verification and acceptance of their winning prizes : Grand Pri ...Show All

  • .NET Development Why does the 64Bit section exsist?

    As I understand the .Net framework there shouldn't be any issues for any code compiled in MSIL runing on a 64Bit system. So why does this section of the forum exist Other code than can fail if executed on a different platform, is code that assumes the IntPtr type is a particular size. It is 4 bytes on 32-bit Windows but 8 bytes on 64-bit Windows. I imagine that this could also be an issue for serialization If I serialize an object that contains (for whatever reason) some IntPtr fields from a 64-bit app and later recreate that object but this time from a 32-bit app, I suspect that I will get a problem. ...Show All

  • SQL Server Issues while loading in parallel into a partitioned table

    Hi there,   We have a Fact table that gets loaded monthly with 410 Millions rows. We therefore, decided to create a partitioned table having its partition key the week_of_Year.   Process: performed using SSIS one package. We first load the data from staging in parallel using 4 different connections into 4 weekly work tables, about 108 Millions each; and during this process we perform all the lookups and transformations.   The next step we load from the 4 work tables into the partitioned Fact Table. We still use 4 different connections, and data flows that run in parallel to perform this tas ...Show All

  • Visual Studio 2008 (Pre-release) Does Lambda expressions support outer variable? and Nested expressions?

    I want to define a expression Func< string , Func<Lot, bool >> exp; It's anonymous methods version is exp = delegate ( string cjId) {                   return delegate (Lot lot) {                       return lot.InControlJob.ID == cjId;                 };            }; But when I write that: exp = (string cjid) =&g ...Show All

  • Visual Basic Populating listboxes from text files

    I am relatively new to VB. Right now I am having trouble populating multiple listboxes with data from a textfile. Background...I have a textfile with three types of data (income, id#, #of persons) and the text file has the data listed in order (income, id, persons, income, id, persons etc). How do I populate their respective listboxes from an open dialog box containing the textfile is the file format income, id, person or income id person and are you trying to populate 3 listboxes - one with all the incomes, one with all id and the third with all the persons just so i can get the scenario her ...Show All

  • SQL Server Error Number : 29503 The SQL Server service failed to start.

    Is there a trick to getting this installed correctly Everything works great until it gets up to starting the service. Here is the complete section of my setup log file. SQL 2005 Standard. Machine : KINGSERVER550 Product : SQL Server Database Services Error : The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually." -------------------------------------------------------------------------------- Machine : KINGSERVER550 Product : Microsoft SQL Server 2005 Product Version ...Show All

  • Visual Basic Sharepoint web permissions

    I have created a program that mass creates frontpage subwebs and sets the permissions. I have the creating of frontpage subwebs working really well exept the only way I knew how to set the permissions is to use an Internet Explorer control and sends commands like document.form.button.click ect. to navigate though the permissions website to set user permissions which takes a long time when you are trying to process 1000 subwebs and is prone to errors. Is there a better, easier way to set the unique permissions that isn't prone to errors. ...Show All

  • .NET Development AmbiguousMatchException

    Hi there, I'm using a call to Type.GetProperty(<prop name>) on an instance of the TableLayoutPanel in order to get the PropertyInfo for the Controls property. However, when I call this I get an AmbiguousMatchException. Can anyone explain to me why this property name is ambiguous and is there a way of making it unambiguous Regards Graham Oh ***! Sorry Stephen, on returning to the project and code I cannot repro the case and hence give you the exact snip of code you want. However, I shall continue trying to repro this and if I managed to get it I'll let you know. This is so annoying! Graham ...Show All

  • Software Development for Windows Vista DirectX 9 games with Vista?

    I have Windows Vista Build 5270 installed and tried a DirectX 9 game (SilkRoad Online). It said, that I should install DirectX 9.0b or later. dxdiag is telling me, that DirectX 10 is already installed. So is there any chance to run that game with Vista I tried to remove DirectX 10 with tools like Happy DirectX Uninstall and DirectX Buster but they didn’t work either. I can’t even delete the files manually when I boot another OS. ...Show All

  • Visual Studio Express Editions Starting to work with Arrays - Two Questions

    I am using the random number generater to load 10 numbers to an array based upon the user selection the random number limit. I have 2 questions - After I'm done with the array(10) ... I need to clear out the values; so, the user can restart. I would like to take the random array and sort it and display it to listbox entitled lboxSorted. Any help would be appreciated. Thanks, Tom Below is my code for the portion I have working. Try ' Converts input text to numeric and assign values to variable maxInput = Integer .Parse( Me .txtInput.Text) ' generate 10 random numbers For i = 0 To 9 Step 1 g ...Show All

  • Visual C# Creating a C# project programmatically

    I know how to create a C# solution and implement classes and save the solution and build it etc. I am looking for a method of doing all these steps in a program. Is there a way I can create a solution/project, add source files to it, save it and build it within another program, which could be a C# program. Something like this: CSharpSolution mySolution = new VisualStudio.CSharpSolution(); mySolution.CreateProject("myCSharpProj"); mySolution.Project.Addfiles("file1.cs"); mySolution.Save(); mySolution.Build(); Any help is appreciated. Thanks, J Visual Studio is programmable, we have an aut ...Show All

  • Windows Forms Problem to get the information about user name while using windows service

    Hello, I'm using WindowsIdentity.GetCurrent() to get user name of Logged User in Windows. And I got the correct result (the current user's name was displayed) But if I use it with windows service program the result always be "System", not the current user who logged in windows. How to solve this problem Is it possible to get the information about user name while using windows service Hi, Were you able to solve your problem Thank you, Bhanu. ...Show All

  • .NET Development FK violation on TableAdapter.Update

    I have 2 tables, namely Parent(ParentID, ParentName) and Child(ChildID, ChildName, ParentID). I created a form by dragging the datasources based on the dataset produced by this tables. The Parent table is represented by details while the Child is with DataGridView. The Child table bindingsource is bound to the relationship between the two tables so I expected that Child.ParentID would change accordingly after updating the parent table to the database. To my surprise, it didnt and throws an exception about FK violation! Here's the code for the BindingNavigator savebutton click event generated by the IDE. private void parentBindingNavigatorS ...Show All

  • SQL Server Securing the MS SQL Server 2005 database on client side

    Hello! I developed database driven .NET application and I need to deploy it. I faced a problem, which is "how to protect my database against direct access". I use MS SQL Server 2005 Express Edition as a DBMS and appropriate database. I want to make possible to manipulate with data in my database only through my client application. 1. How do I define SA password and instance name in silent mode of MS SQL 2005 EE installation with Mixed type of Authentication 1.1. Can I change SA password after the installation 2. If my database be attached to my new instance... Is it possible to copy my database, attach it to another in ...Show All

©2008 Software Development Network