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

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

Pratyush

Member List

SQLServer2050
robinjam
KitGreen
glasgow1
Mamatha
vannielou
Francesco De Vittori
AlexBB
tore-
SiddCF
tattoo
shohaib
bruce027721
Davidsfg
Helen999888
JasonY
MiltGrin
R.X.
hazz
Shyam Sundar
Only Title

Pratyush's Q&A profile

  • Windows Forms Visual Studio 2005

    Hi All when I am trying to discover visual studio 2005, I got a strange behavior when I am trying to put about 50 button on the form and run the application it makes some flicking in the startup I tried to avoid flicking by using DoubleBuffered, see this class InheritedButton:Button { public InheritedButton() { this.DoubleBuffered = true; } } and I had used InheritedButton instead of button also makes the Form itself support the DoubleBuffered and still flickers!!!!!!!!!!!!!! You got some buttons there for a single form., although this is not a limitation, it probably is the reason for your form's flickering when displaying all the buttons, especially because your buttons is DoubleBuffered and maybe owner drawn. What happen if ...Show All

  • Windows Forms designer can't load form. Where is 'more information'?

    after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info about whats going on   WM_THXADVANCE thomas woelfer http://www.die.de/blog ...Show All

  • Visual C++ What is difference betweem Win32 API and Win16 API

    Please tell me the exact difference between Win32 API and Win16 API with proper example. This Q. is relevant to Windows Programming using Visual C++ Gaurav Arora wrote: Sorry the same is not satisfactory. Please explore answer with proper example. So, one can easily understand the exact differences. Please note that this is a free service, provided by volunteers. Before asking for extensive reports, do take the time to search for answers to your question. In this case, a few looks at e.g. wikipedia should be able to elighten you. See e.g. http://en.wikipedia.org/wiki/16-bit and http://en.wikipedia.org/wiki/32-bit . Also, this forum is here to deal with C++ language questions. Your qu ...Show All

  • Visual Studio Express Editions How to limit decimal places after a double?

    Hi, everyone E.g. double op, Q = 0.112233445566778899, H = 100.0, k = 20000.0; op = Q * H * k; Can the decimal places of "op" be limited to ..... let say 6 decimal places Or if you want the double itself to be limited you could use this method:          //Trim double v to n decimal places         private double trim(double v, double n)         {             double p = Math.Pow(10, n);             return (Math.Round(v * p)) / p;         }   or bette ...Show All

  • Visual Basic update dataset schema

    Situation/Sequence of Events: 1) Create a Database. 2) Create a Dataset. Drag database table into dataset. 3) Add queries to TableAdapter. 4) Use tableadapter and dataset in form A couple days later.... 5)Realize I need to make a few changes to the database table. Add new column, change another column varchar length, rename another column for consistancy 6) Now the form doesn't work because the tableadapter cannot load due to the column name change. I also realize the dataset doesn't have the new columns. Thus far, my only solution is to delete and readd the table to the dataset. My question: How do I initiate (or set it to happen automatically) an update of the typed dataset after making changes to my d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Finding documentation is strungout like an easter egg hunt!

    Wow. I have just installed beta 2 etc. Started with the 'how to do' info. Have an error in the very first coding example. And went on the hunt. After 24 hours I still cannot find a cohesive document regarding this software. Every where I look points to something else. WHAT happened to the good old days, when you could just pick up a book and read it from cover to cover LOL. I have also been trying to find the Spacewar starter kit. What a joke.... is it in the webcast and is it called something else like star trooper It seems a lost task to find anything online at microsoft.com any more. It looks like it has spiraled into infinity without an index. Ok, now, If you read this. Microsoft xna and express coders. PLEASE PL ...Show All

  • Windows Forms Tab Contol Help...

    I posted this in another part of the forums and didnt get much replies about my first question so i will past the first half of my question here. Hi everyone, some of you have helped me with opening a new form NewEvent neform = new NewEvent(); neform.Show(); which i understand just fine but i was wondering how do i open up and new form with the tab control on it, and make it so that when it open it will open straight to that tab instead of click on the tab for example say you have 2 tabs "tab1=Meeting, tab2= Things to do". and then you go to File>New>Meeting or File>New>Things to do, and it will go straight to that tab, how do i make OpenMode enum public p ...Show All

  • Visual Studio Express Editions storing a date

    i am trying to aquire the system date and time from a click event. i can get the date and time...how do i store that time for later...if i use the date.now.date it will run everytime and i will never reach the end date...i am using this for a trial period trigger and need to be able to reach that end date. anyone have any ideas on how it can be done. Hey, You could store the date in a text file (in the example i created a file in notepad and saved it as .dll file so the average person wont know what to do with it to open it. Just open it as Notepad) In the first line i typed "Unactivated". When the program executes, it gets the current date and it also looks for the file and reads the first li ...Show All

  • SQL Server Info on VLDB (Very Large Database) scenarios?

    So, the boss asked how Sql 2005 does with VLDBs (Very Large Database). Can someone, anyone, point me in the direction of some reliable, relevant information related to Sql 2005 and VLDBs I'm having a tough time finding anything with numbers, Gigs, Terabytes, stats... case studies, etc. Thanks. SQL Server 2005 is more robust for VLDB, it has a lot of enhancements: Backup and Restore operations Import/Export Operations Case Studies: http://www.microsoft.com/sql/prodinfo/casestudies/default.mspx ...Show All

  • SQL Server SQL SERVER EXPRESS can't see my Cerificate

    Hi! I have installed and configured my sqlserver. When I try to load my ceritifcate, the Protocols fo SQLEXPRESS properties screen is displayed, but I don't see my cerificate. I followed the instructions from "How to: Enable Encrypted Connections to the Database Engine" without avail. Thank you! See this http://blogs.msdn.com/sql_protocols/archive/2005/12/30/508311.aspx any help. ...Show All

  • Visual C++ need a book

    What book can I use to learn ADO.NET and visual C++ I have found books of ADO.NET and C#. It is the same as C++ Also I can't find samples for ADO.NET in my documentation, does anybody knows where can i find them Thank's for your help in advance. Ricardo 8a Better buy used...those are rather dated titles (2001 & 2002). If you are using Visual Studio 2005 you might want to also check out : "Pro Visual C++ / CLI and the .NET 2.0 Platform" by Stephen Fraser. http://www.amazon.com/Pro-Visual-C%2B%2B-NET-Platform/dp/1590596404/sr=8-1/qid=1165809668/ref=pd_bbs_sr_1/104-9935884-8953558 ie=UTF8&s=books Like all books its not 100% complete, nor deep in some areas (its only 85 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA beta 2: Live License?

    I was simply wondering if I could use the beta to build a game to be released in the beta timeframe Or would I have to wait for the final version to be released and therefore have my code refactored based on the eventual changes (for sure the Content Pipeline implementation) Thanks. Thanks Zman, that was the answer I was looking for... My bad, I should read these intallation EULA and stop keeping pressing the "accept" radio button and Next ;-) ...Show All

  • Visual Studio Creating Graphical editors

    Hi All, Im trying to evaluate the possibility of creating an xml editor for VS2005, the editor will need to open xml files but display it graphically, the xmls will represent workflows so the intended editor will look like the Visual studio orchestration editor for Biztalk. Basically i would like to know the following 1) Can i create this editor using C# 2) How complex would it be to create an editor similar to the orchestration editor for BizTalk 3) Any links to samples that would be of use. Any comments from your side is appreciated. Thanks ! Regs, Melvin You should have a look at the Domain Specific Language (DSL) support in VSIP, it has a steep learning curve but will do just what you wan ...Show All

  • Visual Studio 2008 (Pre-release) Bug in TabControl/TabItem`s content visibility?

    I use .NET 3 RTM. I have TabControl with TabItems. When I hide a TabItem (Visibility = Collapsed) and do not select another tab (sometimes I hide all tabs so I cannot select any tab), content of hidden TabItem is still visible. yes, I think it is a bug, and there are more than few issues here For ex. < TabControl >                        < TabItem Header = " Item1 " Visibility = " Hidden " > Item1 content </ TabItem >               < TabItem Header = " Item2 " Visibility = " Hidden " & ...Show All

  • SQL Server Installing SP1 problem

    Hi folks I recently downloaded SP1 for SQL Server Express. When I ran the install program, I eventually reached the page where it asked me what features I wanted to install. I chose to do a full install on both the Database Services and the Client Components. Next it asked me did I want to run it against the default instance or a named instance. I chose the named instance option with SQLExpress as the particular instance. Next a page was displayed stating that Database Services 9.1.2047.00 and Workstation components and development tools 9.1.2047.00 were already installed. Clicking on the Details button resulted in a page stating that your upgrade is blocked. It did allow me to click on the next button which resulted ...Show All

©2008 Software Development Network