Calvin FONG's Q&A profile
Visual C# convert string to currency
I'm taking user input from a form and putting the info in a database. One of the fields in the database has the datatype of money. The entered value in the form comes out as string. How can I convert this entered value into the matching currency (money) value to put into my sqlserver 2000 database I've tried to convert it to decimal and I get an error stating that input wasn't the expected format (when using Convert. ...Show All
Software Development for Windows Vista BPM generations
Can somebody throw light on the added functionalities in 3rd generation BPM products like Ascentn compared to 2nd generation BPM products like K2 etc Regards The new K2 product offerings are built on top of WF. For more information on their features and product lineup, check out their website: http://www.k2workflow.com/ Thanks, Angel ...Show All
Windows Forms add customized combo box in datagridview
i have my customized combo box found in the other site. i need this to add in dfatagrid view the combox box have multiple columns which i find it suitable for me.for now, the problem is aading it in datagridview heres the my code public class mycombo inherits datagridviewcomboboxcolumn public withevents columncombobox as mtgccombobox ---this mtgccombobox is mycombobox found on the other site ........ end class th ...Show All
.NET Development Custom Global Events
Is there a way to have a setup similar to that of the windows forms application events class. I need a setup like this for mulitple pages to handle each others events. Tree.aspx (handles refreshtree event) Events.aspx (Contains a public refreshtree event) Content.aspx (Raises the refreshtree event) Hello, This would be a good question to ask on the ASP.NET Developer Forums , which are also closely mo ...Show All
SQL Server Create Temporary tables/delclare table not working for our environment
Hi, we are going from: .NET --ODBC--> ODBC-JDBC Bridge--> JDBC Driver for SqlServer --> SqlServer Everything works however creating temporary tables is failing: CREATE TABLE #tempDefault ( DefaultKey VARCHAR(255) ,DefaultValue TEXT ) a work around would be to use declare table: ...Show All
Visual C++ Linking-Error with VSC++ 8.0
hey ho, I just updated my project from VSC++ 7.1 to VSC++ 8.0 Express Edition. Unfortunately, i get a linker error every time i compile my project: 1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" ( $ ...Show All
Visual Basic MultiColumn Listbox(add item: Object Text, Object)
How do I add a new Listbox item where item1, column1 holds a TreeNode object text; item1, column2 holds a TreeNode object. The ListBox would display item1, column1(TreeNode object text) but hide item1, column2(TreeNode object). I have a TreeNode search procedure that stores the .Find TreeNode results (TreeNode object only at this point) in a ListBox. I want to store both the Node Text (column1) and Node object (column2) as one item in the Lis ...Show All
Windows Forms export data
How can I export data from a Datagrid to an Excel file I know how to do in ASP.NET, but I want to do the same operation in a WindowsForm application. Thanks in advance Sure, you can get them <a href="http://www.microsoft.com/downloa ...Show All
Visual C++ _tmkdir
Can any one tell me if write permissions to the particular directory are sufficient for _tmkdir to create a new sub directory or are any higher permissions required. Thanks, KarthikR rKarthik wrote: Can any one tell me if write permissions to the particular directory are sufficient for _tmkdir to create a new sub directory or are any higher permissions required. In Win32, _tmkdir is just a wrapper for CreateDirectory ...Show All
Software Development for Windows Vista WinFX RTC December 2005 Not working with December Vista SDK
There's a problem with the WinFx RTC download for December 2005. The links on the page http://www.microsoft.com/downloads/details.aspx familyid=BD3BA2D5-6ADB-4FB2-A3AA-E16A9EA5603F&displaylang=en There's a link to download the entire WinFx RTC package instead of the "smart" installer. http://download.microsoft.com/download/9/4/9/949EEA41-364A-45DC-8F4E-47E7AC147D25/winfxrc.exe I checked the time/date stamp in the downloa ...Show All
Visual Studio Team System Publish trx file to a SQL Server Report
Hi I have a bunch of trx files and I have set up the SQL server where the loadtest database is with reporting services. I want others to be able to view the results that tdoes not have VSTS test edition installed. I know you can convert the trx files to reports if you have a team foundation server. Is there a way to do this with out team foundation server thanks This is ...Show All
Visual C++ problem with adding callback
The errors is trying to say that the compiler is finding it ambigious to resolve your parameter since there are 2 instances of SmAddCallback that can fit your call. You need to be more specific in the second parameter. Hope this helps! Thanks, Ayman Shoukry VC++ Team Hi, I changed from SmHandler __stdcall RecoTextCB(SM_MSG reply, caddr_t client, caddr_t call_data ) to SmHandler __cdecl RecoTextCB(SM_MSG reply, cad ...Show All
.NET Development Help!How to compare systemcurrenttime with my SQL Server datasource?
I still new for Web Developer.I want to display the timeleft in gridview with compare my system current time and the date with store in my SQL database.Who can give me a solution Thanks. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DX10 - No fixed function
What does "no fixed function pipeline" in directX 10 mean for developers What do I need to change to go from fixed pipeline to programmable pipeline Why is this better for the API Thx Ry The benefits of a programmable pipeline over a fixed-function pipeline are quite lengthy, certainly beyond the scope of these forums. I recommend checking newsgroups or other graphics sites like GameDev.net for more information. For those of ...Show All
.NET Development C# How to use Progess bar for writing data to file with multiply lengths
I am trying to figure out how to use a progress bar inside of a loop. Inside this loop a line is written to a text file and I just want to have the progess bar show the progress of this loop so they have some idea how long it will take. But the problem is each time this loop executes a differnt number lines is written to this text file. So Im wondering how could I use the progress bar in this situation Thanks. ...Show All
