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

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

tsoft

Member List

daz2006
Kyle J.
IanTaite
kariage
Angelsb
GlennDek
Ian Price
Johan Nyvaller
lpasquali
Todd Kitta 2
Tigraine
Rohit Saxena
bnbkjj;k'l
Nutty
Rebekkah
jimmimacc
Phil Price
richbrc
Tim Wagner
dcee
Only Title

tsoft's Q&A profile

  • Windows Forms Suprising performance increase

    Hello, I recently stumbled across a huge performance difference involving writing out a large hash table to a file.  The hashtable is holding a very simple object called Token, that holds a string value called token and a couple counters.  ToString() is overriden for the object to return: tokenstring [space] counter1 [space] counter2 If I iterate through the va ...Show All

  • Visual C# What the design pattern name for this ?

    I had only understand one design pattern, singleton. :( I had read a couple of other design pattern but i didn't found the one suitable regarding my question. (simple to say, i didn't understand) :( Maybe you can help me out : I had a main form (MDI parent) called FrmMain and it has a menu to call other forms. There will be only one instance of an MDI child (i use singleton for this). So, suppose i have a MDI child called FrmLogin, there will be only one instance of it. Then, i need this instance to access the methods in FrmMain. Do you know what is the name of this pattern This is what i do now : i send a FrmMain reference to ...Show All

  • Microsoft ISV Community Center Forums MS Access VBA - Controlling Textbox in Forms

    Hi, have a question here on controlling the appearance of a textbox in a form. Currently, I have a form which is has its recordsource linked to a table with 5 records. Each of these records have the Field -> "Cost" The form, when loaded, will display all 5 records in a "Continuous Forms View". The "Cost" Field is displayed as a textbox. How do I, using VBA, control the appearance of the text boxes For example, if "Cost" > 10, Use Black background for the textbox and if "Cost" <=9, Use Green background for the text Any help will be greatly appreciated! The text box has certai ...Show All

  • Windows Forms Date Time Picker

    Hi, Anyone know how to format the Date Time Picker in C# to shows MONTHS only Hi, Sorry, please allow me to ask more, can you guide me more details on how to traverse the list view items and create the loop Thanks. ...Show All

  • Visual Studio Team System Create Private Accessor and generic collections?

    Hi, the generated wrapper class to access private members doesn't contain any accessors for fields with a generic type, e.g. private Dictionary< string , CacheEntry> m_cache;   Does anybody know a workaround for this problem Thanks, Andy Thanks for the answer, Michael. I really hope that some support will be included in the final release, since things like private generic Dictionaries used as internal data structures are likely to become common, we already use them extensively, for the usual reasons (type safety, performance). It would be a shame if it would not be possible to access ...Show All

  • Visual Basic How can i that one of function's parameters will be null/defult?

    How can i that one of function's parameters will be null/defult like: public function Hello( ByVal the_name as string , ByVal nice_level as integer )   Hello("joy",10) Hello("joy")   I want to do a defult of nice_level will be 0. Create an overloaded method, like this: Public Function Hello(name As String )     Return Hello(name, 0) End Function Public Function Hello(name As String , niceLevel As Integer )     Return ... End Function   ...Show All

  • Visual Studio How to retrieve dynamic list of values (CR XI .NET)

    Using: Crystal Reports 11 Setup: Step 1: Added Query to xtreme.mdb C:\Program Files\Business Objects\Crystal Reports 11\Samples\en\Databases\ SELECT DISTINCT Orders.[Ship Via] FROM Orders ORDER BY Orders.[Ship Via]; Step 2: Modify Orders.rpt (Edit Parameter: Ship Via) C:\Program Files\Business Objects\Crystal Reports 11\Samples\Code\CR.NET\C-Sharp for VS 2003\CRSetDiscreteParametersSample a) Change List of Values to Dynamic b) Chose a Data source Ship Via c) Value (Ship Via) Parameters (Ship Via) d) Save Step 3) Using .NET open the report without setting any parameters A dialog comes up and prompts you for the data. The one for Ship Via is a ...Show All

  • .NET Development New to Threading Help please

    This is the first time for me using Threading so if you can help me too use the Threading in my application i will greatly appreciate it...This does continue off my last Threading Post... I want the MediaPlayer to be Executed by the toolStripButton2_Click using a Thread and BackgroundWorker... private void toolStripButton2_Click( object sender, EventArgs e) { MediaThread = new Thread ( new ThreadStart ( this .RunMethod)); if (sender == toolStripButton2) { Application .Exit(); if (MediaThread.IsAlive) MediaThread.Abort(); if ( Thread .CurrentThread.IsAlive) Thread .CurrentThread.Abort(); ...Show All

  • Visual FoxPro _screen.ContinuousScroll problem

    I noticed this problem just this morning after spending many hundred hours debugging my app for the past few months when everything worked just fine. This is the setup which is hardly unusual. There is a function in a prg file and a Click method that calls it. There are a couple of print statements like: "coimng out of the function: "+numeric_id and such in the function(s) and one in the Click method. All output is character strings. The button is clicked many times during the debug. I get only one line of output out of the function but the rest of it is overlapping this first line no matter where it is coming from. The ...Show All

  • Windows Forms Deploy DirectX 9.0c

    Hello, I'm not sure if this is the correct forum to put this question in, but any how we got a recent batch of DELL workstations that their Video driver requires directx 9 to be installed on the workstations before you can install the driver. I'm wondering if their is a way to deploy DirectX using Group policy I downloaded the redistrib. copy of DX but it does not have administrative install option. Thanks This isn't the right forum, you might try a Windows OS forum. If I remember correctly though, you don't need the "administrative" install option. The install will automatical ...Show All

  • SQL Server Cannot connect to "Reporting Services" using Microsoft Sql Server Management Studio.

    Hi, I installed latest SQL Server 2005 180 days trial version on my windows XP SP2 machine with the named instance "RS2005POC". I opened sql server management studio and selected Server Type = Reporting Services Server Name = localhost\RS2005POC Authentication = Windows Authentication. Connection failed with the following error message. Any help on this is much appreciated. Also I tried with "cjecw-h1708\RS2005POC" where cjecw-h1708(instead of localhost) is my machine name. Other links to Reporting Services are fine. I am able to work with Report Builder, Report Manager etc. Complete error info: Client found response content ...Show All

  • Visual C# Memory usage

    It seems that every little application I build with C# .net uses at least 10Mb of memory. Is there any way to reduce that Hi, I have already answered this question here: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=56808 Regards, Vikram ...Show All

  • .NET Development Order of webmethods

    Hi,     I've whole bunch of web methods in my web service and they are all appearing in random order instead of the order specified in the cs file. Can somebody tell me if there is any attribute or setting that will let us specify the order, please Thanks for your time! Regards, Swamy  Yeah, I've just found it on web. Thanks anyway for your help! http://www.dotnet247.com/247reference/a.aspx u=http://www.dotnet247.com/247reference/msgs/12/62668.aspx http://dotnetjunkies.com/WebLog/razor/archive/2004/03/28/10229.aspx ...Show All

  • .NET Development Data Set Question

    Hello, I was hoping to get ideas/clarity/advise from some of the folks with experience building distributed applications. TIA, Avinash    1. Suppose your database MS SQL/DB2 is running on a machine that has a non-english install of Windows and the database, will that fact have any impact on the code being developed for example suppose the DB machine is configured to run in Swedish, German etc where . and , have varied meaning in the contex of numbers, will filling the data set etc need any special treatment Will writing inserts/updates and deletes need any special handling. Will using parametrized sql and ADO Commands with n ...Show All

  • Smart Device Development How to read the dataBase of the PocketPC ?

    Hi everybody.. I'd like to know if t's possible to read the "Contact Database" of the pocket PC, and how is it possible if it is... Thanks I use the CF V1, so I've download, the "In The Hand" demo. It contains all the functions I need, and It runs very well. Thanks a lot for your precious help. Regards ...Show All

©2008 Software Development Network