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

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

Nksingh

Member List

obh-gruppen
daat99
hiddenTiger
Martin_McNally
DanielAnywhere
mhammingh
CostanzaFV
Superboy
Casey Shaar
Bob_Sullivan
jimmmmmmmmmmmmmmmmmmmmmmmmmm
mary_l
newDBA02131
youju01
PJHead
Arshad98766
waifoong
Web Explorer
DaveL5
cipher2079
Only Title

Nksingh's Q&A profile

  • Windows Forms How To Do?

    Hello,   Can any body tell me how to increase the size of the tool bar button of a tool bar programatically in C#. Thanks in advance Shaji Kumar.V.K Hi Shaji, If you are trying to choose the size of tool bar buttons in .NET 1.1 you can use the ButtonSize property of the toolBar: this .toolBar1.ButtonSize = new System.Drawing. Size (25, 25);   This sets the size of all of the buttons in the toolBar. If you are trying to resize individual buttons, unfortunately there is no clean way to do this since the buttons are enforced to all be the same size. If you are using the .NET 2.0 f ...Show All

  • Visual Basic playing mp3 and mpeg

      hello how i can play mp3 and mpeg with VB is there a free activex   is it possible : playing mp3 with "windows media player" OLE Object   Thanks   This should be a simple process of determining the file that you have selected from the open file dialog and using this to set the URL property of the media player OCX.   You may want to restrict the open file dialog to files that you know media player will be able to process using the filter property and also ensuring the the muliselect is set to false as we only want to return a single filename.         Dim ofd ...Show All

  • Smart Device Development Doubt in wireless communication

    Hi, I developed a PPC application in VS 2003 using webservices that needs WIFI to work.Since WIFI works for limited surroundings i want my application to work at all places like my mobile phone.So what is technology to be followed to work at any where, where i get mobile signal coverage. gprs. Look in settings->connections, you can set up an internet connection there ...Show All

  • Visual C++ msvcrtd.dll not found

    Hi!!!!I'm not sure if this is a .NET problem and I'm not even sure that this thread belongs here.But when I try to run a compiled debug config of a C++ program on VS.NET 2003, I get the message: msvcrtd.dll not found I searched the internet and found that is a common problem,but I can't find where to download the .dll file from.Do you know Or at least do you know how to overcome the problem The msvcrtd.dll belongs to a executable that is in a debug state. The msvcrtd.dll is not redistributable. So you can not find this file in any download package. When you run this program on the machine were it i ...Show All

  • Visual Studio How do I make C++ for e.g. as a startup?

    Hi, When I installed visual studio for the first time it asked what I will be using the most or something and I picked web devolepment. But now I want to change it to C++ is this possible take a look at my blog: http://blogs.msdn.com/quanto/archive/2006/01/06/510328.aspx ...Show All

  • Visual C# Generic Collections with Events?

    Hi, I am trying to make a tabbed control of my own. It's for a text editor and since the default one doesn't have the close button or a nice litle overflow menu like mine does now, I needed to make my own. I have an implementation now, but I am not very happy with it. What I would love to be able to do is have something like the default TabbedControl, where you can do mTabControl.TabPages.Add(key, tabpage); I am trying to use Generics so I dont have to do casts every 2 seconds, but the Dictionary<> class does not have any events. Can someone point me in the right direction here Cheers, Aditya I w ...Show All

  • Visual C# connection string in asp.net?

    hi how can i make the connection string for a microsoft database in a web site in windows applications i donnot need to mention the path so the application assume that the database is in the same path of the application but what about in a web application thanks for help Hi, What do you mean by a Microsoft Database Are you referring to MS Access You would store the ConnectionString in the web.config file and retrieve the same in code. Also note that, the forum for posting questions related to ASP.NET is: http://forums.asp.net/ Regards, Vikram ...Show All

  • Visual Studio Team System Manual Tests with Code Coverage for all assemblies

    Heya. I'm not sure I'm doing this the right way so I'll have to ask. I'm using Unit Tests together with Manual Tests and I'd like to view the Code Coverage information on these tests combined. The Unit Tests runs alright with Code Coverage but I'm not sure how I should run the Manual Tests to gather Code Coverage. Today, I just double-click the .exe in the bin/Debug folder but that seems to just collect code coverage information on the .exe, not the other .dlls. How do I go about running a Manual Test with Code Coverage Cheers, Chris Nope, you're not the only one who has this problem. The way coverage fo ...Show All

  • Architecture Typed DataSet versus DLinq

    The improvements typed dataset is really cool when compared to untyped datasets. How will ADO.net team enhance the typed features of typed dataset in c# 3.0 is DlinQ the mainstream or an alternative PS: many people I know doesn't want custom business entities. even though its off subject ... "it is a myth,that OO domain models have a better maintaniability over procedural/relational codes" You are correct it being you can accomplish object type behaviors using procedural code (ADTs are a great example). OO languages just have built in language support to make coming to the same results more obtainable to a les ...Show All

  • .NET Development Failed to load dataset because of the following error: Unable to find connection ...

    Everything was fine last night, but this morning when I opened my VS 2005 web project, I got this message: Failed to load dataset because of the following error:  Unable to find connection X for object 'web.config'. The connection string could not be found in application settings, or the data provider associated with the connection string could not be loaded. Also, in my DatSet.xsd file, there are not 102 warnings that were not present before, and when I try to switch to Design view, I get "Cannot open a designer for the file because the class within it does not inherit from a class that can be visually designed." I cannot see anyt ...Show All

  • Visual Studio Express Editions Build Form Application From Scratch

    I'm trying to create a form application from scratch and I have some questions: 1. Do I create an "Empty CLR project" or an "Empty Projet" from the "General" tab of the Create New Project dialog I've tried both. 2. namespace System is not recognized and I've try to add references under the Project>>Properties dialog, but none show up to choose. What am I doing incorrectly Please advise and thanks in advance.  kamal I see what you mean and yes I can create a blank form and delete all the files and still maintain the reference files. Thanks... ...Show All

  • Visual Basic 'System.CodeDom.Compiler.GeneratedCodeAttribute' is not defined.

    One application deveploped with VB Express Edt 2005 was running well until last friday. No changes has been done in devep. environment. Today (monday) when after changes in application. icon the application is giving the following error: Error 38 Type 'System.CodeDom.Compiler.GeneratedCodeAttribute' is not defined. This is a new class defined in Framework 2.0. How is it possible that VB does not recognice its own environment   Some of you have had this problem and what  is the solution Regards There is another discussion on the board with a question similar to yours, perhaps you will find it helpful. http://forum ...Show All

  • Visual Studio DEBUG ERROR coloader80.dll

    When I try and run a win32 app with debugging ( i.e I hit F5), I get an error message saying that it could not find the COLOADER80.DLL and suggests that I repair the installation, or manually register the dll with regsvr32 <Path to> coloader.dll . The application runs fine if I execute it without Debugging. * I tried reinstalling but to no avail. * I checked and the dll is present on the machine here: C:\Program Files\Common Files\Microsoft Shared\VS7Debug * I also tried regsvr32 C:\Program Files\Common Files\Microsoft Shared\VS7Debug\coloader80.dll . I get a message saying that the dll has been succesfully register ...Show All

  • SQL Server Aggregates question

    Let's say I have this data set Country Quant USA 100 UK 50 USA 25 How would I get a sum of just the USA quantites while keeping all entries in the details section Assuming this is a table, you would put the following conditional aggregation expression into the table footer: =Sum( iif(Fields!Country.Value = "USA", Fields!Quant.Value, 0)) Only if country = USA, the quantity values will be aggregated. Otherwise 0 will be added. -- Robert ...Show All

  • Windows Forms TextBox typing vs. programatic change

    I have one TextBox that gets filled programatically based on 3 other TextBoxes. If I make a change to any one of the 3 the main TextBox.Text gets re-filled based on the changes. Now, if I don't tab through the main TextBox before I click Save, the main TextBox gets reset to its original value on the call to EndCurrentEdit(). If I do tab through&nb ...Show All

©2008 Software Development Network