AnilKumar1980's Q&A profile
Visual FoxPro IE History
How can I get Internet Explorer history Can anyone help me TIA, Nuno Ruivo You can use OLE automation with InternetExplorer.Application, or host the Microsoft Web Browser ActiveX control on a form. Then you can use the methods of IE programatically for the history - the documentation is online, such as at http://msdn.microsoft.com/library/default.asp url=/workshop/author/dhtml/reference/methods/go.asp . ...Show All
SQL Server How to convert Oracle Database to SQL Server Database
Hi all, how i can convert the oracle database (tables, precedures, sequesnces, ) to sql server database, i would appreciate if anyone give me the step by step process of conversion. Reagrds Ramesh Jha Hi, tables and other entitites can be imported using the Import wizard. But procedures which include PL/SQL code have to be either imported using a migration tool or manually by recoding them. At the end of the day, I guess that if you use a migration tool you still have to do some manual work to get things done. There are also some things which are not existing in SQL Server like sequences. HTH, jens Suessmeyer. --- ...Show All
SQL Server Create DB using OSQL is SLOW
The creation of a database, tables, stored procs, etc is EXTREMELY slow. This same script with Sql Server 2000 took about 8-10 minutes is now taking 45-50 minutes with Sql Server 2005. This is an example: osql -E -S (local) -n -d <DB> -i <StoredProc>.sql using SQL Server 9.0.1399 Any thoughts are appreciated. ...Show All
Visual Studio Express Editions Problem executing general C++ code samples
Hi, I've installed Visual C++ Express Edition and PSDK and I'm able to build and execute simple Windows Forms Applications. But when I try to build the sample codes I've found at "http://msdn2.microsoft.com/en-us/library/ms236269.aspx" I always have the same problem, e.g. when I open the CPUID.sln from the CPUID sample program and try to choose "Properties" from the menu, I only get the error message "The operation could not be completed". When I try to build this sample following message appears: "Build: 0 succeeded or up-to-date, 0 failed, 1 skipped". Rebuilding and Debugging is also not possible. This happens with all the sample codes I'v ...Show All
.NET Development how to run a store procedure
hi i have created a store procedure using the TableAdapter Query Configuration Wizard i called the store procedure "adInsertQuery" now iam woundering how i can execute this store procedure "adInsertQuery" when i click a button Hello. You should be able to execute this as follows: Dim MyTableAdapter as new <whatever the table adapter's name is> MyTableAdapter.Insert(<fill whatever parameters you specified in the Insert stored procedure>) ...Show All
Software Development for Windows Vista Problem installing from a DVD burned from the ISO image
When i try to install the "Windows 'Longhorn' Professional x64 Edition Beta 1" on my PC I get an "setup.exe is not a valid Win32" error. When I try to boot from the CD, it wont! Just some specs on my PC which may/may not be relevent: Athlon 64, SATA Raid array, Asus K8V-X motherboard. You need to format the partition with NTFS with XP's installer. Vista's format is not working well right now. ...Show All
Visual Studio Express Editions Project Files
MSVC++ 6.0 had a wonderful feature in which during the compile process of the main code (which had, of course, user #include file(s) in it), the environment would identify ("discover") *all* header files upon which the project was based - automatically. Do the later MSVC versions have this capacity If so, how do I set up my environment to make this happen and where in the IDE would these files be displayed Thanks. This could be done using multiple ways in VC2005. Some using the IDE and other using a compiler switch (/I). Take a look at http://msdn2.microsoft.com/en-us/library/73f9s62w.aspx where ...Show All
.NET Development Help to get a solid UpdateCommand for DataSet
I have a small amount of experience working with writing UpdateCommands for SQL changes, but none of them have involved working with datasets - just passing variables to a datasource parameters in Stored Procedures and having WHERE clauses update them. However, I'm now working with DataSets, and I'm stumped on how to write changes made to the Dataset to the database, and was hoping someone could give me some demo code, or point me in the right direction - "Write Dataset Changes" didn't give me a lot of help on Google. In the past, I've had this ADO project connected to an MSAccess database, which apparently handles updates and del ...Show All
SQL Server Object reference not set to an instance of an object. (rsInternalError)
I have successfuly installed Reporting Services and developed a number of reports. I then changed the ASP.NET authentication mode from Windows to Forms. I can now no longer access Reporting Services. It just returns the error: An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help Object reference not set to an instance of an object. Changing the authentication mode back to Windows does not fix the problem. Any help would be greatly appreciated. In answer to my own question, this is what I have discovered: The error is caused by the presence of xml ...Show All
.NET Development datagrid related
Hello all, Plz help to rectify my code, its urgent public class Form1 ///// class 1 { form2.getProjectedtable(); } public class Form2 //// class 2 { getProjectedtable() { -------------- display a table in datagrid ---- } Public class Form3 //// class 3 { writing query like select * from table where abc>100 retrieves a row no result taken passed to form2 to highlight the row } datagrid is displayed when I call from class 1 now datagrid is open . simultaneously, when I am trying to highlight a row in data ...Show All
Visual Basic Does Office Word not support WaitForSingleObject?
hi all, anyone can help me to solve this problem my code here: visual basic code: Hi, This looks like VB6 code to me. You really want to ask your question where VB6 experts are - check this post for info on where to go. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=138342&SiteID=1 ...Show All
Windows Forms mshtml editing in vb
Hi Does anybody know how to use inserting image from mshtml editing in Visual Basic.net or vb 6 My code is ---------------------------------- Set doc = WebBrowser1.Document Call doc.ExecCommand("image",Null) --------------------------------- Thanks ...Show All
Visual Studio Express Editions Writing tests with C#
I have two questions: I'm trying to learn how to write software automation tests with c#. I am starting with the sample app MovieCollection, and my test will be to verify each TextBox can handle a minimum data (1 character). I created a windows application with Buttons for each test I run. I now need to open the MovieCollection application from within my test application, but I can't find the correct function to use. I thought Application.Run would do it, but it won't let me enter the full path of the MovieCollection.exe app. Can someone point me in the right direction Second question: Why is there so little on writing c# test automati ...Show All
Visual C++ increment in C++
#include<iostream.h> void main(){ int a=5; cout<<++a<<a; cout<<"\n"; cout<<a; cout<<"\n"; } the above code generates the following output: 65 6 but as per me the output should be as follows: 66 6 why does the incement doen't show up the second time In C++ the order of evaluation of sub-expressions like in your code above is implementation defined. In general you should not read and write to the same variable multiple times in the same expression. ...Show All
.NET Development Calling Javascript from C#.NET
Hi, I have an HTML page with contains both Javascript and a .NET control on it. the html is: <html> <head> </head> <body> <SCRIPT LANGUAGE="JavaScript" src="javascript/projectJS.js"> </SCRIPT> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="100%" HEIGHT="100%" id="project"> <param name="allowScriptAccess" value="always" /> <param name='src' value='index.mxml.swf' ...Show All
