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

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

zisha

Member List

Gertus
Johan Nyvaller
Robert Wakeland
Paolo Greppi
Marcus the Maker
softketeers
Barry Bond
Duke of URL
Graknil
netbug
sybakc
Vitaly K
Jack_Software
ejss06
jmota
GrantSc
Darth Videlous
Paul B
Vivek Janakiraman
Danny Crowell
Only Title

zisha's Q&A profile

  • Windows Forms Loop through datagrid to get values of boolean columns

    Any pointers as to how to loop through a winforms datagrid to get all the selected(checked) columns You can use a rowfilter on the view that's shoen in the datagrid Remco ...Show All

  • Windows Forms Order of Data in the dataset

    Is there any way to find out the order of the data in the dataset. For eg. In my dataset I have 2000 rows, I have following set of values 200 10 40  79 28 I can't do order by clause, because order by will keep on changeing with order by sequence of primary id also change Is there any way to find out in the dataset in the above case 40 is ...Show All

  • Visual C# how to make form invisible on startup?

    I have an application that minimises to system tray and runs on windows startup. I would like the application to start with the main form invisible when loaded. Everything I've tried so far has failed. Any ideas Yes, that seems to work quite well now. Here's my solution for future reference: I have a boolean stayHidden which gets initialized when the form is created depending on wheather or not the program was started with a command line argument or not. Then in the VisibleChanged event of the formI have: if(stayHidden) this.Visible = false; This sets the form invisible when it loads. I made the applic ...Show All

  • Smart Device Development Will there be a Compact Framework 3.0?

    I noticed that WinFX was recently renamed Framework 3.0. Does this mean we will be getting a Compact Framework 3.0 as well :P Alex, Does this mean that the CF 2.0 will be included in the ROM for new releases of PDAs and the 3.0 will be distributed Will we ever see these new releases of the CF distributed through the ROMs of the PDAs (Like the CF 1.0 is distributed now) ...Show All

  • Software Development for Windows Vista Workflow Designer Rules Support

    Hi, I'm in the process of trying to setup a demonstration application which shows an example of workflow and rules management. I need to basically setup a workflow, set some properties, then run the workflow from the designer. Part of this demo include the use of an IfElse activity and a Policy activity which link with the rules engine portions. I've trundled through the examples and the current samples get things about 75% of the way there, and I've probably gotten another 5-10% there by looking at the threads here, but I'm still stuck. Here is what's happening: 1. Create a new workflow 2. Drop an IfElseActivity on the design surface, thro ...Show All

  • SQL Server Help, please ...

    I have a backup of a SQL Server 2000 database that was created in a production environment. I don't have access to that environment at the moment and so I downloaded SQL Express in hopes of being able to restore, open and explore that database backup on my desktop. Question: Does SQL Express have a desktop client analogous to the one that comes with SQL Server Enterprise Manager If yes, how does one activate it If not, what do relatively non-technical people -- as I would characterize myself -- typically use with SQL Express to "get at" their data Thanks very much for whatever assistance is offered. ...Show All

  • .NET Development Null Value exception thrown, need to change default action

    Migrating a legacy Access VB6 app to VS 2005 B2, the old app handles null's read from ADO recordsets in its own way. The migrated code using a dataset is suffering from exceptions that the generated dataset code throws. I need to be able to reset the default action to either ignore or replace etc. This is an option for the field in the dataset (codegen etc). However I would like to do it once for the entire dataset (30+ tables of 20 columns and n assorted queries etc). Doing this by hand for each field is a real pain. Is there a way to change the default null handling option from throw exception to anything else, when initially gen ...Show All

  • Visual C++ std::map<,>, xtree and find

    I am working on an unmannaged C++ application in Visual Studio 2003.  The application is using STL map class. std::map<ApxString, CGPO> GPOs; GPODataFactory.GetGPOs( pContext,  GPOs); std::map<ApxString, CGPO>::iterator GPODataIter = GPOs.find( GPOGroupKey)   GPOGroupKey is of type ApxString of course and it was initialized to "T" earlier in the program. When I go through the debbuger in the GetGPOs function and use the find function, I find the row I am looking for.  However, when I go through the find function after I exit the GetGPOs function, I don't find it. As I stepped into the find function, ...Show All

  • SQL Server Running SQL Server on a Desktop Machine

    Hi, The company I work at was going to install SQL Server 2005 on a server running Windows Server 2000. However this server is no longer available, and due to cost restraints we are unable to purchase another server. I still wish to get SQL Server 2005 running, and have a spare desktop computer avaible. This computer is a P4 3.2GHz with 1GB of RAM and 40GB hard disk. I was thinking of adding RAM and a larger hard disk, and installing Windows Server 2003 on it. Is it advisable to run SQL Server 2005 (and Server 2003) on a desktop computer Any comments or experiences of similar situations would be appreciated. Thanks, Matt ...Show All

  • Software Development for Windows Vista how to implement human workflow in asp.net

    Hi. I am developing one application that is in asp.net. Here, I am using WWF beta 1.0 with vs 2005 beta 2.0. The application is login based. A "user" can log in to site and raise a request for a resource. After this , at any thime, a "reviewer" can log in and review the request and approve it. Then "QA" logs in and can aprrove the requset. I implemented this with sequential workflow. I am starting each time a new workflow whenever a user logs in and submits a request. But the problem is, how to get all this workflows in "reviewer" login and after that, how to move the workflow when the reviewe ...Show All

  • .NET Development oleDbCommand Fill error

    Hi, I have a dataset that is filled from a OleDBCommand that reads an excel file. This dataset is a typed dataset with a specific definition, meaning that it has some fields of type Double and others type string. For some strange reason when I tried to the Fill from the OleDbCommand I got an error that said: "Input string was not in a correct format. at System.Data.DataColumn.set_Item(Int32 record, Object value) Couldn't store < > in Colname, Expected type is Double." The Excel file has around 1500 records but in that column (Colname) in the first data row doesn't have any value but if I put a number it works, It ...Show All

  • Visual Studio Team System Build Target with parameters

    Hello all ! In my ".proj" file, I am each day deploying the source I have built on two different web servers. And for each of them I have some configuration to do. So currently I have something like : < Target Name = " AfterCompile " > < Web.WebSite.Create Description = " $(WebSiteName) " Path = " $(WebDeployFolder) " HostName = " $(DeploymentMachine) " Port = " $(WebSitePort) " /> < Exec Command = " rd /S /Q $(WebDeployFolder)\$(WebDeployName) " /> < Exec Command = " rd /S /Q $(WebDeployFolder)\ ...Show All

  • .NET Development Deserializing Delegates/RuntimeMethodInfo

    I wrote a custom formatter that serializes events. Serializing events results in a RuntimeMethodInfo class being written out to the stream. RuntimeMethodInfo does not have an appropriate constructor for deserialization so ObjectManager.DoFixups() fails with an exception. How do you deserialize events Thanks, Ray I missed IObjectReference somewhere along the line while writing the formatter or perhaps thought that it was taken care of by the object manager. - Ray ...Show All

  • Windows Forms send values to a textbox from a textbox on other winform

    hi all, pls help me with this prob: i hv this one textbox on a form with some values (comma separated) and need to pass these values to another textbox on another form. Codes in C# are most welcome. VB.Net also fine. Thanks guys. Regards. Hi, first of all your two Forms do need to know each other . So at least Form1 needs to have a reference to Form2, in order to fill the TextBox.Text property. Here is how I would do it: Form2 has a public method "FillText(string value)" which sets the .Text property of the TextBox control you desire to fill. Form1 calls this Method ...Show All

  • Windows Forms Form border

    Hi, I would like to display a help form using which is created using these lines Help help = new Help(); help.Show(); I would like this form to be without the top that includes the Form name and the minimize, maximize and exit buttons. Just the border like the one on the left, right and bottom sides. How would I do that  Also, is it possible ...Show All

©2008 Software Development Network