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

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

manutdp

Member List

balajikoturu
Vester
GrijzePruik
Josh Kinder
deanvanrooyen
Tindy413
Pramod Gurunath - MSFT
OICU812
RichardM
CoderB0y
yakupg
Buda56
Debbie Jones
Garick
krishna kishore
A. Reimann
Simon Rapier
paul9955
carthegenian
cwhenning
Only Title

manutdp's Q&A profile

  • SQL Server number of times procedure executes per second

    hello all, i have run into this problems a few times and don't really have a quick solution. management wants to know how many times a procedure will execute in a second. i only have one procedure in mind and all it does is do a few different select and then returns a record set. so i am looking for a tool which will report how many times my "return customer profile" procedure can run. I have a tool which will execute a single procedure on multiple threads, but it has no reporting. If I have something to execute the procedure how can I report back on it's performance In perfmon there is a "transaction per second" ...Show All

  • Windows Forms Does WebBrowser control in .net 2.0 support blocking pop-up windows?

    If yes, how to accomplish this Thanks in advance. Can't believe that it don't support that. if so, i don't think there'll be many people using that control since as of today the pop-up blocking has become a basic funtionality of web browser. anyway, hope the sp1 will be soon and resolve this:) ...Show All

  • Visual Studio Team System Is it possible to run a sql script as a test or a step inside the test?

    Hi, Is it possible to run a sql script from inside visual studio as one of the tests or a step inside a test This is what I'm trying to do. I have a bunch of web tests that I am running through an ordered test. My tests get executed as follows: Web Test1 Web Test2 Web Test3 ... Web TestN I need to insert some data into the database between Web Test2 and Web Test3. The way I do it now is I have two ordered tests. The first one executes Web Test1 and Web Test2 and the second one executes the rest of the tests. I manually execute my sql script after my ordered test #1 is done. Then, I start ordered test #2. I would like ...Show All

  • Windows Forms Open a child from a child but also from the parent

    Hi Guys, I have a problem opening a child window within a parent window when passing  a variable between two child windows. I have the parent window setup with two menuitems. The first calls Form2 and  the second calls Form3 The code follows:-   Private Sub MenuItem1_Click(ByVal sender As System.Object, ByVal e As  System.EventArgs) Handles MenuItem1.Click        ...Show All

  • Windows Forms application folder path in the registry during set up

    Hi guys.... During vb.net application installation, I would like to create a key in the registry with the application folder path. How can I do it in the vb.net application SetUp deployment Thank for any useful suggestions. Do the following: 1. In Solution Explorer , right-click the Setup project and choose View -> Registry 2. Right-click on the key you want to add the new value and choose New -> String value 3. Enter a name for your value, ie InstallationFolder 4. In the Properties window, enter [TARGETDIR] (including the brackets) in the Value text box. ...Show All

  • Windows Forms oleDbDataAdapter and Updating

    I am using an oleDbDataAdapter and a dataset.  When I use this code to insert a new record, the record instantly is included in the dataset.... this .dataSet11.tblDVD.AddtblDVDRow(field1, field2 ); this .oleDbDataAdapter1.Update( this .dataSet11, "myTable"); this .dataSet11.AcceptChanges(); But, when I use this code to update a record, the changes are in the database, but NOT the dataset.... this .oleDbDataAdapter1.UpdateCommand.CommandText = sql; this .oleDbConnection1.Open(); this .oleDbDataAdapter1.UpdateCommand.ExecuteNonQuery(); this .oleDbDataAdapter1.Fill(dataSet11); this .oleDbConnection1.Close ...Show All

  • SQL Server Page Header on 1st Page ONLY

    In Report Properties there are 2 entries each related to page headers and footers: one is to print them on the 1st page, and the other on the last page. I want my page header to appear only on the 1st page, but I'm getting it on every page. Is there any way to restrict it only to the 1st page I've tried using IIf to check for page 1 and surpress the contents of the page header and while it works, the space taken up by the header does not collapse. Any ideas Peter, as you have already discovered, using IIF to conditionally hide the contents of the page header is the closest you can get. The space consu ...Show All

  • Visual Basic Visual Basic 2005 Express Beta 2 vs. Visual Basic 6.0

    Is the Visual Basic 2005 Express Beta 2 better than Visual Basic 6.0 or completely different Hi, Yes, your right. There are some differences in a VB6 approach to the VB.Net (code-wise). The .net approach is object-oriented, that is you'll have to work with tons of objects to achieve something. There are some VB6 codes that is shorter than its .net equivalent and some the other way around. VB6 has its strengths, but for me, the approach that I preffer would that be of the .net approach... cheers, Paul June A. Domag ...Show All

  • Visual Studio Express Editions Timing issue

    I would like to find out if there is a way to add a bit of time for one line of code to complete before Starting the next. I would like my textbox to display the contents of an action as in: case 4 TextBox1.Text = "My Text" ---Do Somehting here to slow the system down for about 5 seconds TheAmount = TheAmount - 50 If TheAmount <= 5000 Then MessageBox.Show("Your Amount is: " & TheAmount) End If My problem in the above is that the MessageBox shows up before the user has a chance to see what the text is. Any Ideas Thanks The first question is why do you want ot slow t ...Show All

  • Visual Studio IVsPersistDocData2 Not Being Called

    I have a class the implements IVsPersistDocData2 I register the document with the RTD using RegisterAndLockDocument, I get some of the calls such as isdocumentreadonly, But I never getting any calls to IsDocDirty and Save. Ok, thanks for the example, but  in the example the editor and the doc is the same class. What has to be different to have them  be multiple classes, I have 5 editors and only one data. And the editors don't modify the data they just view the data. The data/doc is modified from a background processing thread that doesn't require an editor to be enabled. ...Show All

  • Windows Forms Web service security

    I notice that I can only test the TV web services from the machine running the web server. When I attempted to visit their webpage from a different machine, I was not allowed to invoke any webmethods. Anybody know how I can achieve this on my own web services Thanks, George u should modify the tempur.org to ur server name in web serv ...Show All

  • Visual C# Passing interfaces by value

    I have an interface called ITileProperty. Each implementation of it is a struct, so that I can pass these objects by value rather than reference. The odd part, is that I have a Guid that is required via a property in ITileProperty. When I pass the interface by value it seems that the Guid is passed by reference. For example: public struct RoadProperty : ITileProperty { Guid id = Guid.NewGuid(); public Guid Id { get{ return id; } set{ id = value; } } } Now if I do this: ITileProperty original = new RoadProperty(); ITileProperty itp = original; The id in 'original' and the id in 'itp' are the same instance as updating ...Show All

  • Visual Basic Random number generating same number every time?

    I heard that you have to add some code to a random number generator results(1) = Int((5 - 1 + 1) * Rnd() + 1) so that if it is used again and again it keeps generating new numbers as apposed to what this piece of code does by itself which is creates the same number every time. what is the code Call Randomize first to initialize the timer. Randomize results(1) = Int((5 - 1 + 1) * Rnd() + 1)   Regards, -chris ...Show All

  • Visual C# Unrecognized configuration section 'connectionStrings'

    Hi, I just have just deployed a ASP.NET 2.0 website, on a live server with other ASP.NET 1.1 applications.   The website seems to generate the error Unrecognized configuration section 'connectionStrings' on repeated visits. The framework versions is already set to ASp.NET 2.0 in the IIS. Any help   Regards, Adnan In the C:\WINDOWS\Microsoft.NET\Framework\v2.0\CONFIG folder there is a machine.config file. In this file (or in your web.config file for your application) there is definitions at the top that define what is in the config file. Make sure that you have these definition ...Show All

  • Windows Forms Need Help to show Rich Editable text box and Datagrid in a tab or form, new to Visual C++ 2003

    Hi, I am quiet new to Visual C++ 2003 (Of course my exp is unix c++). I would like to design a form (or form with tab) to show a editable textbox (I heard richtextbox) in the top aligned and datagrid below to show the records. I designed it with richtextbox and datagrid. It works. I want to keep the richtextbox and datagrid to join together and user needs to increase and decrease the height of richtextbox depending on the need. The Richtextbox needs to increase and decrease at will of the user and reduced the gridsize decrease and increase so that the total height of richtextbox and datagrid is same. What controls do i need to setup, and wha ...Show All

©2008 Software Development Network