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

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

DSONG

Member List

Ahoapap
Stubabe D
sotnlk
Peca55
InquiringMinds
EamonnH
kenalex
Fabian Goncalves
Sam Stokes
johnedw
noirs
Laughing John
Lowell
Maizatul Akmal
Jasvinder13
Par Hedberg
DPS1963
Tanya R. - MSFT
andplo
Magechore
Only Title

DSONG's Q&A profile

  • SQL Server Cross Package Configuration Files

    Configuration files are working great for me when I run a package "stand-alone". However, when one package executes another package I am having problems. Assume the following two packages (each having connection info in a config file): foo (with connection A - contained in foo.config) bar (with connection B - contained in bar.config) The package foo executes package bar. Where would I have to modify the connection information for connection B, so that foo would use this new connection information Thanks, Scott There's 2 ways you *could* workaround this. 1) Store your ConnectionString in a variable (called ...Show All

  • Visual Basic Fed up and need help

    I know this isn't the forum for VB 6 questions, but mine ties in with a .NET framework problem - I need to use some System.IO functions. I have tried registering System.dll (all three versions), with no luck - System.IO is not available. I have tried using REGASM.EXE on mscorlib.dll with the same results. The .tbl file won't register with REGASM.EXE. Can someone help me I'm using VS6 Enterprise - I just need some System.IO functions. I'll be happy to give anyone more info when I get back from lunch - (2hrs, app). Thanks in advance, KaleeyJ You can't do it. Registering dlls is a COM concept, .NET does ...Show All

  • SQL Server Can't install SQL 200 Enterprise Edition!!!!

    Hi , I can't install SQL Server 2000 Enterprise Edtion on my computer. The error message shows that 'Operating System doesn't not support for this version.....' What's the cause of this error My computer is already connected to LAN. Can anybody help Any help is appreciated.. Thanks. Julia168 Julia168 wrote: The error message shows that 'Operating System doesn't not support for this version.....' What's the cause of this error The partial error message spells it out clearly - you're trying to install Enterprise Edition on a non-supported OS. Se ...Show All

  • SQL Server What are user instances?

    Hello, I want to know whats the difference between managing the databse with management studio or directly putting the MDF file on the app_data folder in visual studio 2005. I tried to put one MDF file and tells me that users instances are not enabled. If I put an mdf file onto my project it will be part of the installer and it will automatically install my database on the remote server If not why its useful if I can go to server explorer and see all my databases, tables and so on. Tks    In a nutshell, "user instance" allows a non-admin user to start an application which start a sql server instance. Here are some explana ...Show All

  • Windows Forms myGridColumn.NullText Help

    I have a datasource and with in that i have null fields which i need to turn to "".   whats wrong with my code.. it keeps saying that im out of the index range.. please help..  oConn.Open(); SqlCommand oCMD = new SqlCommand("select * from sometable", oConn); oCMD.CommandTimeout = 30; SqlDataAdapter oResults = new SqlDataAdapter(); oResults.SelectCommand = oCMD; Data ...Show All

  • .NET Development Regex Help

    I am terrible at Regular Expressions. I was wondering if anybody could help me find a string that matched his Regex: ^([A-H]|[J-N]|[P-Y]|[0-9]){25}$ I would greatly appreciate any help... (Moderator: Thread moved to the Regular Expression Forum and Title changed for quicker thread understanding during a search) Hi there, System.Text.RegularExpressions. Regex regex = new System.Text.RegularExpressions. Regex ( "^([A-H]|[J-N]|[P-Y]|[0-9]){25}$" ); MessageBox.Show(regex.IsMatch("ABCDEFGHJKLMNPQRSTUVWXY0123456789").ToString()); MessageBox .Show(regex.IsMatch( "ABCDEJKNPQSTUXY0123456789&quo ...Show All

  • SQL Server Unexpected error during Sept. CTP setup?

    Hi, During the Sept. CTP setup I get the following when it tries to install the Workstation tools.  Anyone else get this and work around it "There was an unexpected failure during the setup wizard.  You may review the setup logs and/or click the help button for more information." I didn't find anything in the logs and when setup asked me to find more info online regarding this message it said there is no further info on this error. Thanks. We fixed several problems with this result in the RTM code. Please repost if you're still having problems installing SQL Server. Paul ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Render to texture

    this is in response to another thread that I have in this forum. I am having problem of rendering to a texture. I have a texture that I populate by using lockRect and the usage is D3DPOOL_MANAGED.  The problem is that I cannot populate this texture using lockRect and D3DPOOL_MANAGED but rather D3DPOOL_DEFAULT, which cannot be populated with lockRect.  I have to use D3DPOOL_MANAGED inoder to use SetRenderTarget 1.Is there a way to populate the texture with D3DPOOL_DEFAULT 2. Can you give me an example of using the SetRenderTarget for render to texture Firstly, I did not see where the render target was set.  in the onRe ...Show All

  • SQL Server Excel XP - Cannot connect to OLAP 9 - Analysis Services 2005

    MS Excel XP on Windows 2000 fails to connect to OLAP 2005 Cube with the OLAP 9 Provider. Excel gives the error: <initialisering datasource failed>. The same error appears when I try to connect to OLAP 8 cubes. Before I could access OLap 8 cube, I had to reinstall Office XP. Windows XP with Office 2003 works fine. It can access both OLAP 8.0 and OLAP 9.0 cubes. Does the new OLAP 9.0 provider only works with Office 2003 Best regards, Jakobsgaard I have been investigating a bit more in this matter...The PC which is giving os all this trouble are running Windo ...Show All

  • Windows Forms Objects in Array List

    Need a little help on this one, I am almost done with this one form. Here is a code snipet.... home temp = new Rio(a, b, c, d, e, f); myAL.Add(temp); home j = myAL[0]; // just for testing to input into class Rio for when read back is coded It won't compile with the last line above, home j = myAL[0];  Error Msg: Cannot implicitly convert type& ...Show All

  • Visual Studio Team System Adding users/ groups with "/" char in the caption of the name

    Hi, I am running Team foundation RTM. When I try to add windows domain users to one of the security groups I get the error: "Team Foundation Server could not resolve the user 'XXXXX/XXXX'. The user or group might be a member of a different domain , or the server might not have access to that domain. Verify the domain membership of the server and any domain trusts". I noticed it only happens with users ot group which their caption contains the '/' char. If I add a user/group which doesn't have this char it works OK. It's a real problem for my as almost all the users have the char in their caption bec ...Show All

  • Visual C# C# Project slows down IDE

    Based on my reading of the newgroup and bugs, some of the perf issues in VS 2005 makes people's blood pressure rise.  I'm no exception.  I'm hoping that the RTM version doesn't have the perf bug I'm experiencing. I have a solution that contains 15 C++ projects and 2 C# projects.  Been that way for about a month.  But then now my sessions in VS get reallly slow... typ...in...g... i.....s.... s...l...o...w.,.. slow window redraw... etc  (blood pressure rising) I isolated it down to one of the C# projects.  CPU % is 50% (half of the two processors on my P4 HT machine) .  When I unload it, CPU is 0% on idl ...Show All

  • Visual Studio Team System How do I validate parameters in this case?

    Error: ValidateArgumentsOfPublicMethods Code: Public Class ServerListItem     Inherits ListViewItem     Private m_Server As Server     Public Sub New(ByVal server As Server)         MyBase.New(server.ServerName)         With SubItems             .Add(server.BaseIP)             .Add(server.IsSource.ToString)             .Add(server.IsDestination.ToString)   ...Show All

  • Visual Studio Express Editions Books, tutorials of VC++ Express Edition for newbies

    Hi guys, Since VC++ 2005EE does not ship with MFC/ATL, this makes most of VC++/MFC books irrelevant.  The sample codes and tutorials on MSDN are plenty, but few apply to Express Edition. So my question is where can I find good books, tutorials to accelerate my pace in learning VC++ Express I remember Charles Petzold's "Programming Windows" is entirely focused on Windows API. Is it still apply to Win32 SDK programming Leonard Hi Leonard, I recommend you start from STL to Windows API.  In this context,  STL samples  from  MSDN would be helpful. Also the books by Herb Sutter ...Show All

  • SQL Server Profiler: Deadlock graph

    Hi. I'm trying to capture Deadlock Graph in profiler. I've checked it in the event list along with Event:Deadlock. I generate a deadlock... The Deadlock event shows up in the trace, the Deadlock Graph does not. I'm pretty sure BOL says that for every deadlock there is a deadlock graph. I've also tried the steps in BOL to save the deadlock graph xml to a file. The file is empty. any clues thanks yup - deadlock event doesn't show in the trace either..     What kind of a permissioning issue can it be I'm running profiler under administrative account. thanks! ...Show All

©2008 Software Development Network