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

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

minority80

Member List

dyna
Abualnassr
AtomZ .be
TL1moss
goldband
smhaig
DevboyX
N B
Chrismanster
Rajesh Kumar Revelli
Jeon
hayward_ke
thaer_r
pgems
Raja-kandasamy
monkeyboy123456
RichieB
MarciDUmi
reborne
Fred Herring
Only Title

minority80's Q&A profile

  • Visual Studio 2008 (Pre-release) WSE 3.0 versus WCF

    i am confused about whether i should be writing our new web services in WCF or WSE 3.0. many of our CLIENT applications still run older operating systems, such as Windows 2000. do my client applications need to be running the .NET 3.0 framework to easily communicate with a WCF web service If so this means it will only run on WinXP SP 2 and Vista right If so, should I be considering WSE 3.0 instead then Or will this be getting phased out Me confused. this post here says clients need xp sp2 or vista http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=224021&SiteID=1 "As far as client-side operating systems goes, WCF requires XPSP2 or Vista." ...Show All

  • Visual Basic RSS in Visual Basic Express?

    I really need a RSS feed. I just don't know how o connect to one and how my program to rad the XML nodes. I can try to obay some commands like... or some things. But yor help woul be more appreciated than mine (I kinda mean my knowledge). Please help (and dont give me the thng from Coding4Fun) (nothng there ever works) P.S.  I'm sorry to hear that Coding4Fun content isn't working out.  If you have a moment, please send some examples of issues so we can look at fixing them up.  You can send these directly to paulyuk@com.microsoft (where microsoft and com are reversed).  thanks, Paul ...Show All

  • SQL Server Synchronizing SSIS Packages Calls

    I have several SSIS Packages which are called by few different applications. I need to make packages Mutually Exclusive, so that If one is running; calls to any other Package should be put on wait till the running one has finished its execution. What are the best ways to do this I would sincerely appreciate inputs in this. Search for "sleep" and you'll get plenty of results. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=131070&SiteID=1 ...Show All

  • Visual Basic CopyMemory/RtlMoveMemory API Not Work In VB.NET

    Hello, I used CopyMemory/RtlMoveMemory API in VB6. And it's run fine. now i have same code run in VB.NET but it gives me error like "An unhandled exception of type 'System.ArgumentException' occurred in MyApp.exe". Declared API in VB6 : Declare Sub CopyMemory Lib "KERNEL32" Alias "RtlMoveMemory" ( ByVal hpvDest As Any , ByVal hpvSource As Any , ByVal cbCopy As Long ) Declared API in VB.NET : Declare Sub CopyMemory Lib "KERNEL32" Alias "RtlMoveMemory" ( ByVal hpvDest As Object , ByVal hpvSource As Object , ByVal cbCopy As Integer ) Anyboday can tell me what's a problem Thanks, Jigar I wouldn't be ...Show All

  • SQL Server Execute multiple statements at once...

    I am not even sure if this is possible but I want to be able to excute several statements (or SPs) at once from inside a SPs (or any other method). What I am doing is a I am taking data from a single column, multiple rows and making it into one row (i.e. data1 + data2 + data3....) But I am doing this to a total of 2.1 million individual rows and the result will be about 204k rows.... what I have written is basically a nested loop and it works fine but very slow... slow as in it has been running for 24 hours now and it is about 60% done... I need this to finish in under 36 hours preferably... If I could handle more than one set of data at once (there will be no duplicates) I could speed up the process by how ever many I feel like work ...Show All

  • Visual Basic How can I cycle through all the System.Drawing.Colors?

    I worked out the Console version to cycle through all 16 available colors: Sub Main() Dim x, y As Integer For x = 0 To 15 Console.BackgroundColor = CType(x, ConsoleColor) Console.Clear() For y = 0 To 15 Console.ForegroundColor = CType(y, ConsoleColor) Console.WriteLine("Background: {0}; Foreground: {1}", x, y) Next y Console.ReadLine() Next x Console.ResetColor() Console.Clear() Console.WriteLine() End Sub I also worked out a program that cycles through 4 colors in a Windows form: Private Sub btnCycle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCycle.Click Static x As Integer x = x + 1 If x = 5 Then x ...Show All

  • Visual C# "error CS2011 : Error openin response file..." ??

    Why do i always get this error message whenever i try to debug or compile something : "error CS2011 : Error openin response file 'c:\Documents ' -- ' the system cannot find the file specified " this is after i uninstalled and reinstalled the compiler. Is there a way to remedy it "c:\Documents", sounds like Vista. Or your PC is pretty messed up and has the standard folder names (like c:\documents and settings) all scrambled up. You might be able to avoid this by changing the location of your TEMP environment variable... ...Show All

  • Smart Device Development I want a button that will navigate to the My Document folder when pressed

    I want to have Buttons in a VB Form navigating to places like,My Documents, Network Places, My Pictures etc. Does anone know code for me to be able to do this... Thanks Why do you believe something is wrong It appears you forgot to describe what you expect this code to do and what it actually does. To get help faster, see this , items 7, 10, 12, and 17. ...Show All

  • SQL Server Output values from Update Statement

    Hi, I'm using the following UPDATE statement to "check out" a record in my parent table tblTransaction where the record is not already checked out. Also, I have a details table (tblTransData) that has two records for one record in the parent table. When checking out a transaction, if a user has already modified a record in the details table, it will not check out the associated parent row. I have this working below. My issue is, how can I return the primary key value (intWorkFlow) of the row in the tblTransData table where the user has not worked on either record and the record txtUser column is NULL (indicating that no one has worked on the record) Right now, I am using a separate select statement to find the null record tha ...Show All

  • Visual Studio 2008 (Pre-release) Publisher/Subscriber Problems: Orphaned Subscribers

    I implemented a publisher/subscriber demo, but ran into a problem. In particular, when a client registers as a subscriber, but then shuts down/crashes without unsubscribing, the service locks up. For the notification, I use the below: [ OperationContract ] public void Notify( NotificationMessage message) { lock (_lock) {     for ( int i = _subscribers.Count - 1; i >= 0; i-- )     {         try         {             _subscribers .ReceiveMessage(message);         }         catch ( Exception ex ) & ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Joining DirectSound to existing app

    I am trying to use DirectX DirectSound which I need to attach to an existing Windows application in order to capture a signal. Since playing sounds is easier, I decided first to attach a button to the existing application that would play a sound. The DirectX 9.0 documentation seems to have no direct tutorials in which such a function is attached to something else. I have done a fair amount of experimenting but am stuck. Specifically, (1) (this is probably trivial) I don't know how to specify the "control" variable in the method Device.SetCooperativeLevel(). (2) (apparently more serious) the instruction "dsDevice = new Device();" throws the exception "[description of instruction] is attempting managed execution insi ...Show All

  • SQL Server Need to convert NULL values to 0, (zero) in order to perform math calculations

    Using a reporting services model/report builder we have two related tables: - Fundings, (parent) - Draws, (child) Report Builder reports that subtract "Total Fundings.Amount", (which is SUM(FundingAmount)) from "Total Draw Amount", (which is SUM(DrawAmount)) to get a balance work as expected except when there are no Draw rows, in which case a NULL is returned. Obviously we want to convert NULL values of "Total Draw Amount" to zero so that when subtracted from "Total Fundings.Amount" the correct value is displayed. I've searched for a function similar to COALESCE (Transact-SQL) in report builder but found nothing. Can anybody help me with this Thanks Bruce ...Show All

  • .NET Development Array.Sort causing too many GC's

    The following code on a 32bit machine causes 0 GC's but on a 64bit it causes 10. int size = 100000 ; double [] keys = new double [size]; Random rand = new Random ( ( int ) DateTime .Now.Ticks ); int [] items = new int [size]; for ( int  k = 0 ; k < size; k++ ) {     double random = rand.NextDouble();     keys[k] = random;     items[k] = k; } GC .Collect( 0 ); GC .WaitForPendingFinalizers(); GC .Collect( 0 ); int count = GC .CollectionCount( 0 ); Array .Sort< double , int >( keys, items ); count = GC .CollectionCount( 0 ) - count; Console .WriteLine( count ); ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to disable driver anti-aliasing

    I need to preserve the exact colors (and thus, hard edges) when I read back the rendered image via an offscreen surface filled with GetRenderTargetData. There is an option in the control panel where the driver forces anti-aliasing for all applications. If I do not set the quality-performance slider correctly, I will get anti-aliasing. Is there a way (in code) to prevent that Eric, Have you tried setting D3DRS_MULTISAMPLEANTIALIAS = false in the SetRenderState for your device This should disable anti-aliasing for anything rendering from the device. Thanks. Cale ...Show All

  • Visual Studio Team System Visual Team System setup problem

    Hi to everyone; I downloaded visual team system 2005 from microsoft academic alliance sites.It's size approximately 4.5 gb.When I extracted it to my computer,it's size becomes 10.8 gb.The 10.8 gb sized file name is TFSRC.vhd. I searched the extension of the file and I learned this extension is virtual harddisk drive.And I downloaded virtual pc 2004.And I run vhd file on virtual pc. the windows server 2003's login screen comes.I do not know the password of the administrator account.I didnt login.How can I login And is there any wrong thing about team system setup that I wrote above. Thanks; Note that the file you downloaded is just an evaluation version. If you want the proper version installed ...Show All

©2008 Software Development Network