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

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

mike6271

Member List

Gabriel Muñoz Luna
Victor Hadianto
thekaran
Dougal
Chris Jiang
ramraja_55
Danielz
Yousef ED
Nick2006_Houston
cplusplus1
vtortola
LukasO
nagarajan1948
Ayhan Yerli (TR-NL)
coconut113651
chrisryp
Tryst
Shaantu
Attila Fogel
Jared Knapp
Only Title

mike6271's Q&A profile

  • SQL Server BULK INSERT and BCP Active Directory Delegation after SQL 2005 migration

    Not sure if anyone else out there is having this problem but we recently migrated some of our databases to SQL 2005. We have some processes that use BULK INSERT or BCP to import the data. On the new server I required that the files we import are stored and held on the FileStore not the database server. If the user uses SQL authentication this work fine. However, if the user is using Integrated Authentication it fails saying that it could not find the file or access is denied. The SQL Server services are using a domain account and they have access to the share where the file resides, otherwise SQL authentication would not work. After some web searches I found out that in SQL 2000 would automatically impersonate as the SQL Service ...Show All

  • Visual C# Search result page display traking

    Hi Guys, I have a lot of keywords to pass to google or yahoo search, or search.live.com. Keywords are on text file. So I need some idea how to handle it, sample codes which will open any of the search pages, and pass the keyword,which are on text file, then it writes top 10 results of the search in text file. Example: keywords in text inputfile F1 test1 test2 test3 www.google.com(test1 ) or http://search.yahoo.com/(text1 ) or www.search.live.com(text1 ) search result 1 www.test1.com 2 www.testXX.com 3 www.testXXXX.com 4. 10. www. www.google.com(test2 ) or http://search.yahoo.com/(text2 ) or www.search.live.com(text2 ) 1.www.test2.com 2.www.text2XX.com 3........ ...Show All

  • Visual Studio Team System Custom History Control

    We would like to add a tab to the work items that is similar to the History tab in its functionality, but only lists times where the work item state transitioned and who did it. I could figure it out by reading the database, but this isn't recommended since the DB schema could change. Also, I would need some way to perform a query when the work item's form is shown. I could add a trigger to modify a custom field that contained the information, but again, the trigger would be referencing the schema. Also, I don't like adding to the database in this fashion. If there is an event that is fired every time a work item is changed, I could have the event call a web service and let it modify a custom field if the state had changed. This s ...Show All

  • .NET Development checkbox in datagrid

    Hi, Sorry to my poor english.In my aspx page i have a DropDownList and a datagrid.Selecting the value from DDL the datagrid values will change. In datagrid 4 columns are there(tabID,RoleID,CategoryID,Isdeleted).In that 1 column(Isdeleted) is item template column with checkbox. Now i want to save which are all the checkbox has checked in all pages in the datagrid. Table structure is tabid have more then one roleid, roleid have more then one categoryid. UI questions about aspx are better answered at http://forums.asp.net . Thanks. ...Show All

  • Visual Studio 2008 (Pre-release) Syntax for multiple filters in Single

    Silly question, but I cannot find example of this anywhere. How can I specify multiple filters in Single() ...this works... TblDefinition defn = data.TblDefinitions.Single(c => c.Field1 = "blah"); ...but how to do this.... TblDefinition defn = data.TblDefinitions.Single(c => c.Field1 == "blah", c.Field2 == "another"); Try this: TblDefinition defn = data.TblDefinitions.Single(c => c.Field1 == "blah" && c.Field2 == "another"); Cheers, Steve ...Show All

  • Audio and Video Development Question about audio fingerprinting

    hi, The only information I can find about Audio Fingerprinting is in WM10 it is done using metadata and in WM11 it is waveform fingerprinting. I have tested that and its working fine. But is there any literature on fingerprinting and is there any API for fingerprinting (finding id3 tag, album art based on waveform fingerprint) Thanks, kalyan Audio Fingerprinting: When an ID3 tag for a song is missing, the first few seconds of the song is cut and it is compared with a database of songs stored in some server and the information about the song is identified. ...Show All

  • Smart Device Development Why does Emulator seem to drop the network connection after 1-2 minutes

    I had spoken too soon to regards to the ability to ping my emulator instance. It works great in the first 1-2 minutes and then seems to drop out. I did install the virtual network driver as suggested yesterday and that gave me the initial capability. Is there a known issue with the CTP arm emulator that I don't know about Thanks in advance for any help :) Bob Hanson BobH wrote: Hello Andrew, Sorry about the confusion with starting a second but I thought we did complete success last time. Just to make sure I am doing whjat you are suggesting correctly, can you please let me know exactly which emulator you are asking me to try. Thanks for your help :) Bob Hanson hi again Bob, this one ...Show All

  • SQL Server What is msmerge_contents90_forall.bcp?

    Hi, I have merge replication running (sql2005) with 13 subscriptions. I use dynamic filters to reduce subscriber traffic. I have noticed that when I create a dynamic snapshot for a new subscription it is including a file called msmerge_contents90_forall.bcp. This file is approx 110Mb in size. What is this file How can I reduce the size of it I tried running the snapshot agent at the publishers but it still generates the same size file. Many thanks for your help. Graham Thanks for the info Greg. I see there are two clean up jobs already defined. Agent history clean up : Distributor and Distribution clean up : Distributor. Are you refering to any of these two Another question I must as ...Show All

  • Visual Studio 2008 (Pre-release) Difficulty installing .NET 3.0 on Windows XP

    I'm trying to get .NET 3.0 working with VS 2005 so that I can use WPF. I've followed the instructions at: http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/#runWinFXApps I've installed on two machines - one a clean Windows XP machine - without any luck. The installation order has been: Visual Studio (already on both machines), Net 3.0 and then the SDK. No additional project types are shown in VS after install and an attempt at installing Orcas results in the error message that .NET 3.0 isn't installed. Any suggestions mikej There is several threads on the Cider forum about this. Aparently, alot of people have had issues with the installer. There is a workaround poste ...Show All

  • .NET Development Please help: How to validate a flat file against xml schema?

    Dear Experts, I have the following 2 files: - a well formatted flat file (text file); - a XML schema that correponds to the above text file. This XML schema file defines the clearly the positions and lengh of the each of the fields in the flat file. Actually this XML schema was created using Biztalk. Now I would like to create a program that can validate the flat file against the XML schema. Is it possible to achieve this If direct validation is not possible, I am thinking to create an XSLT file based on the above two files and then uses .NET classes to do transformation on the flat file. In case the flat file does not comply with the XML Schema, the transformation will be failed and the correponding errors would be given out. ...Show All

  • Windows Forms Question regarding Web Setup Project

    I'm trying to create a web setup project and by default the files are being copied to the inetpub\wwwroot folder. My question is - is there a way the user can specify the location during installation and can I provide a "Folder Dialog" to do the same. Can this be achieved with out any custom coding using Installer class. I appreciate if someone can provide me with some info. Thank you Ajay You'd need to do this with Orca, manually editing the MSI file (install from Orca.msi in the Windows SDK). Open the MSI file with Orca, find the Control table in the left side table list. Then find the WebFolderForm column with TARGETVDIR in the Property column aand change the Attributes value in that row fr ...Show All

  • Visual Studio Team System thread counters

    What is the system/thread counter Is it a count of all the threads running on the box, or of the IIS worker process threads Is there a thread counter just for IIS worker process threads What about the "number of .net clr logical threads" and "number of .net clr physical threads" counters What are those We're in the process of refactoring from ASP and VB6com to .Net. We're looking to a) understand what exactly the thread counters I've mentioned are, and b) find a counter or counters that will tell us about threads in both parts of out app. Thanks! Charlie Charlie, with the VSTS load test editor, you can see these description for any performance counter by doing the follo ...Show All

  • Smart Device Development Issue with soft keys...

    Hello out there.. I have a problem that is very similar to this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=94963&SiteID=1 However, my setup is different, and that thread was created in 2005, so I thought I'd start a new one. I am using Platform Builder for Windows Mobile 5.0, using both AKU 3.2 build 15632 and Crossbow build 15242. I created a SmartPhone Project through the Build Window Wizard, by cloning the Device Emulator BSP, retail release type, and 0409 English, 96 DPI. The project builds as expected when running BuildAll.bat. That part looks good. I was able to download the image to the emulator, and the device initializes. But, the Soft Keys, Talk and End keys are misinterpreted as 1 through 4, respectively. ...Show All

  • .NET Development dot net framework 2.0

    We have an application running on Dot NET Framework 2.0 Local it is working fine. From the network it will not work. In systemadministration only the dot net framework 1.1 configuration is showing nothing with 2.0 so I cannot configure the application to be trusted over the network. I have a XP Pro SP2 machine with Dot Net Framework 1.1 and 2.0 installed on it I just deinstalled all and tried different configurations but still no 2.0 configuration possibilities Kind regards Erik Rijsdijk IT Firstly you can't load the v2.0 MMC addin at the same time as v1.1. You'll have to pick one and use it. However they will both appear in MMC. Secondly the tool is not installed as part o ...Show All

  • Visual C# Dynamic Casting in C# at runtime

    How Can I dynamically cast at runtime.That is I am passing a child class object in the parent class object in a function.In t hat function i have to cast to passed child class object at runtime. How Can I Cast It. protected void Page_Load( object sender, EventArgs e) { Circle circleObj = new Circle (); circleObj.Radius = 5; Response.Write(chkRefrence(circleObj)+ "<br \\>After " ); } private string chkRefrence( Shape shapeObject) { //Type t = shapeObject.GetType(); ((t) shapeObject).Radius = 15; //It is here I want's to cast to Circle shapeObject.Id = "TestObj " ; return shapeObject.ToString(); } will this help: http://weblogs.sq ...Show All

©2008 Software Development Network