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

Software Development Network >> Sándor Török's Q&A profile

Sándor Török

Member List

Robert Isaacs
rowdy
zepgrirl
maddog70
Raj77LV
Duncan
denesh
the_developer_cali
Steve C#
Ramzee
Nic Oughton
jimc5240
kishan_99
malkovich
Alino
Greg Knierim
Rainman86
Felipe Domingues
phpguru
Flame999
Only Title

Sándor Török's Q&A profile

  • Visual Studio Team System Load Test: .Net Data Provider for <Server>: Performance Counters

    Hi i have added .Net Data Provider for oracle Performance Counters to my load test counters. the instance that i get for each counter is "defualtdomain[3128]" and No counter values at all during the load. can you help me with this problem thanks Udi yes, i can view these counters using the perfmon but the instance is still "defaultdomain[3128]", i would expect somthing like "_Total" as an instan ...Show All

  • Visual Studio Using Properties and Call like NAnt

    NAnt has a nice feature where you can use a combination of properties and the call task to repeat operations. For example: <target name="target_one"> <property name="A" value="Value1" /> <property name="B" value="Value2" /> <property name="C" value="Value3" /> <call target="ALongProcessWithManySteps" /> </target> <target name="target_two"> <property name="A" value="Value4" /> <proper ...Show All

  • Visual Basic Quckfind

    There are times that quickfind cannot find strings that are right in front of me. For example, below is an excerpt from a project file. </ PropertyGroup > < ItemGroup > < Reference Include = " System " /> < Reference Include = " System.Data " /> < Reference Include = " System.Drawing " /> < Reference Include = " System.Web.Services " ...Show All

  • Visual Studio Team System <AssemblyInitializeAttribute> <ClassInitializeAttribute>

    Hi, I wanted to put some global initialization code for my unit tests into a method call flagged with the <AssemblyInitializeAttribute>. I simply implemented a method with no parameters in VB.Net, similar to the method for the <TestInitialize()> attribute. It keeps telling me that my function signature is wrong. What argument should the method call take I was looking through the documentation but could not find anything. I had th ...Show All

  • Visual Studio Express Editions My.Settings Values Read Only

    Hello All, I have a bit of a problem here and I can't seem to figure it out. My project is a Class Library. This Class Library is one project which is part of a larger solution. I have several application settings which are set up as part of the project. Within the Class Library's root class, Application, there are two methods. GetSettings and SaveSettings. GetSettings retreives the My.Settings values and sets them as various property values ...Show All

  • Visual Studio applying smart indentation rules

    Hi,  I have been facing a problem regarding the implementation of smart indentation rules in my custom language service. i am not able to find out which interface should i implement and where should i write my rules.   Please help me with the process.    Thanks in advance.. Jimmy, Have you tried implementing the IVsLanguageLineIndent interface (in textmgr2.idl if you are using native code or Microsoft.VisualStudio.TextMa ...Show All

  • Visual Studio Team System The Project Creation Wizard was not able to connect to the Windows SharePoint Services

    This is probably the seventh time I'm trying to create a team project but having trouble with SharePoint. Ok, this is what I've done: 1. Installed Windows Server 2003 2. Installed Windows Server 2003 Service Pack 1 3. Created TfsSetup, TfsReports and TfsService 4. Logged in as TfsSetup (with Administrator rights) 5. Installed IIS with ASP.NET 6. Installed Visual Studio 2005 Team Suite Release Candidate 7. Installed SQL Server 2005, according to ...Show All

  • Visual Basic ListBox Populating

    Hello Again! My program is getting ever so close to completion... Right now I have a listbox that needs to be populated with specific data from my sql db, the thing is I need it to grab just specific rows of data with a matching value... I can populate my listbox 2 different ways but not the way I need it done. The first way was the obvious, by clicking on the data bound items and filling in the Data Source, Display member and Value member ...Show All

  • Windows Live Developer Forums Windows Live Messenger Official Beta Testing Forums

    i got asked to beta test WLM by microsoft (like most of us) and i was wondering if there is an official forum where we could post bugs and fewature request thanks in advance and if you cant post the link here please pass it onto aarong85@ripper.com.au (my personal email so if i get flooded with emails it wont bother me) place to do it is Please refer to How to get Messenger Technical Support http://forums.microsoft.com/MSDN/ShowPost ...Show All

  • SQL Server Can't connect Report server at management studio and report manager at Explorer

    I am using 2003 Server standard Edition (5.2.3790), SQL SERVER 2005 (9.00.1399) and IIS 6.0 When I tried to open the report manger at Explorer as typed http://servername/reports , http://localhost/reports , http://127.0.0.1/reports I got an error : HTTP 404 : file not found At testing connection on SQL server management studio, got an error -> the request failed with HTTP 404 status (Microsoft.sqlserver.management.UI.RSClient) M ...Show All

  • Visual Basic Selecting a particular word from a Word document through Visual Basic 6

    I am using Visual Basic 6 to develop programs. The user enters some data to text boxes. The program creates a Word documents using those values as well as some other texts (labels). The user wants that the values entered by him should appear as bold, while the labels should be plain text. I can apply different styles like bold, underline to an entire paragraph using range, but am unable to apply bold formatting to a particular word in a paragrap ...Show All

  • Visual Basic How to disable the Close Box in a dialog box?

    I'm developing a dialog box that displays when the main application shuts down.  What I want to know is how to disable the Close Box in that dialog box. Brandon Taylor You can find this (and other answers) here: http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c95c.aspx#q744q . Best regards, Johan Stenberg ...Show All

  • Windows Forms Creating Custom Dialogs

    Hi, I try to create a custom dialog in VS2005(C++), but the result is, that the dialog’s behaviour is like a "normal" control. It should behave like all the standard dialogs, which means, that you can place the control at design time on the "component tray" like i.e. the printDialog. Searching around, I found, that I have to set: TopLevel to false, and the FormBorderStyle to none/FixedDialog. But this is not working for me. What’s going wr ...Show All

  • Visual Studio Team System The location link appears to not work

    The location link from the section at the bottom of the FxCop window always seems to gove an error indicating it cannot locate the file, the link from within the detail does however locate the code within visual studio. An example of where the actual files are located (The only place Visual Studio seemed to allow to put the files it gave no choose location) is C:\Documents and Settings\UserName\My Documents\Visual Studio\Projects\ProjectNam ...Show All

  • SQL Server which is the most efficient query to find out the total number of rows in a table?

    which is the most efficient query to find out the total number of rows in a table other than using - SELECT COUNT(*) ... in query Why do you not weant to use the Count(*). I guess this is the best way to count the rows in the table. If it os too slow for you and you need immediate results rather than waiting for rleased locks you can get the *approximat* value with specific WITH(NOLOCK) after the table which yo ...Show All

©2008 Software Development Network

powered by phorum