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

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

vkbajoria

Member List

Jeffrey van Gogh
ricochett
mmadsen
ssebring
Raoni
V Williams
Jin12551
SebaM
fivestar
Maclosky
Ebeth
yorengoy
Devin G
Kristof Pauwels
sabari
XLN Lasse
sjimmerson
SimonB1965
xiaodao
ColoBrad
Only Title

vkbajoria's Q&A profile

  • Visual Studio Team System A couple of issues with Load testing

    I have built a webtest that runs fine when I run it from the "Test View" pane. I then added it to a load test. I have noticed a few issues when running load tests. Issue 1: On the PC's I run the load test on I get an error at the end of a test run that says; "Error occurred running test. (Computer computername )Object reference not set to an instance of an object" computername in the real world is replace by the actual machine that is running the load test. If I click "OK", which is the only option I then get asked if I want to view the detailed results of the test... which is fine. This error doesn' ...Show All

  • SQL Server How to add and give roles to users in RS via web service?

    Dear Anyone, Does anyone know how to add and give roles to users in RS via web service Can this be done without autheticating to the domain each time a user is added Reason for asking: We're developing an RS site whose users number to about less than 1k. The securitys information that matches which users are allowed to what objects and their roles are stored in another database. What we would like to do is build a tool that would manually update the security of RS based on the information that we have. Is this possible Is there an easier way to do this Thanks, Joseph ...Show All

  • SQL Server can sql server allow to read record ramdomly?

    anyone have the solution or work around my system need to select x% ramdom record from a batch of data from sql server for validation. is this posible any sql statement allow to select the record ramdomly let say total record is around 1000, example record that i need to select is:- record no 5,48,49,50,147,148,256,257,258,411,412,413,414,415,..... so and so can i use cursor to move around the record to read it if we view on performance of the system. how can i make this at max speed is that clone this table into local access database will make this more faster regards terence chua The first, you should add an ali ...Show All

  • Windows Forms datalist duplicates item 0 throughout

    hi everyone, i got this datalist that's bound to a dataset... im sure the dataset contains distinct rows as i viewed them by a datagrid. however, me datalist is showing the same data for each item in it (it gets the number of rows right though).... any idea whats goin with its binding and why is it different from the datagrid's binding!!... ne help's appreciated. Are you using ASP.NET (DataList is an ASP.NET control not a Windows Forms control)   If so, please post this question to one of the ASP.NET forums:  http://forums.asp.net/ . Thank you, Joe Stegman The Windows Forms Team Microsoft Corp. This posting i ...Show All

  • Visual Studio Source Safe Analyze

    We are using the VSS 2005 Beta with about 10 local users and 3 remote user. Looking from the VSS Admin GUI, we see that nobody is Logged into the Database, but when we try to run Analzye -f it complains that someone is logged in. Where can I see all the machines logged into SourceSafe The remote people are using the VS 2005 Beta with the Internet plugin. These people never seam to show up in the list of users logged in. How can I determine if they are logged in We need to run the Analyze program but can not. How else can I get everyone logged out You can't (unless you have a backup of the database). The cor ...Show All

  • .NET Development message "'Microsoft.Jet.Oledb4.0' provider not registered in local equipment"

    Hello,    I am learning VB.NET and ADO.NET. I am trying to open a Microsoft Access data base with the following code and I get the error message "'microsoft.Jet.Oledb4.0' provider not registered in local equipment". The code is: Imports System Imports System.Data Imports System.Data.OleDb Public Class Form1   Dim cn As New OleDbConnection() Private Sub cerrarBaseDeDatos() cn.close() End Sub Private Sub abrirBaseDeDatos() Dim cnString As String cnString = "provider = Microsoft .jet.oledb.4.0;" _ & "DataSource = C:\Documents and Settings\Aurora Perezyera\mami\programacion admi ...Show All

  • Windows Forms DataGrid and columns sizing

    Hi: I have a DataGrid with 6 columns. The problem is that after dthe binding, all the columns appear very small and I have to double click between each one to expand them. I have tried lots of things to expand them, but it desn't work. Any solution Thanks ;) At design time, create a TableStyle for the DataGrid whose MappingName is&nb ...Show All

  • Visual C# How to reference GAC assemblies using VS2005- how funny is this.

    I've just discovered how I add a reference to an assembly in the GAC from a C# solution using VS2005. I find it rather incredible that it is this difficult to do. And I really don't think I've missed anything here. 1. Go into Registry and disable the GAC cache viewer: HKLM\SOFTWARE\Microsoft\Fusion, DisableCacheViewer- set to non zero. You have to do this as the cache viewer prevents you from copying assemblies out from the GAC. 2. Go into the GAC folder and copy the assemblies you want to reference to somewhere else on your machine. 3. Add the reference from your solution by browsing to the copy of ...Show All

  • Windows Live Developer Forums Windows Live Messenger Service Development Kit

    Hi, is the WLM SDK available For now i can still use the MSN Messenger SDK (if the help file worked), but i imagine there will be new features in WLM. If it is available, Where would be a download point Thanks, JD Do you mean the Activity API SDK If so, it's still available for download out on MSDN, and any Activity developed that works with Messenger 7.5 will also work with the new Windows Live Messenger. ...Show All

  • Visual C# Storing Two Data Types in a List

    Hi everyone, I'm trying to add two types of data to a list object. For example, let's say I want to add a Node object and a String object: private static List< Node , String > nodeList = new List< Node , String >(); The above code returns an error. What is the best way to handle a situation where two data types need to exist as the contents of a list Thanks! Kirupa struct myStruct { public Node node; public string string; } private static List<myStruct< nodeList = new List<myStruct>(); ...Show All

  • SQL Server RS 2005 - Evaluation Version

    Our RS 2005 - Evaluation Version has expired  .... does anyone know if it is possible to copy existing RS reports from an evaluation server to another server How is this done Thanks. RS 2005 is already installed on the new server.   You can use the reporting services configuration tool to configure the new report server to use the existing report server database. Connect the configuration tool to the report server, then use the database setup tab to use the existing report server database. If you have a back up of the symmertric key for the existing database, you'll need to restore the key on the Encryption Key tab. ...Show All

  • .NET Development VB6 and CCW's

    Hi, I need to start writing a set of classes that will be used by our VB6 application. Because I have'nt done much in the past with COM interop, I was getting a bit confused as to what attributes I need to use on my managed classes. for example, do I need GuidAttribute and ClassInterface and ProgId, or just a few of these Remebering that these .NET classes will only be used by our VB6 code, nothing else. Thanks for your help Graham The attributes are optional, yes - as is defining a class interface - but these are important things to do or you will have development and deployment hastles. I've answered many, ...Show All

  • Smart Device Development Debug multithreaded application on WinCE 5.0 with VS 2005

    Hi, I have a multithreaded C++ application. When I break into one of the threads, I want to see the call stack of that thread and all the other threads. This works fine, except when the thread is blocked in the WinCE kernel. For these threads, I don't get a call stack, just a single address within the kernel. At the MEDC I got the suggestion to try to load the symbols for coredll.dll, but that didn't help. How should I go about getting the results I need Antonie Bosch Security Systems. 1) If it is possible to share a simple solution/ sample program that explains your problem it would be grea ...Show All

  • Visual Basic Newbie VB2005 question

    Hi all, Sorry if this seems an obvious question... I am building a quiz program in VS VB 2005 I originally made in Excel VBA, and I have searched all over the place for an equivilant to "Application.Wait", which will pause the code whilst a music file is running. Any ideas on a pause/wait/hold command Many thanks in advance. Thanks very much, Abdullah!  I don't know if this is what Mr. S needed, but it's EXACTLY what I was looking for.  Cheers. --Gary ...Show All

  • Visual Basic How to check if a string is a number

    How do you check to see if a string is a numberic value Dim mystr As String mystr = "12344" If IsNumeric(mystr) = True Then System.Windows.Forms.MessageBox.Show( "All Numbers" ) else System.Windows.Forms.MessageBox.Show( "Not All Numbers" ) End If ...Show All

©2008 Software Development Network