DaveHinATL's Q&A profile
Visual C++ Please suggest how in VC++ 6.0 to save/store dynamically created images from objects of CBitmap
Please suggest how in VC++ 6.0 to save/store dynamically created images from objects of CBitmap, and/or to create video from it. Thanks. E-mail: ls233@mail.biu.ac.il German_n wrote: Please suggest how in VC++ 6.0 to save/store dynamically created images from objects of CBitmap, and/or to create video from it. Thanks. E-mail: ls233@mail.biu.ac.il Perhaps this article might help : http://www.codeproject.com/bitmap/createmovie.asp ...Show All
Visual Studio Team System Beta 3 Setup Error: Windows SharePoint Services is not configured as recommended by Team Foundation Server
I am trying to install Team Foundation Server Beta 3 as single server installation and installed all required software components. However, during the installation, it gives me "Windows SharePoint Services is not configured as recommended by Team Foundation Server" error under "Recommened Components" dialog box. I exactly have followed an instruction specified in setup guide for Team Foundation Server Beta 3 for SharePoint services installation. Could anybody tell me what the problem is Thanks in advance. Eric Following these directions helped with getting Sharepoint working on my machine, but running Report ...Show All
SQL Server Access to SQLServer Database from Visual C# app and ASP.NET app
I've created a visual C# GUI that logs data over a LAN. The GUI is for Admin purposes only so it logs data and stores it (plus some admin stuff). The data that is logged is supposed to be served up to anyone on the network as a web app. I've got an instance of SQLServer running and the GUI works great but I can't seem to get the web app to connect to the database to read and display the data for general users I'm new to ASP.NET and SQL Server so a little extra explanation or steps that I'm missing wouldn't hurt me if you have the time to spare. I get an error that says "Cannot get web application service" in Vi ...Show All
Software Development for Windows Vista Communicate with host
Hi, I'm confused about the benefits of creating a DataService as a intermediary between my host and my workflow and where to put my business logic. All of the examples I found only work off the workflow's Idle, Completed and Terminated events, but what if I want to raise an event for the host to do something, wait for a response from the host and continue with the workflow The example I'm trying to build is laughably simple, but I can't get it to work. I have a windows form with a button and a textbox. When the user clicks on the button it starts the runtime and creates an instance of the workflow. The workflow raises an event te ...Show All
Visual C# Validating integers in a textbox
Is there a smart way of validating that a user has typed a integer in a textbox. I dont like the exception way by doing a int test = int.Parse(textbox.Text). Or is this a ok way of validating integer input into a textbox component. Thx, Jim private void searchText_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != 8) { if (char.IsNumber(e.KeyChar) == false) { e.Handled = true; } } I allow the backspace keypress by checking for character 8. You can easily modify this code to suit your needs ...Show All
SQL Server changing SQL server service account
Guys, I have got WINDOWS 2000 Advanced Server and MS SQL SERVER 7.0 running on my live server. Now when we are planning for replication, we have found that SQL server will require to run under a domain account. At the moment there are so many ASP pages running on our server accesses different databases created using SQL server 7.0. Most of them are DSN connections to the database. Now if i create a domain account and restart the server and MS SQL services with the domain account, how is it going to effect the current web pages running on it Any help will be greatly appreciated. Thanks A connection to a database has no bearing on what ...Show All
SQL Server Problem With Attach Tabels
Hellow Everybody. I have an access db that part of the tables there are attached from sql server 2000, and other attache to another access db (access2.0). This DB are transfer data from the sql server DB to access2.0 DB. It had working for 4 month very good. Week ago problems occured when the connection to sql server failed. Everytime I try open sql server table, it ask for connection details (login,password). Is anyone familiar with this kind of problem Could you please provide more information: error message, connection string, etc. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=362498& ...Show All
SQL Server Formatting Drill Down Reports
Morning all, I'm using report builder to create reports on Employee information. When the report is viewed through Report Manager you get the automatically generated drill down reports wherever there is a relation in your data model. This i'm sure everyone knows. My question is, when navigating through these automatically created reports is there anyway to format the output, I only ask because the reports created are often created with two colomns which span the entire web page the first column is left justified and the second is right justified creating a huge gap in the middle. Couple this with the fact that there are no borders seperating ...Show All
.NET Development SSL on TCP Socket, how in .NET 1.1?
Is there a way, using intrinsic .NET framework functionality, to open a TCP connection over an SSL channel I'd rather not get into buying libraries, etc. Java has the javax.net.ssl.* objects, and I'm not finding an equivalent in .NET. I looked all over the Internet, but nowhere a pointer/solution can be found. Please note this is a socket connection, not an HTTPS connection. Also, it's about .NET version 1.1. Any hints/tips/remarks/howto's (if even possible) would be greatly appreciated... If this is a .NET 2.0 issue, please start a new thead and post your code that is giving you this issue. ...Show All
Windows Forms Easiest way to populate new DataGridView Row with previous row values?
I've got a DataGridView and want to populate the new row, using the RowEnter event, with whatever data is in the previous (data just entered) row. This will allow the user to simply change one field value, rather than retyping the consistent values. Other than temporarily storing all of the field data from each row as it is exited (ugh), what's the easiest/cleanest way Thanks S. Hmm. So if I understand you correctly, what you want is to populate the new row with data from the old row. But when the new row is created, the old row might not exist. But the advantage you have, is that the Grid i ...Show All
Smart Device Development VS2005 BETA2 mscorlib.dll problem
I am using vs2005 beta2 and developing smartphone application. when i using release mode build, i give this errors; build failed and "Error: Could not load file or assembly 'file:///c:\program files\microsoft visual studio 8\smartdevices\sdk\compactframework\1.0\windowsce\mscorlib.dll' or one of its dependencies. The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047) " but if i using debug mode build or remove the web reference then i can see build succeeded. This is a know bug when you add a web reference to a V1 project, it would use sgen.exe to compile the project since the Generate serial ...Show All
Visual Basic I need a little help
I want to create an option in my project where you can check and download updates for it. How would this work Thanks After doing My .Application.Deployment.Update(), is there a simple way to restart the app for the user In the past, I'd create a batch file that includes a time delay before starting the app, to give time for the current instance to close completely. Right now, if there's an update available, I simply run the (network) setup program, then close the app. This seems to work, but is inelegant, and not useful with an asynch update. ---MikeB ...Show All
SQL Server How to iterate over a recordset?
Hi All, Many moons ago I wrote a blog entry ( http://blogs.conchango.com/jamiethomson/archive/2005/02/08/960.aspx ) about how to, in a script task, iterate over a recordset that is populated into a variable using the Recordset destination. My method there was to use ADODB.DLL but that's a bit "old school". Is there anything in System.Data to which I can cast the Object variable that will allow me to navigate the recordset stored within it If there isn't, can someone tell me where all the ADODB objects now reside because ADODB.DLL doesn't exist in 2.0 Framework RTM. Thanks Jamie Jamie, I'm assuming you ...Show All
Visual Studio 2008 (Pre-release) Location transparency
Hi to all, I would like to know if in the WCF framework there is some features similar to JNDI in java, or similar to what a "Broker" pattern do , someone that receive a request and know where the real service is Or do I have to implement it (maybe extending the Entity aggregation sample ) Could you give me any suggestion Thanks in advance Alex Are you refering to a router scenario Thanks! Scott ...Show All
.NET Development Missing Files in Microsoft.NET\Framework\v2.0.50727
Norton System Works' WinDoctor has found the error of C:\Windows\Microsoft.NET\Framework\v2.0.50727\ missing files and I believe Windows should address the issue. When I run Norton WinDoctor on my home PC, the following problems appear, with no repair capabilities: Missing program files (10 Problems): C:\Windows\Microsoft.NET\Framework\v2.0.50727\AppLaunch.exe C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet.reiis.exe C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_state.exe C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_wp.exe C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe C:\Windows\Microsoft.N ...Show All
