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

Software Development Network >> Raphael DarkSide's Q&A profile

Raphael DarkSide

Member List

Burger
narayank
sbloom
Chris TBerry
FreddyFresh
Blader
b5lurker
Ultan
SzyKam
justme73
C.K.McCann
vatozanab
Amnu cherian
CytoTech
chinimimita
Carlos Lozano
Geoffroy
Anonymous_900
WariaReiMasi
chakravarthy_b
Only Title

Raphael DarkSide's Q&A profile

  • SQL Server Fuzzy Grouping: Any success with > 3 million records?

    I have tried to process > 3 million Fuzzy grouping records on two different servers with no success. 3 mill works but anything above 4 mill doesn't. Some background: We are trying to de-dup our customer table on: name (.5 min), address1 (.5 min), city (.5 min), state (exact). .8 overall record min score. Output includes additional fields: customerid, sourceid, address2, country, phonenumber Without SP1 installed I couldn't even ge ...Show All

  • Software Development for Windows Vista Vista 5308 issues with Emulex Fibre Channel

    This may be a pretty rare problem right now, but I cannot get Vista to install or run with an Emulex LP8000 fibre channel card. All of my servers and workstations boot from and work with partitions on Dell PowerVault fibre channel arrays. I seem to have narrowed the problem down to the fibre channel card. I use the same LP8000s in all of my machines and when I try to install Vista on any other computer with different hardware setups, they wil ...Show All

  • Visual C# How to define arrays in C# Struct

    Hello, I've searched through forum using search for my problem and finally I got to make new one. Here we go. I'm trying to make a structure in C# which converted from this Delphi code. When it comes to "Array [0..3] of String[128]", I don't know how to make a C# structure to match this type of structure. I'd like to know if there is any method available to declare arrays like this in C# or not. So far I've tried, I cannot decla ...Show All

  • Visual Studio Express Editions SQL and VB

    Hello I was wanderin say you create an app that has a sql database ... when you publish it and send it to a friend do they need to have sql database to connect to like i do in VB yea im a complet noob sorry and any sql intros would be great.. ty ty ty ty Hi Billy. Sorry, if you want to use things like sarcasm, it doesn't travel well without emoticons :-) I agree - not using a database to 'save resources' ma ...Show All

  • Visual Studio Build file for Web Deployment Project

    Hi, I created a web deployment project and web site itself has many dependencies. When I run msbuild on Web deployment project, it builds only the web site not the dependencies How do I make sure the deployment projects builds all the included project type references thanks Suresh Hi Suresh, I don't think the problem is that the dependencies aren't being build, rather the output from thei ...Show All

  • .NET Development Creating of keys in the Registry.LocalMachine

    I need to read some keys from registry, but, if keys are abscent, application must create these keys with default values. RegistryKey regKey; ... //then I tried to make such: regKey = Registry .LocalMachine.CreateSubKey(res); //but regKey == null. In MSDN i found that: //============================================================== IOException The nesting level exceeds 510. -or- A system e ...Show All

  • Smart Device Development asp.net control led

    I need help, how do I enable my asp.net webby to control leds via parallel port I need to turn on and off leds upon clicking a button. i think this article can help to you http://www.codeproject.com/csharp/csppleds.asp df=100&forumid=21021&exp=0&select=1050691 this article from Levent Saltuklaroglu some articles of his are starter one ...Show All

  • SQL Server No loading data from ScriptComponent.

    Dear all, I've created a Data Flow scenario as follow: At first I've got a Flat File Source and then Script Component Task and then OleDb Destination, linked among them by arrows, of course. When I run the SSIS all of them is successfully executed except the last task. Why I don't know but it isn't awared of nothing. 649 rows are passed to Script Component from the file but they aren't going to my Sql table. Let me know any advice or ...Show All

  • .NET Development How to uninstall .NET 2.0 beta?

    Hi, Since I have no clue where to post this, I'm taking a chance and post my question here. If this is not the right place, please tell me what is. It appears that the .NET 2.0 redistributable package is finally available here: http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en#related . When I try to install it, I get the message that I should uninstall the beta version first. Howev ...Show All

  • Windows Forms convert object[] to ArrayList? (C#)

    Is there way to convert  object[] coll  to ArrayList Maybe somebody knows <i>> as far as I know the array doesn't implment System.Collections.ICollection ... </i> Yes, it does. So you can just use: object[] o = ... ArrayList a = new&nb ...Show All

  • Visual Basic Installing Visual Basic 6.0 on .NET Server with VB .NET installed

    I'd like to know if there are any issues involved with installing Visual Basic 6.0 on a Windows Server 2003 server with VB .NET installed. Thank you. No need to worry - there is no way that .NET can cause VB 6 applications to fail. Many developers have been running both VB 6 and .NET on the same computer for several years now, and I'm not aware of any reports of problems. - Steve ...Show All

  • Visual Studio When to load package

    Hello, I need to listen for solution events (e.g. OnAfterOpenProject) in my package.  I originally set my package to load when a solution exists using the following registration attribute: [MSVSIP.ProvideAutoLoad(EnvDTE80.ContextGuids.vsContextGuidSolutionExists)] I believe this works as it should; it fires after the solution has opened.  Unfortunately, I do not get an opportunity to hook up my event handlers for solution events like O ...Show All

  • SQL Server How do I extract data from selected rows from my excel source file?

    The columns in my excel source contain data of different types with the column name being a string and the data in those columns being integers. Is there any way to only extract numeric data , in short I want column names to be omitted. Also the data is distributed unevenly , beggining at various rows in each column. Thanking in advance :) ...Show All

  • SQL Server Using the same connection in multiple threads -> native exception

    I found a peculiar thing today while working with SQL Mobile in a multithreaded application (VS2005, application for Pocket PC 2003). I created a class which has one SqlCeConnection object. Every time I call a function to insert/select/delete something from the local db, I open the connection, execute the query an then close the connection again. But when I'm calling a function from the db class in thread 1 and in the meantime call a diff ...Show All

  • Visual Studio How to reliably identify a new loaded model in a shared store

    I'm sorry if this has been answered before, but I can't quite make it out from previous posts on the subject. I have code that loads a model from a file into a store. At the moment I am creating a new store each time, but am looking at re-using the same store. To that end I have the two methods below. The first creates a new store for a model, the second loads the model into a store. The problem arises when I call the second method directly, pas ...Show All

©2008 Software Development Network

powered by phorum