Software Development Network Logo
  • Visual J#
  • Visual C#
  • Visual Basic
  • Windows Live
  • Visual FoxPro
  • Windows Forms
  • VS Express Editions
  • Microsoft ISV
  • Visual Studio
  • Smart Device
  • Visual C++
  • Architecture
  • SQL Server
  • VS Team System
  • Windows Vista

Software Development Network >> Chris Longo's Q&A profile

Chris Longo

Member List

Devon Kyle
Nightmare_BE
Ramakrishnan Thangavel
Asgard
cathiec
rohit dsouza
MartinFr-
mladjoboy
Eric1962
brokolyx
Tom2005
Caleb Widmer
davisp2
JustinLabenne
Daniel Ch. Bloch
huwenyan
Hong_Zhang75252
Keith Henkel
Alexander Medvedev
Andre Phillip
Only Title

Chris Longo's Q&A profile

  • Smart Device Development Pocket PC error: "Unable to connect to the remote server"

    I have developed a Pocket PC 2003 app in Visual Studio .NET and am getting an unusual problem i can't get to the bottom of. My VB.NET Pocket PC App tries to call a simple web method on my webservice from the device using the webserver's IP or Machine name and receives the error " Unable to connect to the remote server". Yet if i point the device's IE browser to the location of the webservice asmx file (i.e. http://192.168.1.1/mywebservice/testwebservice.asmx ) i can successfully see the WebService name and the supported operations in the devices browser window. I can confirm that the web reference url within my VB ...Show All

  • Windows Search Technologies Blogs for Developers to check out

    Steve Ickman, a WDS developer, posts some very useful information for developers that want to leverage WDS in their apps. http://spaces.msn.com/members/WDSTech/ Also, my own blog contains some additional information you might find useful: http://brandonlive.com/category/desktop-search/wds-development/ Alright, that's enough shameless plugging for now :) ...Show All

  • SQL Server How to Store System Variables in DB?

    Hi, I want to store the System::StartTime in my Integration Table Log. Please guide how can I use this in my Execute SQL Task Block. I write this SQL Statement: INSERT INTO CMN_tblIntegration VALUES ('HRM_tblParty', ) Which the is for the parameter. I go to parameter mapping tab and map the System::SatrTime to parameter0, but the package fails to run. I also changed the to @IntDate and also changed the parameter name but the error was the same. Please help how to write this System Variable value in to that table. Regards, Samy In this situation I recommend using expressions rather than parameter ...Show All

  • Visual C++ How to read a binary file?

    Hi! I'm just a beginner in C++, though i had tried to learn and do some examples from books,i find it was hard to manage my project. I was trying to open a binary file but i failed. As i had mentioned, i searched through a few books but all i got was just a line of command. I'm not sure how it is supposed to work...... like after i open the binary file, should i represent the binary value with something if not, how to process the values then I'm supposed to use Visual C++ for my project, so applying C++ language will work perfectly in Visual C++ I hope someone will help me out of this problem because i don't know what should i do an ...Show All

  • Visual Studio Document Explorer Crashes on Search

    Clean install of Windows xp Service Pack2, Sql Server 2005 Developer Edition installed, VS 2003 installed, Whenever I perfrom a search or filter I get Document Explorer has encountered a problem and needs to close. Document Explorer works fine for Sql Server Documentation, it only exhibits this behavior with Visual Studio Documentation and does not matter if it is launched from the IDE or from menu. Help!!! this is very frustrating. Thanks mgbee110: I've forwarded your question to the SQL folks. Hopefully we'll have an answer for you later today. Michael Blome Visual C# Documentation Manager ...Show All

  • Visual C++ Selecting Items in a View

    Hi all, i have created an MFC application which currently works fine, what i am trying to do is make sections of the view clickable, so that the user can click and it will update the view with some information. does anyone know if this is possible and how i can implement it thanks for the help Martin (noobie) :) I'm assuming this is a FormView, that is, a view that uses a dialog template to lay out controls You just need to add event handlers for clicking the controls that you want to change the view. ...Show All

  • Windows Forms Sort a DatagridviewColumImage

    I have a column of DatagridviewColumImage type. Join it a DatagridviewTextboxcolumn. The value of image depends of the value of the same row in the Textboxcolumn. My code works ok if I do click in the textbox column but if I click on the image column works only the first time. Private Sub DGV_Sesiones_ColumnHeaderMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DGV_Sesiones.ColumnHeaderMouseClick Dim direccion As System.ComponentModel.ListSortDirection Dim newColumn As DataGridViewColumn Dim oldColumn As DataGridViewColumn = DGV_Sesiones.SortedColumn If e.ColumnInd ...Show All

  • Visual C++ Debugging: error C2115: '=' : incompatible types

    Hi, I have included the code where I have been trying to compile it and I get the following error: error C2115: '=' : incompatible types I can't understand why as I am following an example that works and has a similar command in its code. Any ideas why I am getting this error. The code is as follows and the bold text is where the error supposedly occurs: /* Call Library source file */ #include "C:\Program Files\National Instruments\LabVIEW 7.1\cintools\extcode.h" _declspec(dllexport) long eval(double vect[], long genes, double *result); _declspec(dllexport) long eval(double vect[], long genes, double *result ...Show All

  • SQL Server Union Joins

    Ok, here's the deal. I have created a database for one of my clients and for security reasons I need to use two similar tables to hold the exact same type of information. One table is for general use, the other table is only used by the administrator. But because the information is all the same, I need a way to join the two tables together thru a query so that the dropdown box displays all the combined information from the two tables. The reason I don't just create one table, is because my clients are on a peer-to-peer network. Any changes to the base tables will be seen by all users. As far as I can tell, in MS Access there is no way to ...Show All

  • SQL Server SSIS Package is "hanging" after validation

    My SSIS package will just hang (do nothing) after validation of the package tasks. I realised that it does 2 validation. It then hits "starting exectuing" and then nothing. I mean nothing. It just stays the same. When I look into the logg file, the same message as in the output window. My package has parallel extract of data from the same datasource, but different tables. I dont know if that the problem but i really doubt it because i have done parallel table downloads countless times in version 2000. When i go into the data task window, the source task does no even indicate that its downloading (color yellow). Is there any reason ...Show All

  • Visual C++ converting float to string and string to float

    I know this is getting kinda repetitive but...how would I convert a float to a string and also a string to a float..Thanks a lot..(Code samples would be awesome). Echo: I tried your code, and it works with: Int32 i(99); cout << i.ToString() << endl; You might want to make sure you're using the Visual Studio versions of the includes.  The /showIncludes compiler flag (set under C/C_+->Command Line) can be used to determine exactly which header file you're pulling in.  You should get: 1>Note: including file: E:\Program Files\Microsoft Visual Studio 8\VC\include\sstream 1>Note: i ...Show All

  • Visual Studio 2008 (Pre-release) TabControl and ItemTemplate

    Hi, I want to create a tabControl and I want to specify an ItemTemplate for each TabItem. (with Feb CTP) But this xml code doesn't work. < TabPanel Width = " Auto " Height = " 350 " x:Name = " MyTabPanel1 " RenderTransformOrigin = " 0.5,0.5 " > < TabPanel.Resources > < DataTemplate x:Key = " ContentDataTemplate " > < StackPanel Orientation = " Vertical " > < Label Foreground = " AliceBlue " Content = " Hello " /> </ StackPanel > </ DataTemplate > </ TabPanel.Resources & ...Show All

  • Visual Studio Express Editions Difficulty adding a parameter to a querry

    I am using two MS Access tables in my data source when I create a querry with a literal string everything works fine i.e. Select MyTable * from MyTable where (MyTable.Description Like '%' + 'Anything' + '%' I get the proper results When trying to use a user input field inside the query it doesnt work i.e. Select MyTable * from MyTable where (MyTable.Description Like '%' + @Description + '%' I get an unable to parse error If I use two SQL tables (non access0 everything works fine P.S. My head is hurting because I have been banging against my desk for the past two weeks trying everything I ...Show All

  • Visual C# Sockets

    How can I handle over 1000 live sockets each client socket is almost always reading / writing few bytes is it really practical to create a thread for each socket what is the best wat do handle this kind of a problem thanks,             Shimi. Do Async and don't worry about threads.  When a work item gets added to the queue, a thread from the thread pool will automatically be picked and given the work.  You don't have to manage threads - it's done by the system. The url I pointed to explains this clearly. ...Show All

  • Visual Studio Team System Templates

    Hi Am I missing something here. In the last CTP I had access to both Agile and Formal templates, plus I could build my own. Having just installed Beta2 I only seem to have the option of Agile. I know that there are new things around CMMI due in the July CTP but wanted to check that I should only see Agile in Beta 2 Yes, that is correct. We have several partners that have stuff under development, so keep an eye out for third-party MSF process templates, too. ...Show All

©2008 Software Development Network