Rajat Solanki's Q&A profile
Windows Forms databinding a classic form header and datagrid
Hi, I want to be able to manually bind a standard parent-child dataset where my child data is in a grid. i'd like to be abble to move forward and backward to next and prev. header records and for the datagrids data to display according&nbs ...Show All
Visual FoxPro Connect to Outlook Express and Microsoft Outlook
Dear Expert, Can I know how to connect to the Outlook Express and Microsoft Outlook using FoxPro Like the data in a memo feild how I connect or send out using the Outlook Express and Microsoft Outlook Or Can I generete email using FoxPro Thank you. Outlook Express Not directly. It is not a COM Server MS Outlook Yes through COM Automation. You tak ...Show All
Visual Basic Use .NET to create .DLLs for Office 2000?
Is it possible to create a DLL using VB.net (2003) that can be used by Office 2000 programs Yes, It is possible. Using class file to create your component, then in Office / Outlook etc, you include the COM-Add in. Refer to this articles : http://support.microsoft.com/default.aspx scid=kb;EN-US;q302896 ...Show All
Visual Basic Why one DataSet for entire database?
What are the benefits of creating one DataSet for entire database using DataSource window as opposed to creating DataSet for each form Hi, A dataset acts like a memory-resident database in your app. Destroying and creating objects in .net is pretty much memory consuming (when the GC runs) so a proper approach would be to just pass it around instead of creating and populating it on each form... cheers, Paul June A. Dom ...Show All
Visual Studio Express Editions Visual C++ 2005 Express and Platform SDK problem
Hi, I installed Visual C++ 2005 Express and was looking at the Start Page and clicked on DownLoad the PSDK. I did so, installed the PSDK, and followed all the instructions except I had trouble with Step #5. I couldn't find lines 441 - 444 described, and when building the Application the 2 mentioned check boxes for Windows Application and ATL were greyed out (not available). How do I go about getting these areas available in the Application W ...Show All
Software Development for Windows Vista Designer and the Toolbox
We are working on integrating the workflow desinger into our suite of tools. Our shell currently has a toolbox that implements the IToolboxService interface. When we create the DesignSurface for the Workflow designer, we pass in our root service provider (which contains our toolbox service). However, the Workflow designer never asks our service provider for the IToolboxService (though it does ask for many other services). How does the list of av ...Show All
Visual Studio Custom converter
Is it possible to create custom converter like the ones you found with File > Open > Convert... There are the Vb6 to VB.Net project converter and the J# to C# converter in VS2005. I'd like to add a custom one. Is it possible Here's what I found about these converters: The wizard implementation GUID is registered under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Converters and the GUID is defined under HKEY_LOCAL_MACHINE\SO ...Show All
Visual Studio VS Team Test extensible to support alternate languages?
We are VSIP members with debugging support for our own scripting language. Can Visual Studio Team Test be extended for any arbitrary language If not, is this planned and what is the timeframe Thanks. See Microsoft Technical Forums Visual Studio Team System Visual Studio Team Edition for Software Testers That forum will be helpful to you, because the Team System folk are more active over there than in ...Show All
Visual Studio Express Editions Move the Visual Studio 2005 folder to another location?
Hi all, I'm a beginer with VS, I started coding my first program inside the \my documents\Visual Studio 2005\ folder. now I want to move this folder to another location. What should I do if I want to keep all things together and keep my program organized inside the MVB2005EE program Thanks in advance, gren Your project is in a directory.... Simply copy that directory to the location of your c ...Show All
Visual Basic ShutDown event won't fire
VS2005 Beta2 don't know why what's wrong with my project, shutdown event won't fire. I created a new project, shutdown event fires. This project was in Beta1, it is not totally new beta2 project. What could be wrong I compared every file I can think of, no difference. Okay. Just had a look up the help, and the End statement just calls Environment.Exit underneath, this is what it said: "The End statement calls the Exit method of the Envi ...Show All
Visual C++ Efficient initialization of stringstream
Does anyone know of a way can accomplish the following without memory copies I am dealing with character arrays that can easily exceed 1MB. std::stringstream* GetStringStream( const char * input, size_t length ) { return new std::stringstream( input ); } Note that a temporary string object converts const char* to std::string, and this is where the copy occurs. Although my version doesn't use it, I do know ...Show All
Windows Forms DataGridView -- BindingSource isn't updated
I have a DataGridView that is bound to a BindingSource. When the user right-clicks on my grid, I have code that selects the row the user clicked on. It looks like this: private void dataGridView_CellMouseDown( object sender, DataGridViewCellMouseEventArgs e ) { // Select the row employeeDataGridView.Rows[e.RowIndex].Selected = true; } The problem with the above is that the underly ...Show All
Visual Studio Express Editions Set pixel of a window
I'm trying to learn basic C++ so that I can make DLLs for use in another programming language. I've had some success, but got completley stuck when trying to set a pixel on a window. I thought this would be a very easy task, so maybe I'm missing something basic. Anyway, here's the entirety of the code I'm trying: (the window and hDC are already prepaired by the other language) #define STRICT #include <windows.h> #include <stdio.h ...Show All
Visual Studio Express Editions Creating Shortcuts For Applications/Files
Hello Again Everyone, Once again I am asking for help from all you wonderful people here in the Visual Basic Forum. I have developed a nice small application that runs great and does everything I want it to do. I would like to include code in the 'Installation' application that I created to create a normal application shortcut to place in the Startup Menu that points to the application I am installing and possibly to place a shortcut on th ...Show All
Visual C# how to request data using system.net.webrequest in LAN environment?
i m having problems in getting data ...every time it gives an error... webexception unhandled The remote server returned an error: (502) Bad Gateway. i think that this problem is occuring because i m in LAN environment...(using proxies) so what should do i do to make it work ... below is da faulty code.. string rssurl = "http://msdn.microsof.com/rss.xml" ; System.Net. WebRequest myRequest = System.Net. WebReque ...Show All
