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

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

chassha

Member List

adua
RenRen
J.13.Leach
Mads Brink Hansen
Tri
chandan_chandan
SJ100
dagma20
mchart
Wasim
龙二
musosdev
THughes
AeQuitaZ
Kirk_Mower
Rom90125
SC_Rambo
Abhigad
JeffreySax
ramkanna
Only Title

chassha's Q&A profile

  • Windows Forms Intercept KeyPress Events

    I've tryed to intercept a KeyPress event in my form.  This is the code:  ***************************  AddHandler Me.KeyPress, New KeyPressEventHandler(AddressOf Me_KeyPress)  Private Sub Me_KeyPress(ByVal sender As Object, ByVal e As KeyPressEventArgs)      MsgBox("KeyPressd!", MsgBoxStyle.Exclamation, "Event Intercepted!")  End Sub  ***************************  But the MsgBox doesn't appear!  What&nb ...Show All

  • Visual Basic Add New Data Source for My SQL doesn't work

    I have tried also installing and using the ODBC driver version 3.51 and the My SQL driver 3.1.8.  None of these work. What do I have to do to add a new MY SQL data source Michael I was told by two different Microsoft employees that Visual Studio 2005 Express Edition was the right version of Visual Studio 2005 for me to use for all of my needs including access to ODBC and MySQL data. They emailed me a link with a comparison of all of the different variations and features of the different versions of Visual Studio 2005.  I am trying to remember now, but I think it included a chart with bullets or check marks and comment ...Show All

  • Visual Studio Express Editions MCAD 70-306 Certification

    Who got any ideas for this examination I need some information for this. Hello, This forum are meant for programming related issues for VB Express Edition. I think the below link should be of some help. Link: http://www.microsoft.com/learning/exams/70-306.asp Thank you, Bhanu. ...Show All

  • Windows Forms help with new forms

    hi, im kind of new to window forms so bare with me if this question seems somewhat retarded.. im using the code bellow to display messages to a user at certain points (creates a new window form with a label control to display a message). Sometimes the window will display correctly, however at times when the program is performing a stressful task, the message window wont respond or display correctly (the outline will show, but not the contents of the message window). Can anyone offer a reason as to why this is Also should i be using asynchronous method execution/threading for a task like this (not much knowledge of this!) thanks for any help ...Show All

  • Visual Basic Loops

    Hello, I am trying to create a program that generates the fibonacci series numbers between 2 and 1,000,000,000 (1 billion). The user enters in an number in to a textbox (between 2 and 1 billion), and the program then outputs the Fibonacci series up to that number in a list. The program is also supposed to output the number of numbers found up to that specific number and the sum of all those numbers found. It would be easy if the task was to, lets say generate odd numbers up to a specific number. You would just use a loop and keep on adding "2" until you get up to that number or 1 less than that number. But I can not figure out how would ...Show All

  • Visual Studio Team System Using context variables from one webtest into another webtest

    Is it possible to use a context variable from one webtest in another webtest I realize context variables, when extracted, are scoped for just that webtest. Is there a way around this If so, please explain in detail how to do this. Thank you! I was able to accomplish this by using a 'master' webtest to call several other (calling and called webtests must be coded) webtests. Nothing needs to be done to the webtests being called. Here is an example of what needs to be done in the 'master' or calling webtest: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=433653&SiteID=1 . Then to pass the context, ...Show All

  • Visual Studio Load a new source control plugin error

    Hi Gurus, I am writing a source control plugin(add-in) for vs.net 2003. This add-in works fine when I put all dlls at the local machine that vs.net is installed on. But if I put all dlls on a mapped network drive, I got the following error message: There was a failure while initializing the my source control provider. You cannot use this provider to perform source control operations. When I try to debug it, I notices the following from ide's output window. When I put all dlls at local machine, the resource dll will be loaded twice like the following: 'devenv.exe': Loaded 'c:\myplugin\myresource.dll', No symbols loaded. 'D ...Show All

  • Smart Device Development Converted an embedded vs project to vs 2005

    I downloaded the patch that is suppose to allow you to migrage an existing eMbedded Visual Studio project into VS 2005.  I ran the patch but still don't see an option that will allow me to perform this operation. Any help would be appreciated. One you install the patch, do a FILE OPEN on your eVC project. This will load and convert your eVC project to a VS 2005 Project. Is that not what you are seeing Amit ...Show All

  • Visual Studio i want to use domain/user to login into vss 6.0d

     i want to use domain/user existing on the server where vss is installed. where can i configure it Hi Artur, When you create VSS users to match domain/user accounts you can assign random passwords to them, too (there's no need to have empty passwords). When you're using "Use network name for automatic user log in" VSS will not prompt users to enter their passwords. Setting some random passwords will make it less likely that users will be able to use other users' VSS names when opening the VSS database. Alin ...Show All

  • Windows Forms Please, Help!

    Hi, Coders Please, help me with my system shutdown program! I think I am doing everything just fine, but... Here is my code: public event SessionEndingEventHandler ShutDown; ................................... public Form1() { this.ShutDown += new SessionEndingEventHandler(ShuttingDown); } void ShuttingDown(object sender, SessionEndingEventArgs e) { ShutDown(this,e); } void ButtonClick(object sender, System.EventArgs e) { ShuttingDown(this,new SessionEndingEventArgs(SessionE ...Show All

  • Windows Live Developer Forums Use msn api search with php

    Where i can find any script for use php with msn api I have registered my AppID and now i want do search can anyone post url for execute my query = Check out this forum post for more information on using the MSN Search API with PHP: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=88401&SiteID=1 ...Show All

  • Visual Studio Express Editions Searching for Text

    How can I search for Text in TextBox or in Rich TextBox like that Find button in notepad and Wordpad Please help in this and tell me if it just code or if there is a tool to do that. Thanks. Use the 'Contains' or the 'IndexOf' methods of the Text property of the textbox or rich textbox to search for strings. 'Contains' will return a boolean value indicating whether a string contains a particular substring. 'IndexOf' is more versatile & returns the index of the substring. ...Show All

  • Windows Forms RichTextBox does not resize inside TableLayoutPanel Cell

    Hey all, having a very strange issue with a RichTextBox where its not resizing when the form is resized with its Dock property set to Fill. The RTB sits inside a cell of a TableLayoutPanel which is also set to Fill (as are all other parent objects). The RTB sizes correct when it is first drawn and then doesn't size again after that. I've compared this to existing VB code (with a RTB in a SplitContainer) and its just not working. pStep2.BackColor = Color .FromArgb(0, Color .White); pStep2.Dock = DockStyle .Fill; pStep2.Padding = new Padding (10); pStep2.ColumnCount = 3; pStep2.RowCount = 4; pStep2.ColumnStyles ...Show All

  • SQL Server how to order stored procedures or tables by date

    We used to do this extensively in the old enterprise manager.. this is needed on big systems with lots of tables and stored procedures becuase you normally don't remember the name but it is the most recent thing you were working on.. anyone know how to do this in the new sql server management studio.. thanks In 2005 I would use system catalog view. Vincent ...Show All

  • Visual C# C# error when using VB Activex dll functions.

    Hello can sombody help in solving a problem I am having a problem when trying to call the function of VB ActiveX dll from C# and I am getting the error show at the end. The VB Function is Public Function GetStatistics(ByRef varStats() As Variant, Optional ByVal stStatType As e_STAT_TYPE = e_stCLIENT_STATS) As Long And the RCW has created the function as follows (when adding ref from Visual studio) int GetStatistics( ref Array varStats, e_STAT_TYPE stStatType); The problem is we cannot create the object of Array class as its abstrac ...Show All

©2008 Software Development Network