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

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

Suite

Member List

DONG
MohamadHamedi
arpan_1234
JamieWP
Anurag G
Jay Duggu
Bill Fisher
2weelz
Jonathan Sealby
traci8891
p_metzler
zowie
Bliszek
Jessica.Weiner
Sushil Chordia - MSFT
richard luo
MonkeyZa
Peter L
Cashdollar
borix69
Only Title

Suite's Q&A profile

  • Visual C# Runtime - Progress bar

    OK. What I need is to make a progressbar at runtime, which is no problem, because I know how to do that. But heres what I want, when I click a button, I will create a progress bar, and then when it fills up, I need to know how to make it go away, and then create a label, the text being "hello". Can someone explain to me how to do this Hi, A faster approach would be creating a progressbar and a label at design-time then set the visible property to false. When you click the button, just make the progressbar visible and populate it, after populating you can hide the progressbar and show the label...     cheers, Paul June A. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Computer Hangs

    K ne time i play a game or even watch a video with surround sound, my comp. hangs and i have to reboot it manually. comp. spec's pentium 4 - 1.6ghz 384mb of ram 128 mb ati 9550 creative soundblaster audigy 2 zs 40 gb hard drive NEC DVD+/-RW Logitech X-530 windows xp home with all this i should be able to play games,movies/surround sound no problem but everytime i do have a problem which kinda sux cuz i pay so much for this stuff and it hangs, before i had no problem with the comp. and the spec's were much diff from what they are now This is a developers forum, not technical support.  This has nothing to ...Show All

  • Visual C++ Needed information on size_t datatype

    Hi all, Can someone explain me: - The use of type size_t - Why do we use size_t , if other datatypes are available size_t is a platform dependent type. size_t is 32-bit on a 32-bit platform and 64-bit on a 64-bit platform while this is not the case with our traditional datatypes such as int, float. If we are porting a 32-bit application to 64-bit platform. This type causes a lot of warnings. warnings of the type: y:/include/datum.cxx(443) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data Please suggest solutions to remove this kind of warning. Also send me the relevant links if p ...Show All

  • Visual C++ Some insight for a new C++.net developer

    Good morning experts: It is beginning to become a little frustrating finding some basic information for somebody new to the .net environment in regards to c++.net 2005. Could you be so kind to explain a few basic terminologies to get me on the right track Since I'm new to the environment, where would you suggest I begin I've taken C++ classes in college, so I'm not oblivious to the syntax, but I see terminology like Managed C++, unmanaged C++ and MFC. What is the difference between these technologies and what would be best to start with I'm wanted to develop Window's applications. Why is there limited documentation on VC++.NET 200 ...Show All

  • Windows Forms Windows Service

    Hello All,  I'm in the middle of writing a small windows service and i've run into a small problem. I want some code to execute every 30 minutes or so but i can't seem to get it to work. I placed a timer control onto the project(Not the timer from the windows forms area, but from the components area) and it still doesn't work. Here  ...Show All

  • .NET Development Can't Add Reference to DLL

    I created a class library dll in VS 2005. I can add a reference to the dll in other VS 2005 projects. I can also use the dll from VB6 (I added all the correct interop stuff). However, when I load up a VS2003 project and try to add a reference to the DLL, I get an error that tells me that the dll is not a valid assembly or COM component. Is it not possible to use .Net 2.0 DLLs in .Net 1.x Thanks, Ned You might be able to get it to work outside VS through the command line but VS 2003 doesn't support v2.0 of .NET. From what I have heard from MS developers VS is tightly coupled with the version of . ...Show All

  • SQL Server Copy Table from another table

    How to create a Table from another Table I need both structure and data If any one know pls rply bye murali murali@gsdindia.com The simplest method of all for doing this is to simply use the SELECT INTO statment. Here's how: Suppose you're trying to copy the authors table of the Pubs SQL Server database with data and structure. To do so simply use this SQL script: ----------------------- USE Pubs GO SELECT * INTO copy_of_authors FROM authors GO ----------------------- Executing this script will create a table named copy_of_authors containing all data from the authors table. Regards, Ejan ...Show All

  • Windows Forms Dynamic Sql inside of stored procedure

    Hi I am trying to use dynamic sql inside of a stored procedure.  I get an error when I go to check the syntax.  Here is what I have so far. CREATE PROCEDURE Number_Of_Comebacks @dlname varchar (100) @CB varchar (5) AS BEGIN Declare @SQL1 Varchar(100) Select @SQL1 = 'Select count(' + @dlname + '.[Auditors Working Code]) as [Comebacks] from ' + @dlname + ' where&n ...Show All

  • .NET Development "ExecuteReader requires an open and available connection. The connection's current state is open"

    I am trying insert records using oleDbCommand.ExecuteNonQuery. The records are bing inserted properly. But after couple of inserts, the program sits on the line right after the line for instantiating the command object ie when i click on break button from the IDE [after being waited long a time] , the second line [ retVal = m_OleDbCommand.ExecuteNonQuery();] is getting higlighted with green collor. m_OleDbCommand = new OleDbCommand (InsertCommand.ToUpper(), m_OleDbConnection,m_OleDbTransaction ); retVal = m_OleDbCommand.ExecuteNonQuery(); Then I just restart the application , so getting an error saying "ExecuteReader ...Show All

  • SQL Server SQL Server 2005 Express: Weird error message running SELECT COUNT query

    When running the following query on table RECORD using an existing SQL Server 2005 Express catalog: SELECT COUNT(*) FROM Record; I get the following error message right from the ODBC's executeSQLStatement(...) line: [Microsoft][ODBC SQL Server Driver][SQL Server]Der Operanddatentyp image ist fur den count-Operator ungultig. (english: The operand data type image is invalid for the count operator) Running the exact same query in SQL Server Management Studio Express (SQL Console) yields accurate results. No error messages whatsoever. What does the error message above mean and what am I doing wrong P.S.: I'm using Visual ...Show All

  • SQL Server Dynamic Database Source Changing

    Hi, I am building a data warehouse for a customer who has systems located in two different countries. I need to import that data from four seperate databases, which all share the same structure. To do this i have created 20 packages to import that data from the source database. What i would like to do, is at run time set which database the SSIS package should get its data from. In sql 2k this was easy with a global variable that was set, then use a dynamic properties task to set the data source. How can i achieve the same result in SSIS the data source is an ODBC connection, with the four ODBC connections having similar names, ...Show All

  • .NET Development Opening an MS Access Database In Exclusive Mode Using ADO.Net

    Hello All, I am having a bit of a problem here and I am hoping that someone can shed some light on how to solve it. In both DAO and ADO you have the ability to open an Access database in Exclusive Mode. I cannot seem to find a connection string parameter that allows you to achieve this in ADO.Net. Does this functionality exist in ADO.Net If so, what is the correct syntax for this portion of the connection string Any help you can offer would be greatly appreciated. Thanks In Advance, V. Shane Curtis You can use "Exclusive=1" in an Odbc connection string to open it exclusively, if that hel ...Show All

  • SQL Server sync_type parameter in subscription

    Hi, I tried to change the subscription property "sync_type" whith a system procedure but I was not able to do it, because sp_changesubscription does not support this property. Is there any chance to change this property by procedure So I decided to drop the subscription and define it new with sp_addsubscription. I chose to set this to "replication support only" as the value "none" is depricated based on the online help. Unfortunately using this value results in an error message "only none or automatic is allowed". How can I set this value now to "replication support onl ...Show All

  • Visual C++ Poly-Threaded C++ Applications

    I have a few programs that I am converting to be threaded. At present I have a couple of programs, computer chess engines, that are threaded and work fine with Microsoft's C++ compilers. When the SMP.H #define's detect _WIN32 || _WIN64 it calls up process.h functions but on other platforms it need to use a bit map in ASM to manage the threads properly. Other considerations include inter-process communications etc. If threads dont need to speak to each other then the situation is simple, if not then some form of signalling is needed and the program becomes more complex. One program I use computes end game positions for chess, usin ...Show All

  • Visual Basic Dynamically populating a combo box .?

    I am trying to populate a combo box on a form based on the contents of a field within SQL. i.e. I read the data from the SQL field.  In this case I return the string "Select * From Transactions" I populate my dataset and set the dataset as the datasource of my combo box.  This works fine. However what I want to do is to use a where clause in my select statement such as "Select * From Transactions Where AccNo = '" & strAccNo & "'", where strAccNo is a variable within my VB app. Now not surprisingly my combo box is empty as the the datasource is exactly as my select statement reads and it is trying to return records where Acc ...Show All

©2008 Software Development Network