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

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

starnamer

Member List

richj
troy2
jerv_it
JBond007
- rohini -
KerryDBerry
joyce21
AviRup
Emil Damian
tfcarlos
JC Boursier
diluted_water
GwapoJoe
Pogaru
OzanH
Chris Vance
Adrian_78787
SummerBob
hersheys_gurl
RRosenthal54
Only Title

starnamer's Q&A profile

  • Visual Studio Team System Samples data for Team Foundation

    Hi: Is dear there any Adventure Works sample data for Team Foundation Server We are trying to populate Team Foundation Server with " real " volume of data. Thanks in advance Chama I'm not sure exactly what you are asking for.  We use the existing published AdventureWorks sample for internal testing and demos all the time.  Have you tried just using that Brian ...Show All

  • Visual C# Why does Visual Studio 2005 starts to consume 100% of my CPU?

    Hello, Sometimes Visual Studio 2005 starts to consume 100% of my CPU. I've tried see if it is when I'm doing something specific, but I cannot put my finger on what it is that might trigger it. It is my first solution in VS 2005, so I have no clue if it's specific to this C# solution. I have a Windows Forms project and a Webservice project in my solution, all connected to a SourceSafe 6 database. This far I've always been editing ...Show All

  • Visual C++ building hello world as dll with Microsoft Visual C++ Toolkit 2003 command line

    Hi, I am not an expert building application on windows. I am trying to build a simple dll using Microsoft Visual C++ ToolKit 2003 on the command line. My environemnt is setup correctly. I am able to compile C program but not C++ Here is what am I doing: The source code is the following: #include <iostream> using namespace std; int hello() {   std::cout << "Hello" << std::endl;   return 0; } and I run the following ...Show All

  • Visual Studio Express Editions Compiling Error

    Ok, I'm an aspiring C++ programmer. I've read up on it, and finally downloaded Visual C++ 2005 Express Edition so I could actually do something with my knowledge. But it's not compliling...and this is the way I was shown how to do "helloworld": #include <iostream> using namespace std; int main() { cout << "Hello World\n"; return 0; } I get this error message: fatal error C1010: unexpected end of file while lo ...Show All

  • Visual Studio Express Editions RSS Screensaver Starter Kit

    This thread is the place to ask questions and provide feedback for the RSS Screensaver Starter Kit.    BigJoe wrote: How does the RSS Screensaver Starter Kit generate the *.scr file   I cannot find any settings or custom steps for this file. Other than the instructions below on how to compile and install the application, I do not or have not seen adaquate instructions on how to ...Show All

  • Visual C++ Directory Search Order & Link Error

    Hello, I am using VS 8 on WinXP Pro. I recently installed the Windows Server 2003 SDK and the DirectX SDK. I have recently moved to VS8 from VS6. When I put the path to the SDK include & lib directories at the top of their respective lists, the linker generates link errors. unresolved external symbol "wchar_t * __stdcall _com_util::ConvertStringToBSTR(char const *)" ( ConvertStringToBSTR@_com_util@@YGPA_WPBD@Z) reference ...Show All

  • SQL Server SQLCLR file system access

    I have just begun to delve into the SQLCLR objects in SQL Server 2005. I have created a simple VB function as a SQLFunction. Here's the code: Imports System Imports Microsoft.SqlServer.Server Partial Public Class UserDefinedFunctions <Microsoft.SqlServer.Server.SqlFunction()> _ Public Shared Function FileDate( ByVal FilePath As String ) As Date Return FileDateTime(FilePath) End Function E ...Show All

  • Visual C++ TargetInvocationException

    Hello, my application was compiled and linked without errors but when I ran it I got the following message: --------------------------- Microsoft Visual Studio --------------------------- An unhandled exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll Additional Information: Exception has been thrown by the target of an invocation. --------------------------- Break   Continue --------------------- ...Show All

  • SQL Server SSIS : Stored Packages error - MSDB

    Hi All I deployed a SSIS package using dtuil to the database successfully but when i go to 'Stored Packages" -> "MSDB" in an Intergration Services object explorer i get the following error TITLE: Object Explorer ------------------------------ Failed to retrieve data for this request. (Microsoft.SqlServer.SmoEnum) ------------------------------ ADDITIONAL INFORMATION: Please check the version of the database which the SSIS service ...Show All

  • SQL Server About SQL Server Management Studio Express CTP

    All, I downloaded SQL Server Management Studio Express CTP (v9.00.1399) dated 11/11/05. May I know if this is the latest stable build of the application to be used for SQL Server 2005 Express (final release version) Why it is CTP Thanks, William The November 11 CTP is the latest stable build. Management Studio Express is a new product that hasn't had all the testing that SQL Server 2005 Management Studio ...Show All

  • .NET Development RegEx

    Hi there, i need some help on RegEx. i know them well from coding PERL, but the syntax Iguess, must be different. Does anybody know where to get a list of possible "signs" and their meaning For example: ^[a-z] at the beginning of an expression means, that the string to check MUST start with an alpha-numeric sign. In C# (i believe) it means that the string should start with anything BESIDES an alpha-numeric sign. So a list of signs and their mean ...Show All

  • Visual FoxPro use the reccount

    hello all  I use "set filter to" and want to know how much record is match the filter condition. I use the "reccount()"  but it return the result is not I want. it is all the record count This is how it works for me. Finally . Select * From Customers Where State = "NJ" Into Cursor NJ_Customers NOFILTER Then a second query can be taken, otherwise the runtime does not recognize NJ ...Show All

  • SQL Server How to SubTotal with top N grouping?

    Hi all, I have a table on my report with a group on a field. I just want to SubTotal the 5 rows per group! I can get a sum per group,however, this sum is for all the rows per group! I just need the total for the first 5 rows per group! Can anybody help me with this Thanks. Group #1 2 3 4 0 2 1 ======== Sub-Total:11 (Sub-Total for the first 5 rows) ======== Group #2 1 2 0 2 2 10 8 ======== Sub-Total:7 (Sub-Total for the first 5 rows) ======== ...Show All

  • Visual Studio Express Editions How can you use data from a textbox in a Word document ?

    Hello, I have a problem regarding the text from a textbox. I have a textbox on a form and a database and in C# code I am creating a word document and I want to put in it what I have in my textbox and some fields from a table from my database (SQL Server), which is something else everytime I run the application. Can anyone help me, please Regards, Monika hi, you said you have a problem is the problem in how to do it , or somethi ...Show All

  • .NET Development obtaining identity from sql server after insert using DA - constraint error

    I am using a DA with individual select, i,u and delete sps. The update sp first updates the fields UPDATE Customer  SET [Company] = @Company,........ then returns the whole row to ensure that calculated columns are refreshed at the client. I used to have a simple select for this and it worked fine : SELECT [Customer].[Company],..............  FROM Customer  WHERE PK = @PK but for ease of applying future changes, I wanted ...Show All

©2008 Software Development Network

powered by phorum