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

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

Wolfsvein

Member List

l Bllizzd l
AdeptBlue
ifaber
Tryin2Bgood
Fiddel
Andy Goodwin
JanMichiel
tonyerfer
Stijn Van Hamme
Leon Mayne
manukahn
ArunSingh
su45937
AlexBB
williamtcurtis
robinjam
Ramibn1
gmcbay
R2 DJ
Peramanu
Only Title

Wolfsvein's Q&A profile

  • Visual Studio Team System How to add custom counters to default graph in load test

    Hi, I've a set of counters which I monitor when load tested and this counter set does not change. Is there any way to modify .trx file to show custom counters plotted by default I now see that only UserLoad, Requests/sec and AverageResponseTime are being plotted. Please correct me if I'm wrong.I'm assuming that the default counters to plot has been specified somewhere in the .trx file. I had a glance at the trx file but couldn't find the position to add my counter set. Any idea where can I specify the counters so that they are plotted by default when I open the .trx file Thanks in advance. You should not add them to the .trx. The .trx has the state for a specific run. If you want to add specific counters that are graphed ...Show All

  • SQL Server Cannot insert the value NULL into column 'ID'

    Hi dear experts: The message is "Cannot insert the value NULL into column 'ID_Month', table 'Database_DW.dbo.Incident_Summary'; column does not allow nulls..." At my table, I have a primary key which make autonumber for any record set in column 'ID_Month'. How can I insert autonumber in column 'ID_Month'by SQL statement Thank you in advance. Thanks for following michanne! I can't leave it. In this case I receive a message "Cannot insert the value NULL into column 'ID_Month'. It is something with identity syntax. I can't figure out. Thank you! ...Show All

  • Visual C# Send and Retrieve files to Database

    hi again... This time i'm stuck on an issue concerning sending and retrieving *.exe files to and from a SQL database. Code to send: FileStream fs = new FileStream (FileName, FileMode .Open, FileAccess .ReadWrite); byte [] MyFile = new byte [fs.Length]; fs.Read(MyFile, 0, System. Convert .ToInt32(fs.Length)); fs.Close(); dAdapter = new SqlDataAdapter ( "Select * from system where id=1" , cnn); SqlCommandBuilder command = new SqlCommandBuilder (dAdapter); DataSet ds = new DataSet ( "system" ); dAdapter.MissingSchemaAction = MissingSchemaAction .AddWithKey; dAdapter.Fill(ds, "system" ); DataRow row; row = ds.Tables[ "system&quo ...Show All

  • .NET Development How come Console.WriteLine() does not work any more

    Hi all, I have a C# winform application. If users run it from the command lines and pass a /Help or / to it, it does not invoke the winform, but instead uses the Console.WriteLine to display the help and then exit. I know for sure this works before, at least prior to my upgrading the VS2005 with SP1. Now suddenly, the WriteLine() does not work any more. If I enter /Help or / , the WriteLine() basically executed but does not write any thing on the console. And then the program exits ...peacefully. Note that I debug the code and indeed the WriteLine()s are executed. Within the VS IDE, it does write the messages to the output panel. But from the DOS command, nothing is displayed. Here is the code: static int Main( string ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. The Unofficial "Hooray I'm Done With my DBP Game" Thread

    When you get done with you game and sumbit it, crow about it here. A little over 24 hours left until the deadline and I'm so amazed I'm done, so much better than college Thanks to ZMan for his help, good luck all. I'll post the source code for my submission once the deadline hits. Bill Dan Lingman wrote: The quote about adding people to a late project will make it later is very true. I'd started with a team size of three - Me, my wife, and my 3.5 year old playtester, Katrina. Feb 27th we added a new team member - Naomi. Yeah I had a team very similar to that, my 8 year old daughter was my main playtester and my wife was the "novice gamer" to make sure it wasn't ridiculously hard. By new team me ...Show All

  • Windows Forms Maintain caret position in textbox

    I have this textbox on a form. I want to prevent the textbox's caret position from being affected by any mouse events at all. How do I do this How do I block all mouse activity from affecting the carets position The thing is that I want to be able type in digits in to the form and if i disable the textbox, it will not be possible to do that. The most important is that the carets position allways is at the front of the text in the textbox. You can prevent keys from moving the carets position but how do I do with the mouse ...Show All

  • SQL Server isnull func in Coditional split Tran

    All, I need to use ISNULL function in a Conditional split transformation. Data will be split based on the ISNULL function. ISNULL( col) can get all the null records, How to get the not null records ISNULL(col) = “false” doesn’t work. Thanks in Advance Thank you! I was mixed up. I was trying to find the IISNULL (with two "I"'s function) and it doesn't exist. Barkingdog ...Show All

  • SQL Server SQLServer 2000 cluster Metadata

    Hi Is there any TSQL query/function/procedure that would return the metadata about the SQLServer cluster Is there any way to get information about the application cluster I need to write a program to get the information about the SQLServer application cluster. I need to get information like participating nodes in the application cluster. Any information regarding this will be useful. Usage of other programming languages is also fine. Is this possible through programming !!! thanks Vijay Hi, The only TSQL cluster info metadata I know about is fn_virtualservernodes() fn_servershareddrives() Otherwise, I believe you will need to use the Cluster API that the other posted referenced. C ...Show All

  • Smart Device Development Notification for Change in Contacts

    Is there a way to get notification for change in contacts ..So that i can update the contacts my app is maintaining Hi Rauhanlinnake, I added a eventListener as suggested by you .But when i change contacts(add/delete/edit) i dont get a call to my function contactCollection_ListChanged . Supports Change Notification is Also set to True.. what can be the issue ...Show All

  • SQL Server BizTalk and SQL Server 2000

    We're running BizTalk 2004 on top of SQL Server 2000. Due to the fact that BizTalk uses Distributed Transactions BizTalk requires a customized backup solution that uses the BEGIN TRANSACTION ... WITH MARK syntax. How does the WITH MARK work We run a couple of very large transaction loads at various times during the week. These loads ran the BizTalkMsgBoxDb transaction log up to 18 Gig (the data file was only at 360 Meg). As the transaction log got bigger and bigger the server got slower and slower. Finally the custom backup job started erroring out on a memory error. Eventually the backup jobs stopped running due to an out of memory condition and then my users got locked out due to an out of memory condition. After I did some research (I ...Show All

  • Visual C++ Cannot properly return unsigned char*...

    Hi everyone, I have a problem in returning an unsigned char* from a function. In the main function: string name = "yabansu"; unsigned char* arr1 = (unsigned char*) name.c_str(); cout << arr1 << endl;   //Correctly prints "yabansu" Let's say I wrote a function called StringToBytes for doing the same thing above as the following: unsigned char* StringToBytes(string s) {     cout << (unsigned char*) s.c_str()     //Correctly prints "yabansu"     return (unsigned char*) s.c_str(); } Then I call this function in the main() as below; string name = "yabansu"; unsigned char* arr2 = StringToBytes(name); cout << arr2 << endl; &nb ...Show All

  • SQL Server Problems with input columns for mining models

    Hi, all experts here, Thank you very much for your kind attention. I got a strange problem with SQL Server 2005 data mining models though. I have selected the input columns for my mining model (which are different from the input columns for its mining structure, since I ignored some of the columns for the selected model). But the mining model still used all input columns from the mining structure rather than those I chose for the mining model. Would please any one here give me any guidance and advices for that. Really need help for that. Thanks a lot in advance for any help. With best regards, Yours sincerely, Hi, bogdan, thank you very much for your advices. Yes, I have marked those remaining columns as ignored and ...Show All

  • Visual C# Bind folder structure to a Treeview

    Hi Please transilate the following code for me to C#: This function collects and displays the files in a specified folder as hypelinks on a webpage. I would like to attach this to a TreeView control on an aspx webpage.Thanks in advance.I would also like to have the file list as hyperlinks ,so that the files opens when clicked on. Function ShowOfferFileList(folderspec) dim FileExtension dim FilePath Dim fso, f, f1, fc, strList dim i Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(folderspec) Set fc = f.Files For Each f1 in fc FilePath = cstr(f1.name) FileExtension = GetExtension(FilePath) 'FileExtension = mid(FilePath, len(FilePath) - 3, 3) 'FileExtension = mid(FilePath, 1, 3) if ...Show All

  • Visual Studio Express Editions Splash screens, threads, and Quasimodo forms.

    I'm using VB Express with an application that I've added a splash screen using the properties setting "Application" tab and setting the splash screen dropdown box to the name of my splash screen form. When the application starts, the splash screen is displayed while the main form begins to paint behind it. The form outline is painted followed by some (but not all) the various controls such as lables, text boxes, etc. and then stops painting about half way through the process. The main form remains "half-formed" for about 8 to 10 seconds while the the main form application performs a process of loading a dataset with about 400k records. It then completes the painting process and is ready for user input. How do I keep the ...Show All

  • SharePoint Products and Technologies Unable to connect ...

    Hi, I have a SingleServer instalation for MOSS. I get this "Unable to connect..." error in BDC Item list web part. I think is something with the credentials the goes to SQL Server. <LobSystemInstance Name="Charisma TS"> <Properties> <Property Name="DatabaseAccessProvider" Type="System.String">SqlServer</Property> <Property Name="AuthenticationMode" Type="System.String">RevertToSelf</Property> <Property Name="RdbConnection Data Source" Type="System.String">MyServer</Property> <Property Name="RdbConnection Initial Catalog" Type="System.String">DBName</Property> &l ...Show All

©2008 Software Development Network