simserob's Q&A profile
.NET Development How can I make a web service to serialize as binary?
Hi, How can I make a web service to serialize as binary Thanks What are you looking to do If you have a particular object that you want to pass as binary, you can use Serialization to manually serialize your objects, and pass it as binary. If your concern is performance, I would highly recommend using WSE3, and returning a byte array from your web service (which will automatically use a high perf ...Show All
Visual Studio Team System Synchronizing current file in Solution Explorer and Source Control Explorer
dear all, is there anyway i can sync current selected file in VS 2005 Solution explorer with Source control explorer tree. regards faraz You can rightclick -> Get from either SCE or Solution Explorer. It will prompt you to update the in-memory copy. ...Show All
.NET Development Error deleting a TableAdapter from dataset.xsd
When I delete or make a change to a TableAdapter the form to which I have this TableAdapter bound displays an error message and does not allow me to get to the form to change the Data Source property. Why is this and how do I make actions like this refactor or where do I change the code to disconnect this property Michael There is no error message - it just leaves all the code it generated when you created the ...Show All
Windows Forms how to set the start page?
hi i have a windows application , and i want to set the start page , but don't know how.would u please let me know that thank u very much Hi, Select project properties from project menu and use startup object property to set the start page. But make sure whether static void main() method is included or not. I hope it will help. ...Show All
Visual Studio Visual Studio Beta 2 Install Problem
Hello Friends, I just attempted to install VS beta 2 and was less than successful, even though I received the success message at the end of the install. When I launched VS, the UI came up and looked fine. However, five instances of a dialog box came up that said Package 'Visual Studio Common IDE Package' has failed to load properly (GUID = {6E87CFAD-4ADF-9CD7-3B7943875B7C}). After clicking away the dialog boxes and selecting "Create Your First A ...Show All
Visual C++ Making the .exe file
Hey I have a file .cpp that have my program. I want to execute it and make the .exe file. However, i cant find the way to do that in Visual Studio. Seens like I can only copilate the file if i creat a project, and then i have to build the project. when i build the project with my .cpp file inside, it give alot of errors and dont build the .exe. Can i creat a .exe file without making a project (like, just opening the file and pressing t ...Show All
Visual Basic Dynamically populating a combo box .?
I am trying to populate a combo box on a form based on the contents of a field within SQL. i.e. I read the data from the SQL field. In this case I return the string "Select * From Transactions" I populate my dataset and set the dataset as the datasource of my combo box. This works fine. However what I want to do is to use a where clause in my select statement such as "Select * From Transactions Where AccNo = '" & strAccNo & " ...Show All
Visual C++ error LNK2001: unresolved external symbol ___CxxFrameHandler3
Hi, I am working on a project to migrate a program from 32-bit to 64-bit. The program works fine on 32-bit machine under VC 7, but when I tried to compile it in VC 8 on a 64-bit machine, I received the following linking error: error LNK2001: unresolved external symbol __CxxFrameHandler3 What is the possible cause for this error and how to fix it (i have already tried the suggestions posted  ...Show All
Visual Studio Team System Using Microsoft Project to create work items
I'm trying to use this function (from the right-click menu in Team Explorer for work items). When I add a task in Project and try to link it to a work item, I get a message saying the tasks must first be published. In order to publish the tasks I have to provide a URL for "Project Server 2003" to use. I have tried using the TFS portal URL but that fails. It looks like Project Server 2003 is something different from Team F ...Show All
Visual C++ Crystal Reports ReportDocument in Beta2
Probably not the right forum, but hopefully someone can point me in the right direction. I'm trying to convert a C++/CrystalReports WinForm application from Beta1 to Beta2, but on this line: this->reportDocument1 = gcnew CrystalDecisions::CrystalReports::Engine::ReportDocument(); I get the following compiler error: d:\projects\dacqus.net\welltest\Form1.h(264) : error C3624: 'CrystalDecisions::Enterprise::EnterpriseSession': use of this ...Show All
Smart Device Development CreatFileMapping Peoblem - ERROR_NOT_ENOUGH_MEMORY
I am working on ATMEL SAM9261 EK, WINCE 5.0 I need several FileMappings, it happened when I am doing so for a 30MB file. GetLastError() returns 8 (ERROR_NOT_ENOUGH_MEMORY). I checked the memory status, found that the memory reduces after each CreateFileMapping() for about the size of the file to be mapped. It seems unsual since the memory allocated should not be the amount for the whole file. Anyone can help Thanks. ...Show All
Smart Device Development Call History problem
I have the following code to retrieve my call history. But when I run the Test() method the string contains only StartTimes like: '1-1-01 1:00:00'. What's wrong using System; using System.IO; using System.Text; using System.Collections; using System.Runtime.InteropServices; namespace CallCounter { class Phone { /// <summary> &n ...Show All
Visual Studio Tools for Office Task Pane controls
How can I reference controls on the task pane from excel sheets for example i want to hide buttons in the task pane when specific sheet is activated. thanks.... Hi, You would create a variable for the control that you add to the actions pane. To add the control, you can use Me.ActionsPane.Controls.Add(myControl) and to remove it, you can use Me.ActionsPane.Controls.Remove(myControl). For an exampl ...Show All
Smart Device Development core connectivity issue
I tried to call ICcTransport::CreateStream(L"", 5000, VARIANT, &piStream), but the return value is 0x89731302. I don't know how to solve this problem. Is there any one can help me There is no sample code for the Core Connectivity APIs which will replace the Platform Manager APIs. And the documents about the CoreCon in MSDN is not very clear either. If Microsoft can release some sample code for CoreCon, that will be very helpf ...Show All
Visual C++ Help Me Fix Error: cannot convert parameter 2 from 'char [30]' to 'LPTSTR'
char keep[30]; void CCALCULATOR01Dlg::OnBnClickedButton1() { // TODO: Add your control notification handler code here GetDlgItemText(IDC_EDIT1, keep ,10); } error C2664: 'int CWnd::GetDlgItemTextW(int,LPTSTR,int) const' : cannot convert parameter 2 from 'char [30]' to 'LPTSTR' 1> Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast i'm try to get data fro ...Show All
