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

Software Development Network >> topher1065's Q&A profile

topher1065

Member List

NuSoul
Alan Reed
DutchRhino
JonCole
Manu_ivanohe
diavolo
lichtkind
AppMaker
Kanus
Nuno31415
Leo Leys
MChamber
Tardomatic
Rod1953
cravingsushi
Terrence Chan
Pheedbak
Bup
cphtsu
MpRoC
Only Title

topher1065's Q&A profile

  • Visual Studio Express Editions "Executable for Debug Session" and "Additional DLLs" in visual c++ express

    Hello I am trying to debug a c-file with visual c++ express. The executable is run from within matlab. In visual c++ compiler 6 I used to 1. Select the "Debug" tab. 2. Under "Executable for Debug Session", enter the full path to matlab.exe. 3. Select "Additional DLLs" from the "Category" drop-down. 4. Add the name of the DLL/MEX-file you want to debug. In visual c++ express I can't find these option ...Show All

  • Visual Studio 2008 (Pre-release) Messages larger than 12K fail with security enabled

    Hi, I have an operation that returns a large data structure. If the structure exceeds 12k in size then I get a timeout at the client side, but only if SecurityMode is set to SecurityMode.Message. This is the case for bith NetTcpBinding and WSHttpBinding. Any ideas If I enable trace at the client side I can see the following exception is present in the trace file: System.ServiceModel.Security.MessageSecurityException: Message security verifica ...Show All

  • .NET Development Is it possible to use Serializer.Deserialize() within the class being created?

    I want to clean up the creation of a class using the Serializer.Deserialize() call.  Currently I have the lines that are provided on the MSDN site: XmlSerializer serializer = new XmlSerializer(typeof(OrderedItem), "http: //www.cpandl.com"); FileStream fs = new FileStream(filename, FileMode.Open); OrderedItem i; i = (OrderedItem) serializer.Deserialize(fs); Is there any way to place this code inside of the OrderedItem class, maybe in the c ...Show All

  • Windows Forms Setup Project Dependencies

    Hi, I was wondering if someone could confirm the following behaviour. To a VS 2005 setup project, you add the project output for 2 separate projects. Both of these projects has a dependency on the same assembly. So you exclude one of the dependencies that appears in the file system window. This all works well, but when you re open, the dependency you excluded, is no longer excluded. And if you close and reopen again, all your dependenc ...Show All

  • Visual FoxPro newbie question

    Hi, I have an extreem newbie question I have made a textbox and a button, when I push the button I want to fill the textbox with text. This is what happens when I push the button txtbox1.Text = "Test" but when I do this it comes with an error that the object txbox1 does not excist, withs is strange becouse its really the name. please help the problem is one of referencing ...Show All

  • Visual Studio Error installing GAT on VS 2005 (German)

    Hi, after installing GAX/GAT on VS 2005 Professional (German) the Microsoft Recipe Framework and the Guidance Package Manager are available but not the Project Templates or any Project Items. Any idea Thanks Oliver have you got DSL tools / VsSDK installed if so, you should uninstall them and install GAT before them. hope this helps. ...Show All

  • SQL Server SQL Reports in Intenet Explorer

    I can generate Reports and then, deploy them. But when i want to see the report in a web Browser , i only see the root Directory an nothing else But in the Example there are many Admin Tools and the new Report ! And i can’t see nothing Maybe a Security Problem Thanks for Help Are you logging in as a user who is a member of the Administrators group on that machine If not, use Management Studio and add the ...Show All

  • SQL Server IIS Internet Info Services

    Hi, I'm trying to install SQL Server 2005 Enterprise edition. It is telling me that I don't have IIS installed and that it may cause some problems. I can't find where to install from add/remove components nor can I find it in any of my network connections. Does anyone know where to install this from Thanks in advance. Newbie.......Eric IIS comes with XP Pro, it is not available with XP ...Show All

  • Visual Studio Team System o How to accomodate multiple products with a work item

    Our product manager has started to use team foundation. We have one project for our overall product family and our product manager asked me how we can associate a work item with multiple products. This is not the same thing as an area path, as one core feature may appear in multiple products. Does anyone have any ideas on how this can / should be handled     Hi, If I understand correctly, you have features that ...Show All

  • Visual Basic DatagridTextBoxColumn WORDWRAP

    Hi everyone. I have a datagrid working just fine. I added a tablestyle to it and now I want to make my textboxcolumns to use wordwrap. I added the next lines to my columns mytablestyle.gridcolumnstyles(i).wordwrap=True but Its not working at all! Ive read some articles and seen some codes extending the datagridtextboxcolumn but non seem to work. Anyone got a working code How can I make it work You need to make your column style for t ...Show All

  • SQL Server SQL Server 2005 Express: Weird error message running SELECT COUNT query

    When running the following query on table RECORD using an existing SQL Server 2005 Express catalog: SELECT COUNT(*) FROM Record; I get the following error message right from the ODBC's executeSQLStatement(...) line: [Microsoft][ODBC SQL Server Driver][SQL Server]Der Operanddatentyp image ist fur den count-Operator ungultig. (english: The operand data type image is invalid for the count operator) Running the exact same query in ...Show All

  • Software Development for Windows Vista WorkflowInstance.GetWorkflowDefinition and running instance

    Hello, As it was mentionen in earlier posts in this forum, WorkflowInstance.GetWorkflowDefinition returns meta data information of the worklfow. That is to say workflow property values updated during runtime would not be included in the returned Activity instance. I would like to ask you how would it be possible to get the exact copy of a running workflow instance from the host application (including values set to activity properties at ru ...Show All

  • .NET Development bug in Int32.Parse

    In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't.  The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP:     Microsoft Visual Studio 2005     Version 8.0.50727.42  (RTM.050727-4200)     Microsoft .NET Framework     Version 2.0.50727     Installed Edition: Profes ...Show All

  • .NET Development How Can I Perform Command On FTP Server ??

    Hi How Can I (Delete File, Rename, Create Directory , ext..) from the FTP Server with the Help of FTP Classes in .NET Framework 2.0 I have the following Code to Delete the File From FTP Server FtpWebRequest ftpRequest = ( FtpWebRequest ) WebRequest .Create("ftp: //localhost/FileName.txt" ); ftpRequest.Credentials = new NetworkCredential ( this .username, this .password); ftpRequest.Method = WebRequestMethods . Ftp .DeleteFile; ...Show All

  • Visual C++ Problems using _lseeki64, _fseeki64 and _ftelli64

    My application creates a large file and I am trying to use _lseeki64() to position the file pointer. I have found that after a write I need to call fflush() to make it work correctly. If I call it after a read it always positions the file at the end. I have found some references on the internet to _fseeki64() and _ftelli64() but I cannot find them in any include file or library. Any assistance would be greatly appreciated &nbs ...Show All

©2008 Software Development Network

powered by phorum