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

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

Asj2005

Member List

enzamatic
FrankCalvin
Programmers
WileyJacobs
Mariano Trinanes
lxwSniper
Shawn McDowell
BMONSTER
Morwyn
Henrique Santos
Guillermo Serrato - MSFT
Fredrik Skanberg
mol233
malawneh
Webzest
Tegs
ExchangeData
ExtremeShannon
Timothy C Hughes
CodeMeister
Only Title

Asj2005's Q&A profile

  • Visual C# Components parameters

    Hi everyone, In here; (object sender,System.EventArgs e) I do not understand anything from the parameters of C#'s components. What is the logic of using these paramater for all components in C# Would you please explain them to me Thanks, Mert I may be biased, but I think our documentation gives a great introduction and overview of events ;-) http://msdn2.microsoft.com/en-us/library/awbftdfh(VS.80).aspx Michael Blome - Visual C# Documentation team ...Show All

  • Visual Studio SourceSafe Integration

    We have a multi-project solution bound to sourcesafe. Everytime a attempt to view a form in the designer I get prompted to check the file out. I guess the designer is attempting to change something in the form. I certainly do not want to check out a form everytime I view it...but out of curiosity I let the IDE check out the file and then did a compare to find out what has changed. In fact some obscure setting in the resx file for the form had changed. Is there anyway to stop this from happening Unlikely. It looks like the designer want to update the file for some reason, so they call scci to c ...Show All

  • Visual Studio Express Editions Problems encountered when changing to 2005

    Hello, I just installed VC++ Express 2005 and opened my project in it. It seems several changes were made in the compiler that now causes my code to be erroneous. I'd like an explanation why these things have changed and the best way to correct them if possible (when its not obvious). 1. I noticed the Win32 Application project wizard was gone. Why 2. for-loops no longer accept previous loop-variables from same-level for-loops to be used. Why 2003 allowed both that and redefinitions. That was great. 3. std::vector functions can no longer use the vector.erase(&vector[ i ]); syntax. Why Thats the easiest way to use these functions. We ...Show All

  • Windows Forms A simple problem with Application.Run()

    Hi all, I am trying to get my win forms application to start, but I'm hitting a problem which I am certain is really simple. The start for my application is ApplicationManager.cs. This class contains the Main() method and a very simple constructor. The class looks something like this: public class{          [STAThread]     static void Main(){ &nbs ...Show All

  • Windows Forms How to get modified rows from a datagrid , when the changes are made on the editable datagrid itself

    I have a datagrid bound to a datatable , which has customized table style. I display the editable datagrid. I modify some rows ( say row 1, 5 and 6 ) on the datagrid from the interface.  Now I would like to get this set of modified rows in the program. Somehow followoing methods are  not working for me    Method : 1 (objDRow.RowState&nbs ...Show All

  • Visual Studio Team System Shipping Beta 2

    There's been a rash of speculation  as of late that Beta 2 has "slipped" to April [ Microsoft Visual Studio 2005 beta 2 delayed ]. As you can read in this post from the Developer Division Release Team [ In the Home Stretch... ], we still plan to ship Beta 2 by the end of March. That has been the plan-of-record for months. Because it takes time to move from shipped bits to downloadable bits , Beta 2 will probably be available for download during the first week or so of April. The Beta Experience is a campaign being run by the local Microsoft subsidiaries in EMEA. Expect to see Beta 2 released on MSDN and available for o ...Show All

  • Visual Studio Beta2 microsoft.common.targets errors

    There are 57 warnings when I created new project after failing to convert from beta1, some of the warnings are listed below. Anybody knows why are these warnings < ResolveAssemblyReferencesDependsOn > Warning 1 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBeforeMicrosoftCommonTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. Expected 'Property' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. R:\WINNT\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 18 10 Miscellane ...Show All

  • SQL Server SQL Server 2000 and 2005 - Same Physical Server

    Hello, We have a server running SQL Server 2000 Standard Edition on a Windows 2003 Standard Edition Server. Can we install SQL Server 2005 Standard Edition on the same box I'm assuming that so long as the instance names are different that it should not be a problem. Has anyone already done this Any problems Thanks a bunch. You can do that so long as they are on a different instance names. One word of caution - when installing SQL Server 2005 on a machine with SQL Server 2000 installed, you can use the default instance. But this will do an in-place upgrade on your SQL Server 2000 default instance. So be very, very careful on do ...Show All

  • Smart Device Development connection issue

    Hi, i'm trying to access MSDE from smart device apps. but connection  failed.Actually i tried this before few months. spent more than a week. but failed. so i just used SQL 2000. Now it's a time to change from SQL 2000 to MSDE. So again trying my best. but still I couldn't make the connection. if i test the connection from Server Explorer -> database connection, connection succeeded. but when i try to establish it via pgm(VB.NET), failed to open the connection. As u said,I enabled TCP/IP. Firewall - off anti virus - unloaded. OS -windows xp pro SP2 Dev.Env :VS2003 still getting error like "Server not found - "CMP1\MSDE1" ...Show All

  • SQL Server Problem in registering external dll using Create Assembly

    Hi,    I have created CLR Trigger project using SQL Server Project. In that project i want to add external dll which is located in disk. For that first i have placed the external dll in one folder. Than i have placed all the supporting dlls for the external dll in that folder. Then using Create Assembly i tried to register it(i have give PERMISSION_SET=UNSAFE). But it gives the following error. I  have placed the system.web.dll also to the external dll folder. How to solve this problem. Warning: The Microsoft .Net frameworks assembly 'system.web, version=1.0.5000.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a.' you are ...Show All

  • Visual C# Program doesn't Terminate

    I've made a program that has a thread that continuously receives the bytes from a server via socket. The code is like this: data = new byte[1024]; receiverThread = new Thread(new ThreadStart(Rec)); receiverThread.Start(); public void Rec()   {    while(true)    {     try     {       recv = client.ReceiveFrom(data, ref remoteEP);       txtDisplay.Text += Encoding.ASCII.GetString(data, 0, recv) + "\r\n" ;     /*txtDisplay is the Textbox in which the received strings are displayed  */ ...Show All

  • Windows Forms Was it supposed to do that?

    So when I was testing an app in debug mode, I apparently broke a datagrid - cause it changed to a red X. The app didn't crash, just that control. I haven't been able to duplicate. Just thought I would mention it in case anyone knows what I did. ...Show All

  • Visual C++ Creating Strings

    Hello, I've been wondering how is it possible to create a global String variable When I write "String^ str" it says: global or static variable may not have managed type 'System::String ^' 1>        may not declare a global or static variable, or a member of a native type that refers to objects in the gc heap But when it's in a private operation it works. With Thanks,                     Gal Beniamini. You can't have global variables that are managed in C++/CLI. This is a restriction of the runtime. ...Show All

  • SQL Server Sending one message to multiple consumers

    Hi Remus What if I need multiple clients to read (RECEIVE) the same message Would it be possible Thanks No. A message can only be received once. Normally the first RECEIVE statement removes it from the queue, so no other RECEIVE can find the same message. Also there is no way for the clients to specify the message to be received. With a WHERE clause the RECEIVE statement at most can restrict the result set to a particular conversation, but not to a particular message. And finally RECEIVE statement is always executing in READ COMMITED isolation level, so two clients cannot receive messa ...Show All

  • Visual Studio 2008 (Pre-release) Problem with LocBaml

    I did every thing right as per the devx article to localize my application. I have managed to create 2 resource dlls 1. en-US and 2. ez-CH There are lot of initial hikeups before i could get to above stage. The problem is, even after changing the culture, the UI (lables) doesn't seems to be changing the culture. I have used online tool to convert english to Chinese abd pasted in the excel file. But when i open this csv file, it does not show the chinese characters. shows some junk. Do i need to install Chinese font in my machine can some one help me as i have a deliverable to release by this weekend. Thanks in advance ...Show All

©2008 Software Development Network