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

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

WebRevolution

Member List

Namio Evangelista
stevenb01
CmoreButts
John280459
zatom idham
Doe
Calvin Willman
Stoecker
Mickalinski
nagajim
Tatiana Ivanova
ioe
thedrs
Michael#
Luis Estrada
MarceloTallis
Chris White
Paul Nicholson
jturn99
missbluebar
Only Title

WebRevolution's Q&A profile

  • Windows Forms help,two problems with Form.

    hi all. recently i have got some problems with vs2003. 1. In A Form open B Form that how to refresh the A from or call method of A Form like :  B a = new B(); b.ShowDialog(); now , focus on b form that how call method of a form 2. How Create MDI model Application in .net compact framework( in ppc 2003) thanks. You can use events. For example: Form1 has a button on it, which shows Form2 when clicked. Form2 also has a button which refreshes Form1 when clicked. The code could be: //Form1 private void button1_Click(object sender, System.EventArgs e) { Form2 f2 = new ...Show All

  • SQL Server Error with for..next loop variable

    I'm setting a variable called ConnectionString_vc in a for..next loop.  The connectionstring property of one of my connections is then set to @[User::ConnectionString_vc] via an expression.  When running the package in a SQL agent job I'm getting the following error in my logs.  I've received this sporadically when running it in debug mode in BIS, but it happens consistently in Agent.  The variable "User::ConnectionString_vc" is already on the read list. A variable may only be added once to either the read lock list or the write lock list. Are you using that variable anywhere else Perhap ...Show All

  • Visual Basic VB 2005 Compiler Optimization Discussion

      There's been something percolating in the back of my mind. I come from a computing environment that preceeded windows and the Intel Architecture and instruction set. n comparison to the instruction set that i'm used to, the Intell instruction set looks like a house wreck which may or may not be important to the discussion at hand. Everyone knows that moderators agree on everything and that in moderator space we just stand in love circles and sway back and forth. So when I was discussing a compiler one day, I said I really admired a language which had a seven pass compiler. "Nonsense", was the response, "two will do it." Wi ...Show All

  • Windows Forms Versioning

    In my .NET windows app, i have in my assemblyinfo file this: <Assembly: AssemblyVersion("5.0.*")>  My version is currently 5.0.1602 which is cool. I just dont understand under what conditions that version number is incremented... it was 5.0.1601 yesterday and i cant figure out what exactly i need to do to make it go to 5.0.1603 Anyone know exactly what the ...Show All

  • Visual C++ Migrating an existing MFC application

    I'm investigating different solutions available to migrate our existing MFC application to .Net. At this point I find out that the best way to keep the application working during the migration is using MFC 8.0. I think we should first compile our UI (MFC exe) in Visual Studio 2005, then add /clr and then use .NET class libraries and its user controls to implement new features of our application. The question I have is about the underlying MFC dlls. I mean the business logic layer. Should we compile Dlls of this layer with /clr what are the benefits What is its effect on performance Than ...Show All

  • Visual Basic Need Help on Displaying ContextMenuStrip

    I need help displaying a ContextMenuStrip in a ListBox when I right click my mouse. I have been trying but I only get it on left click and the menu appears in my top left hand corner of my screen. (This is for VB.net 2005) If anyone knows how to do this please help, Thanks! Also I have another question about how to get a text to go to the end. Like I have a text box to show raw data of an IRC Server and I would like to try to get it to the end instead of staying at the top. In Visual basic 6 the code for it was: Private Sub txtData_Change() txtData.SelStart = Len(txtData.Text) End Sub   So In vb.net 2005 I tried this cod ...Show All

  • Windows Forms Yikes: usercontrol inherits from abstract class

    All was going well until I tried to open the designer window for a user control that inherits from an abstract (MustInherit) class.  The designer won't open because it's trying to instantiate the base class, for whatever reason.  Is there a way around this, is this by design or a bug, is it better in C# or .NET v1.1 I guess I can w ...Show All

  • Visual Studio Express Editions under the default settings SQL Server does not allow remote connections.

    vb 2005 Express I was able to access my SQL database table yesterday, but, today I am getting the following error message: "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)" I am on a standalone computer, not on a network and this is just a test file that I created. I get this error on the " Me .DoctorTableAdapter.Fill( Me .DoctorDataSet.Doctor)" line. ...Show All

  • Visual Studio Setup &amp;amp; life cycle

    This is going to be a bit longer ;) I see two kinds of DSLs at this point (and all kinds of shades inbetween): 1) A company builds a DSL and sells it. They come up with a new version every two years. Having the new setup project type is great for that scenario 2) DSLs that evolve rapidly with a project (or many projects). I am going to focus on 2. I see this as follows: Someone builds an app. Sees code patterns that could easily be automated with a DSL. Creates a DSL for a very, very small part of the project. Repeat (ie another pattern is found). Repeat. Repeat. Improve the first DSL a little. Repeat. Repeat. Improve another DSL a little, t ...Show All

  • Visual C# What's this error???

    When I try to changed the name of the control then I received this kind of message. "The name cannot be changed when there is a reference in the markup. Do you continue " Does anybody know where to fix this problem Thanks and Regards, Julia Hi zapacila89 , Thanks for your response. My problem is ok now. When I opened my project again, then the problem goes away.. I don't know why Anyway thanks for your response. Julia ...Show All

  • Visual Studio Team System Reference Project dll from Separate Solution

    I have a team project with about 3 solutions.  How do I reference the output of a project in a different solution without duplicating the project Yes, that was the information I was looking for, though certainly not the answer I wanted.  :-( I realize this is V1 beta of TFS, but I hope things like this get addressed for V1.1 or V2.  I'm a single developer shop and I'm running into scalability problems such as this already.  I can't even begin to imagine problems a larger shop would run into.  Thanx, ...Show All

  • Visual C# Help me to understand better the interfaces

    Hi i read a bunch of articles on articles.. i know exactly how to amke them.. But i dont understand why should i use them .. or for what are they important.. Why should someone wanna make a interface for something... Please help!!! It's not correct to say " inherit from interface" (except complex case, like inheriting interface from another interface). Interface is implemented . You inherit from class. Sample with balls typically implemented like this: public abstract class Ball { public abstract float Radius { get; } } public class FootBall : Ball { public override float Radius { get { return 10.0; ...Show All

  • SQL Server Can Enterprise Evalution Edition be installed on Windows XP SP2 Home Edition now?

    Thanks. I don't believe so, enterprise edition required advanced server. You can install developer edition which has the same functionality as enterprise edition. ...Show All

  • .NET Development type initialize exception

    Im programming a visual c# database with SQL and i keep getting this error Please help System.TypeInitializationException was unhandled Message="The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception." Source="System.Data" TypeName="System.Data.SqlClient.SqlConnection" StackTrace: at System.Data.SqlClient.SqlConnection..ctor() at Therapist.MusictherapistDataSet1TableAdapters.AilmentTableAdapter.InitConnection() in C:\Documents and Settings\tenille\My Documents\Visual Studio 2005\Projects\Musictherapist\Musictherapist\MusictherapistDataSet1.Designer.cs:line 3326 ...Show All

  • SQL Server How to change a field's type?

    Hi, How could I change the field type through T-SQL I have tried Using the ALTER:          ALTER TABLE tblName ALTER COLUMN myID int It didn't work... And also, how could you rename a fieldname cheers, Paul June A. Domag Hi, Sad to say, it didn't work. I searched the BOL of SQLServerCE and the IDENTITY_INSERT switch isn't available. Guess, I'll have to find other means to solve this problem... Thanks a lot Tyler Free  and Eisa  for your ideas and comments... cheers, Paul June A. Domag ...Show All

©2008 Software Development Network