Software Development Network Logo
  • IE Development
  • Game Technologies
  • Visual FoxPro
  • Visual Studio
  • Audio and Video
  • Smart Devicet
  • Visual C#
  • VS Team System
  • Visual C++
  • Visual Basic
  • Windows Vista
  • SharePoint Products
  • Windows Forms
  • SQL Server
  • Microsoft ISV

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

EYSRG

Member List

pfongkye
BadFog
T.Misner
santaclaus
inzel
asher101
Marcelene
Markus Fritz
PiaMaria
maxmus
Shawnk
Neil_D_Jones
BJohnKenn
RichLeyshon
jwadew
CraftyFella
smudie
spkeller
Elofsson
mcp76
Only Title

EYSRG's Q&A profile

  • Visual Studio Express Editions why wont thins work?!

    hello, i am stuck with this thing!! i want to make a timer that count's down from 30 to 0 and this is what i've used. class timeDown { private int _time; public int time { get { return _time; } set { _time = value ; } } } then on the button i want to start the timer i put private void button1_Click( object sender, EventArgs e) { timeDown count = new timeDown (); count.time = 30; timer1.Start(); } and on the timer_tick thingy i put private void timer1_Tick( object sender, EventArgs e) { timeDown Count = new timeDown (); int num = Count.time; int final = num - 1; Count.time = final; label3.Text = final.ToString(); } ...Show All

  • Visual Studio 2008 (Pre-release) where we use WCF

    any can tell me a practical scenario where we use WCF and how it is better than remoting and webservices The list is endless but to name few of the places where it can be used is business-to-business (B2B) business-to-consumer (B2C), Interoperability with other platforms and technologies messaging for any kind of communication Routing and for all the kind of services that were earlier developed using ASMX, WSE, Web Services, MSMQ, and distributed stack. It also helps in creating the distributed application in a very easy manner that earlier would have involved the usage of two or more distributed technology. These custom solution were earlier not possible to develop in either web services or .NET Remoting. WCF facilitates in buildin ...Show All

  • Visual Studio Express Editions #region Windows Form Designer generated code

    Hello, I'm relatively new to C# and also to C# express. My problem is this: When I first installed and used C# express I had the #region Windows Form Designer generated code and the bool dispose() etc on the Form1.cs code view. But I just realised today that it's not there any more and I tried several times to restart and looked in options etc. Can anyone tell me how to get it back please I'm at a loss. I hadn't realised until now that it had gone as I've been using many turorials and it was always present. Thanks in anticipation. Thank you for your help, phewph!!! I was panicking there for a while, but it's right where you said. I've been fumbling about a bit, watching videos, obtai ...Show All

  • SQL Server SQL Statement

    Hello All, I imported a excel file from SSIS and created a table called Lockbox. To avoid the user from having to change the excel file -it is being imported as is. I only need 4 fields: [Contract ID] , [Check Number], [Owner ID], [Site ID] The table I need to import to Transaction has Diffrent Column Names -ex-CustomerID, ResortID. The columns are in diffrent order. And I need to add more information into them like UserID = 'Hwells', Trantype = 'MF' and convert to a diffrent data type [Site ID] to text. Is their a sql statment that can do this SQL2005 Thanks for your time Not automatically. You could either: 1. Build a SELECT statement to format the data like you want using the INTO keyword to create a new table. 2. (the ...Show All

  • Visual Studio Team System Getting started

    I have installed Team Foundation Server (TFS) on one server, not my workstation. I have installed Visual Studio 2005 Team Edition for Software Developers on my workstation. I only see Visual Source Safe as a possible source control manager. How do I get access to Team Explorer How can I use the Team Foundation Server to set up a source control project I assume that the client for TFS does not have to be on the TFS server Do you have Team Explorer installed on your client If so, then go to Tools-->Options within VS and click on the Source Control node. Select Visual Studio Team Foundation Server from the list. You can then display the Source Control Explorer within the IDE by: Clicking on View-->Other W ...Show All

  • Software Development for Windows Vista UAC Sheild Program Icon Overlay

    I have an application and the Setup.exe and *.exe program file has a manifest added with asInvoker and uiAccess="false" The application is installed for All Users, however the Start menu icon and desktop icon for the application has the UAC shield added. However, clearly our application does not require Administrator permissions due to the manifests. Is there any tools to confirm the manifest is correct or why the shield is being displayed The manifest is shown below for the program file: <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLe ...Show All

  • Windows Forms Messagebox

    hi Is there anyway so my "messagebox.show" buttons will be in different language meaning instead of "Yes/No" It worked for the form,label buttons... I need it for message box how can I do that Thanks ...Show All

  • .NET Development Who's using .Net?

    I am just starting using VB.Net and loving it. But can anyone point to an example of an application created using .Net It seems as if Microsoft doesn't make many apps with it. I am trying to show coworkers some examples. Thanks, Chris ASP.NET is pretty much ready for prime-time, providing genuinely useful functionality, stablility, and real productivity enhancing features. imho, Windows forms isn't suitable for anything but internal and small application development. 2.0 makes some big improvements, but, without a 3rd party UI library, you're really not going to get too far. That's why you haven't seen large apps delivered on a Windows Forms platform yet (and probably never will). An exa ...Show All

  • Visual Studio Express Editions Show what is going on faster

    When I have a program doing something that takes a few minutes, I like to show them the status, so they know that it is not locked up. The progress bar is a pretty good solution, if you know how many 'things' there are. The label and text or even button text works, but slows the program down quite a bit when it is refreshed. A very unique solution I have found is to create a new window form. Remove all the buttons from it, lock it into the top view (always on top), and resize it so it JUST shows the title bar. Make it invisible. Now, when you need it, call it as shown: dim fr as new formname fr.show fr.text = "Loading record " & record & " of " & totalRecords fr.refresh Update it when y ...Show All

  • Visual C++ Errors, Help!!!

    When I try to include string like: #include <string> I always got following errors: E:\MicrosoftVisualStudio8\VC\include\cstdio(37) : error C2039: 'Unsafe_sprintf' : is not a member of '`global namespace'' E:\MicrosoftVisualStudio8\VC\include\cstdio(37) : error C2873: 'Unsafe_sprintf' : symbol cannot be used in a using-declaration E:\MicrosoftVisualStudio8\VC\include\cstring(20) : error C2039: 'Unsafe_strcat' : is not a member of '`global namespace'' E:\MicrosoftVisualStudio8\VC\include\cstring(20) : error C2873: 'Unsafe_strcat' : symbol cannot be used in a using-declaration E:\MicrosoftVisualStudio8\VC\include\cstring(21) : error C2039: 'Unsafe_strcpy' : is not a member of '`global namespace'' E:\MicrosoftVisualStudio8\VC\i ...Show All

  • Visual Studio Express Editions Sharing connection string accross multiple forms.

    I was just wondering is it possible to share 1 connection string accross multiple forms I would like to do this so that I can go from production invironment to Development with the flip of a single switch... Dim connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\database.mdb" thank you Cool thanks. Can I run a program out of this simple count Dim connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\project.mdb" Dim theOleDbCommand As New OleDb.OleDbCommand( "SELECT count([PlayerID])as addthemup FROM tblmain" ) theOleDbCommand.Connection = New OleDb.OleDbConnection(connectionString) Dim datareader As OleDbDataReader theOleDbCommand.Con ...Show All

  • Visual Studio 2008 (Pre-release) Composite GoF pattern

    Hello! Can't you show how to make the Composite GoF design pattern using TPH: table-per hierarchy Particularly I obviously think of the three XML files needed! Best regards, Henrik Dahl The SSDL does not delcare the foreign key - so we do not know about it. However, even if you tell the SSDL about it in this self-assocation case, the CTP bits cannot deal with this particular scenario. So for now, please remove the Fkey into the same table and then try it out. ...Show All

  • Visual Basic How to pass a compative operator (=,+,>,etc.) to a subroutine?

    Can a comparative operator, such as >,+,=, etc. be sent to a subroutine for use on strings, decimal, integer, etc. What I am currently doing is sending the operator in an optional string then using a select case to select each operator, then doing the comparison in each case. This code could be greatly simplified if I could send the operator as an object to the subroutines. Here is a sample subroutine I am using: Private Sub SelectiveSetRowColor( ByRef DGV As DataGridView, ByVal Column As String , ByVal Value As String , ByVal ColorValue As Color, Optional ByVal Operand As String = "=" ) For x As Integer = 0 To DGV.Rows.Count - 1 If DGV.Rows(x).Cells(Column).Value.GetTy ...Show All

  • .NET Development Newbies... Find procedures

    i want to find a record. but nothing happen With ds.Tables("info") .DefaultView.RowFilter = "LastName = 'Mojica'" .DefaultView.Sort = "ID DESC" End With Help please... Sorry! I have just re read the post and reinterpreted the answer! If all you want to do is "Find" a record I would probably just use the following code which mean means you can avoid DataViews altogether. Dim possibleRows() As DataRow possibleRows = ds.Info.Select( String .Format( "LastName='{0}'" , textFilter.Text)) If possibleRows.Length > 0 Then MessageBox.Show(possibleRows.Length.ToString() & " Rows found with LastName of: " & _ textFilter.Te ...Show All

  • Visual Studio MSDN Help

    How do I remove filterby from my help window and display all the help contents for MSDN If you are using Visual Studio Express edition product, this is not supported. However, the MSDN Express Library that ships as part of the VS Express products is not the same thing as the full MSDN Library. Primarily all that would get filtered out by existing filters in Express Library would be content not particularly relevent to the Express product defined by the filter. The full MSDN Library however is now freely downloadable, though not intended to be used with the Express products. You can download the full Library, but unfortunately, you will not be able to integrate it with an Express version of Visual Studi ...Show All

©2008 Software Development Network