Rameshks23's Q&A profile
Visual FoxPro pulling data from one field and making a new column out of it
Hi all!!! I have two fields, work_id and sp_id. All sp_id's are related to the work_id's ie. work_id sp_id 1 000 3 000 3 111 5 111 9 000 9 111 i need the data to be listed by the work_id, then in another colum have it state whether it is one sp_id, the other sp_id or both sp_id work_id sp_id 1 000 3 both 5 111 9 both any insight life is short, but sweet!! Mike >> Next time you are in NYC let me know, I want to buy you a beer! Glad I could help, but that's an offer I definitely won't refuse. Not sure when I'll be in NYC ...Show All
SQL Server DTS with SQL Express
We have build a conversion for our customers to convert their data from our existing database system to Microsoft SQL. We've tested it with MSDE and SQL Server 2000. We based this conversion off of 183 separate DTS scripts saved as VB 6 files. We then heavily customized them to produce a final EXE in VB 6 that our end-users can run. They answer a few questions and then poof, SQL database. Works great. Now enter SQL Server and SQL Express 2005. With no support for DTS in Express we expect out VB application will fail to execute. As 80% of our customers are MSDE/SQLExpress level customers, this is a real problem for us. What are my options her ...Show All
Windows Forms few questions combining msi with clickonce
Hi, I'm trying to install a clickonce app for all the users on a machine. I know you can't do it via clickonce, but you can via MSI. How could I install an application via MSI and have it look for updates via clickonce Is that possible Please, point me in the right direction. Thanks Hi, ClickOnce applications are per user applications. You cannot install a ClickOnce app for all users. Here is an article comparing ClickOnce and MSI that you might find useful. http://msdn.microsoft.com/smartclient/default.aspx pull=/library/en-us/dndotnet/html/clickoncevsinstaller.asp Thanks ...Show All
SQL Server Distributed data synchronization - Comparing timestamp
Hello, I am designing a distributed application where a central SQL Server 2005 database will need to be synchronized with remote SQLExpress databases via a WebService. Data can be edited at the cental db (by our connected applications) or on the local SQLExpress dbs running on the users machines (by this disconnected application). Now, how can I use the timestamp column to determine the most recent update. The most recent update to me is not the user that most recently invoked the syncing WebService, but the most recent time when the change was made to the data locally vs the change time at the central server. Because a user could mak ...Show All
Visual C# Good VB.net to C# book
Could somone reccomend a good VB.net to C# (2005) book I am interested, at this point, mostly in the basics. I need to migrate from VB.net to C# and would like to do so in the easiest, quickest and most understandable way. Any suggestions or help appreciated WoodrowS – Rather than try to find a personal Rosetta stone, why not just grab a C# book and start at the beginning Doing that will introduce you to new concepts (there will be some) that don’t have a direct translation from VB to C#. And you won’t get all of C# at once. My personal preference is C# Precisely by Sestoft and Han ...Show All
Visual Studio Express Editions I need help
Hi my son Brent is wanting to learn how to program he is only 15 but knows alot about computers. What would be the best way and best programming laguage to learn. Also is there ne programming schooled that he could go to and how old do you have to be. Thnx Stacy Inform him about this forum and that there are tons of others on the web, such as www.xtremevbtalk.com, where there are many beginners as well. Also discussing programming approaches with him will help, programming is not exactly 'I-can-make-the-computer-do-what-I-want' but more of 'I-must-understand-what-I-am-doing'... ...Show All
SQL Server Derived Column Calculation
Example: (47 / 204709) * 12000 = 2.754 Both values (47 & 204709) are of data type Int. SQL Sever - Derived Column Calculation returns 2.74 The destination data type is Float I have converted the data types to Float, Decimal & Numeric and still got the same answer. Any suggestions Yes, I have what I have noticed with the Data Convertion component is that the input and output data types stay the same. Should it not change to the new data type. ...Show All
Visual Studio Team System Visual Studio Team Suite Question
Can I develop Operating Systems in Visual Studio 2005 Team Suite Hi, Take a look at the documents from the link I sent: ftp://ftp.research.microsoft.com/pub/tr/TR-2004-105.pdf Also, I would also recommend you go through a few good books on Operating System Concepts: 1. Operating System Concepts 2. Operating Systems: Design and Implementation Regards, Vikram ...Show All
Visual Studio Team System 28100 Error during installation
I am experiencing an 'Error 28100. Error loading Event web service.' problem with the Beta 3 refresh. I've tried everything I can think of a and all the suggestions made in other threads and the MSDN Product Feedback Centre regarding this error but to no avail. My setup scenario is this: Clean install on dual-CPU Dell server, Windows 2003 Standard edition with SP1, all other software as defined by the installation guide. I've been using SQL 2005 Enterprise edition as a post on Rob Caron's (I think) blog suggested that there is a problem running the beta 3 refresh on SQL 2005 Standard edition. The server is a member of our ...Show All
Visual C++ Real basic question: How do I make .exe file from source codes?
Hello, I'd like to ask a very basic question, I received source codes from my manager, he told me to make .exe file from these source codes, my ex-coworker used to make .exe file from this source code to run this .exe on the most current Pocket PC. This pocket pc is built with Windows Mobile 5.0. I'm not a programmer, so I have no idea how to make .exe from this source code, <question1> do I install embedded visaul C++ and Pocket PC SDK first I'm not even sure which programming language I have to install. <question2>how do I make .exe file using the given source codes step by step I received the following 5 fil ...Show All
SQL Server SQLServerAgent won't start
Hi all, I have a maintenance plan on SQL2000, that is backing up the database. It is under Management/SQL Server Agent. When I try to start the job, I got an error, saying: Error 22022 SQLServerAgent is not currently running so it cannot be notified of this action. But, when I try to start the SQL Server Agent (in Services), it stops directly with the following information: The SQLAgent$Sharepoint service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service. When I try to start it from the SQL Server Service Manager: no reac ...Show All
Visual Studio 2008 (Pre-release) Accessibility of Window components
hi all, i have a window 'mainwindow', with its components in its xaml file. this window contains a textbox, which i want to access from another class. 'mainwindow' is initialized at program start, so i think there has to be an object of this class available for another class. but if i try to do something like this: mainwindow_textboxname.Text = "sometext"; i get the following error msg.: 'An object reference is required for the nonstatic field, method, or property' can anyone help to solve this problem thanks in advance... Hi Kalinkula WPF objects are essentially just regu ...Show All
Windows Forms How to open a form, collect user input from a second form that opens, then display the appropriate data on the original form?
I am trying to develop my first multi-user program in VB. NET - a language that I don't know, in an object oriented environment which I know very little about. Yay. I have run into a couple of challenges that I am not sure how to approach and figured maybe some of you could point me in the right direction. Both of these issues are related to opening a form, prompting another form to open and gathering information, and then sending that information back to the first form. The first scenario: When I run the application, I have a menu of different screens. I select the "Benefits Management" screen (which has information about an emplo ...Show All
SQL Server Error 1923 while installing SQL 2005 Express
This is from the event log Product: Microsoft SQL Server 2005 Express Edition -- Error 1923. Service 'SQL Server ()' () could not be installed. Verify that you have sufficient privileges to install system services. I've tried uninstalling through control panel and various cleanup tools and tried reinstalling with no luck. I'm logged on with a user that has full admin rights. 1923 is an RPC error that translates to "The specified profile entry could not be added." You'll need to search through the SQL Server Setup log files for more detail on what went wrong. Start by looking here and in ...Show All
Visual Studio Express Editions Error al activar version
Hola: Al momento de activar mi version beta 2, el link me envia a una pagina que dice no existir. Saludos. Please see the Registration FAQ (English version). Question #8 (below) tells you how to fix this issue that you are having: 8. What if the Web browser does not launch when I click on the "Register Now" link in the Product Activation dialog The registration links in the Product Activation dialog may not launch if the default Web browser on the system is not set. The Product Activation dialog is accessed by clicking on the Help menu and selecting "Activate Product...". ...Show All
