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

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

Subodhs

Member List

Nico Vuyge
IndianScorpion
Christan
Aravinda
Sean Lively
Chris Doherty
YasinMo
PHILIP LOW
ErikWestermann
Svat
LeeFbx
bill_csharper
Albert Pinto
Henk vd Geld
Gravyboy
Schizm
dealer
QBert
paulains
Ray.B
Only Title

Subodhs's Q&A profile

  • Visual C# what are those files VS2005 creates?

    When i compile my application, there are 3 files it creates: <projectname>.exe <projectname>.vshost.exe <projectname>.pdb i know that <projectname>.exe is the executable file, but are the other two's Which one of those 2 should i include when i want somebody else to debug my program What are the basic ideas of the other 2 files please let me know :) The other two files are related to debugging, but only the .pdb is necessary if you want to give your application to other people to debug.  The .pdb file contains the 'debugging symbols' for your applicaiton.  Having it will allow the debugger to re ...Show All

  • Visual Studio Team System VSTE for Developers as stand alone

    Hi I have today VS.NET 2003 with Compuware DevPartner Studio. For VS 2005 an option would be to upgrade to VSTE for Developers instead of Visual Studio 2005 Professional (and drop the DevPartner Studio). As a stand-alone developer which upgrade path should  I take Thanks in advance for your input. Ivo The VSTS SKUs provide functionality such as profiling, code analysis, load testing, and unit test authoring and execution. These features are valuable as a stand-alone developer, I think. The Team Foundation SKUs might be less interesting to you, as they provide work item tracking, source controls, ...Show All

  • SQL Server copy database tables

    Hi! Can someone tell me how I can copy my database which is made with SQLExpress or the tables to another SQL server. The servers could be SQL server 2000 and SQLExpress. Thanks! SQL Server Express --> SQL Server Express (or any other 2005er edition), just detach the mdf file (if possible) and copy it to the destination location, then attach the orginal one to the server again, and attach the copy to the remote server -done. If you have no maintainance window to do so, make a backup and a restore on the other server (could take a bit longer but keeps your database online during the whole time) SQL Server Express --> dow ...Show All

  • Windows Forms BackColor of MDI Parent Form

    Hello, When my main  top-level form is not MDI the backColor is changeable.  But when it is MDI it becomes slate grey and doesn't respond to the backColor property.  How can I control the color Many thanks. Regards, Clayton That's the expected behavior as far as I know...  This allows the app's appearance to reflect the color scheme (or&n ...Show All

  • .NET Development selecting network interfaces

    Hello everyone, I have been trying to find a way to activate/inactivate network cards in .NET, kinda like ifconfig up and ifconfig down on Linux. The reason is that I simply don't want Windows to automatically choose one interface over the other and use this, but to decide for myself. Is there any good way to do this in .NET I found that IP Helper API can list all interfaces, but it does not seem to be able to manage them. Thanks a lot for any tips! / Roland Ahh, yes. We could have pointed you in that direction if you had mentioned that it was for use with a socket.  Your original question only spec ...Show All

  • SQL Server Converting from Access.mdb database to SQL 2005

    Is there anywhere a program which will convert my 30MB Access database into a SQL2005 database   I've tried the upsizing wizard in Access 2000 and it just bombs.  From the performance hits I now have with my data access since I went to VB.net 2005 and using ADO.net instead of ADO classic, I need to do something.  The ADO.net now takes almost 3 times the time to do my table stuff.  Was using Server side cursors under classic and data access was fast (Is a remote table).  Now the data access is a hog, takes anywhere from 1.5-3 seconds to retrieve a record.  As an added thought, I had done ADO Classic in the VB. ...Show All

  • .NET Development web service access issues

    first I'd like to apologise if I'm starting a duplicate thread here, but after searching for a half hour I was unable to solve this issue. I am new to developing in a microsoft enviroment, more used to unix so please bear with me. I have written a web service using visual studio 2005. Just a sample to try get things working. I then consume it in a windows app (also in VS2005). Both using C#. at first I was using the ASP.NET development web server that launches with VS2005 to serve the web service locally, which was fine. I decided to install IIS (5.1) on my windows XP machine to serve the web service across the network to do some speed tests ...Show All

  • Visual C++ Newbie Question

    Hello, I have just recently started programming in VC++ and i am currently making my first project using this Software. I would likfe to ask if there is any syntax or function that converts a hexadecimal value to Decimal/Binary Value Thanks in advance! I presume that you have a string of hexadecimal characters for which you want the decimal representation   Not too hard... const char *hexStr = "8D0F6"; unsigned long decVal = 0; while (*hexStr != 0) {    char c = *hexStr++;    decVal *= 16;    if (isdigit(c)) decVal += c - '0';    else if (isxdigit( ...Show All

  • .NET Development Where is the packaging & deployment wizard?

    Hi, I spend a few days searching around and reading and re-reading http://msdn.microsoft.com/library/default.asp url=/library/en-us/cptutorials/html/common_packaging___deployment_concepts.asp  but I must be missing something very big .  I still can't find any information on how to package a .NET application, one with sub-folders containing the different language resources.  Would someone be so kind as to lead me the way.  Thank you. Hi, For information on building Setup package for ur app here are some good starting points: 1. Deploying the .NET Framework and MDAC http://www.codeproject.c ...Show All

  • Visual Basic About connection though MySQL

    Hi all, good afternoon! Anyone know's what's the best way to conect to MySql thought VB 5, using ADO or DAO Thanks, Vivian www.connectionstrings.com : OLE DB, OleDbConnection (.NET) Standard: "Provider=MySQLProv;Data Source=mydb;User Id=UserName;Password=asdasd;" Connector/Net 1.0 (.NET) Standard: "Server=Server;Database=Test;Uid=UserName;Pwd=asdasd;" Download the driver at MySQL Developer Zone . Specifying port: "Server=Server;Port=1234;Database=Test;Uid=UserName;Pwd=asdasd;" Default port is 3306. Enter value -1 to use a named pi ...Show All

  • SQL Server Selecting only databases in which user has a role

    I have a user in SQL Server 2000 with public, datareader and datawriter roles on several databases. I need to select all those databases, how can I do that. I have tried sp_databases but I get ALL databases. I also tried sp_MShasdbaccess but I still get all databases. Well, it looks like you're on the right track with sp_MShasdbaccess, but there's a catch. If 'you' want to know which db's that 'someonelse' has, 'you' must be able to first switch the user context to 'someonelse' before running sp_MShasdbaccess, alternatively the other user can run it him/her self. The point is that it's reporting acces ...Show All

  • .NET Development DirectoryServices - Get users from active directory

    Hello! I'm using the following code to get the users of a specific active directory, but it also returns the computer names. How can I get the users only Dim myDirectory As New DirectoryEntry("LDAP://" & directoryName, sAdminUser, sAdminPassword) Dim mySearcher As New DirectorySearcher(myDirectory) mySearcher.Filter ="(&(objectClass=user)(objectClass=person))" Dim mySearchResultColl As SearchResultCollection = mySearcher.FindAll() For Each mySearchResult As SearchResult In mySearchResultColl     ..... Next   "(sAMAccountType=805306369)" " (sAMAccountType=805306368)" ...Show All

  • SQL Server Enable User Instances in SQL Server

    I'm just starting out and trying to connect to my first database using the following string: Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\RFPdb.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True I get the following error during debug: " Generating user instances in SQL Server is disabled. Use sp_configure 'user instances enabled' to generate user instances ." I've done this on every database - Master, Model, Tempdb, etc, and my database. Still get the error. I may not be enabling it correctly. Any help would be appreciated. The documentation suggests that I use user instances so th ...Show All

  • SQL Server Forward_Dependencies Issue

    Hi All  I link to a report passing parm a,b,c (3 parms) a (Hidden), B(Multi Selection), C(Single selection), the report display correctly  and the parm selection boxes display with available options. I would like to be able to choose from the selection boxes and replace the initial (passed parameters) B and C would have a new value, and display the same report using the selected criteria. Thank you Trentino     I can't understand what you are asking. You want to link to the same report with new parameter values Or you want to just select different values Maybe ...Show All

  • Windows Forms MenuStrip steals focus

    Try this... 1. Place a menustrip on a new form (don't add any items to it). 2. Place a button on the form 3. Place a textbox on the form 4. Add this code to the form (watch for wraps)....     Private Sub Form1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp         If e.Modifiers = Keys.Alt AndAlso e.KeyCode = Keys.P Then             Me.TextBox1.Focus()             e.Handled = True         End If  &nb ...Show All

©2008 Software Development Network