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

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

Berinfo77

Member List

Bovril2006
P.Prashant
Dave Rodegeb
easy4ty
Utku
TimNeale
dlippiet05
dshaykewich
shock56
Charles Washika
tarzan123_us
Vitor Ferreira
niravk
jvheiner
MikeAtOpco
jsedlak
MMTech1
Dani
hssj
gouda
Only Title

Berinfo77's Q&A profile

  • Visual FoxPro COPY TO Command

    In Visual Foxpro, I am trying to create a CSV file using the COPY TO command with TYPE CSV, but do not want header fields on top of the output file. Furthermore, I am also trying to attach a COMMA after every row. Current Output f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17 "0","49162","0","0","0","0","0","0","0","0","0","0","0","0",2.1, "02/14/2006" "0","49162","0","0","0","0","0","0 ...Show All

  • Visual Studio Tools for Office Passing excel workbook object

    Hi, I have got a form which displays an excel spreadsheet, allowing the user to make selections, which the form picks up. This all works fine. I then have an object which wraps the excel workbook object along with some objects representing the selections that have been made. This wrapper object is passed to another class which uses the information to extract data from the workbook. However, when it attempts to extract the data from the workbook, it throws an exception: System.Runtime.InteropServices.COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC.    at Excel.ApplicationClass.get_Cells() i know the code ive written to ...Show All

  • Visual C++ Linker error 2005, libcmtd.lib and msvcrtd.lib(MSVCR80D.dll)

    I'm trying to port a project to VS2005 beta2 and I get lots of errors like this. libcmtd.lib(sprintf.obj) : error LNK2005: _sprintf already defined in msvcrtd.lib(MSVCR80D.dll) libcmtd.lib(swprintf.obj) : error LNK2005: __swprintf already defined in msvcrtd.lib(MSVCR80D.dll) libcmtd.lib(dbgheap.obj) : error LNK2005: _malloc already defined in msvcrtd.lib(MSVCR80D.dll) libcmtd.lib(dbgheap.obj) : error LNK2005: _free already defined in msvcrtd.lib(MSVCR80D.dll) Can anyone point me in the direction of fixing this If its related to project properties can you specify which ones would cause it. Thanks. Jon I a ...Show All

  • Visual Studio Tools for Office Microsoft Visio

    I am trying to make an off-page reference to seperate file. How would I go about accomplishing this I appreciate any help you can give me Kalor Hi Kalor: You can post any questions related to Visio at any of these sites: · General development issues : visio.developer newsgroup http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.visio.developer&lang=en&cr=US · General programming issues : visio.developer.vba newsgroup http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.visio.developer.vba&lang=en&cr=US · Diagram programming issue ...Show All

  • .NET Development How to catch all outgoing traffic in ISA application filter?

    Hi everybody! I need to filter some not supported protocol ( ed2k for example ). So I need to write a protocol-enabling filter according to SDK ( ISA 2004 ). The problem is that ed2k use no definit port for connection. So I need to catch all outgoing traffic in my filter. How can I do this Please repost this to an ISA forum. See http://www.microsoft.com/community . This forum is dedicated to questions relating to the system.net namespace in the .Net Framework ...Show All

  • Smart Device Development sql connection error

    I am getting following error: Error 1 The type 'System.Data.Common.DbConnection' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. C:\Documents and Settings\Adnan\My Documents\Visual Studio 2005\Projects\Mobile5\Mobile5\Form1.cs 20 4 Mobile5 the line which caused problem is System.Data.SqlServerCe.SqlCeConnection conn = null; following are being used as reference using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System. ...Show All

  • Visual Studio Express Editions Modify Datebase Records

    Hi all: I'm trying to modify my database with a small VB Express application.  I could add new records but not modify existing records.  The error message was (the error pointer was on the "Update" statement):  "Update requires a valid UpdateCommand when passed DataRow collection with modified rows."  The following is my code.  It was generated automatically when I drag the dataset grid view to my form.  Private Sub TblPumpBindingNavigatorSaveItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TblPumpBindingNavigatorSaveItem.Click Me .Validate() Me .TblPumpBindingSour ...Show All

  • Visual C++ Error when trying to run apps on other computers

    Hi! I've just switched to Visual C++ Express Beta. All my apps compile and work well, that's on My PC only! Whenever I move my app to another PC and try to run it It gives me this wierd error: "This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this program" . Am I doing something wrong. Am I not getting some files that should be with my apps, or am I not setting the linker correctly Thanks in advance! Ok, you need to run a dependency check on the .dlls that the program uses.  Most likely you need the umm...MFC47D.dll or somet ...Show All

  • SQL Server Slow performance on subscribers

    Hello all! In fact the problem is not replication, but anyway i'm writting the message here, because in one way or another the issue is connected with replication. I have 1 publisher server pushing a merge replication to 12 subscriber servers. My biggest problem is performane of queries on subscribers. This happens to a big table (more then 2 million records) with 10 columns. This is a related table. Query is very simple: SELECT a,b,c FROM tblx_det WHERE id_rel=512435 At Publisher this query takes 0.2 secs. At subscribers go from 30 to 40 secs. id_rel is not a CI. This table has another CI called ID, and if WHERE clause is used wit ...Show All

  • Visual C++ auto_handle

    Hello, Using the msclr::auto_handle class much like I would use std::auto_ptr I have noticed that auto_handle seems to lack both an operator= overload that accepts a reference and a conversion operator to the type of the underlying reference i.e. auto_handle<_element_type> % operator=(_element_type ^ _right ); operator _element_type ^(); Is there a good reason why these members are missing and, if not, can we expect to see them in the final release Hi George,   According to the VC2005 dcoumentation at http://msdn2.microsoft.com/library/ms177074(en-us,vs.80).aspx  and htt ...Show All

  • Visual FoxPro createobject("mappoint.application)

    VFP (9.0) I am experimenting with mappoint for a stevedoring company. I am having problems with the Createobject("mappoint.application") When I execute the code I get the error message ‘Class definition MAPPOINT.APPLICATION is not found.” When I search the registry for MAPPOINT.APPLICATION I find nothing In the registry I see all kind of references to MapPoint but nothing to Mappoint.Application the way I see it for VFP, or EXCEL Mappoint.AddressActions Mappoint.AddressActions.9 Mappoint.Control Mappoint.Control.11 Mappoint.GeoHeadingActions Mappoint.GeoHeadingActions.9 Mappoint.GeoHeading ...Show All

  • Software Development for Windows Vista workflow designer

    Hi All, I wonder whether it is possible to host the workflow designer in my app.  I thought it would be cool if I can have the workflow designer as my app's GUI. Thanks, DK Yes you can. I just saw a video with Scott Woodgate & team demonstrating the designer hosted in a winforms application ...Show All

  • Visual Studio export report to PDF (CR10)

    Hi, I have some issues while exporting crystal reports in pdf format  when I trying to export it from a standalone C# application. (it works fine with excel and word format) If I try to generate pdf reports from an asp.net application, the file generation is perfect. See below the error message: Error in File C:\DOCUME~1\sed\LOCALS~1\Temp\{52A71CA2-2FF9-4798-A8EE-FF18ED15AC9 8}.rpt: Error detected by export DLL: thx Hello Sebastien, This one is stumping me as it goes against most common issues. The best option might be to try the Business Objects technical support team: http://support.businessobjects ...Show All

  • Software Development for Windows Vista Index was outside the bounds of the array in Windows Work Flow

    Hello: I am using OrderingStateMachine workflow application that came as a part of Windows SDK Samples and tried to use OrderLocalServices and OrderWorkflows as a part of ASP.NET application, which I am able to do successfully. Now, when I tried to change OrderWorkflows.Workflow1.cs by adding a new state or even a new event inside existing OrderOpenState (In short any change to the workflow), It gave me Index was outside the bounds of the array error as soon as I tried to refer to workflowRuntime through either of following statements: if ( WorkflowWebRequestContext .Current== null ) or workflowRuntime.StartRuntime(); I ...Show All

  • Visual C# Calculating Date

    Hi, I would like to know if anyone knows how can I make to get the time from the one that I specify until 01-01-1970 (It's like the "date +%s" from the linux) but I need to implement it in my aplication C#, anyone can help This should help: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=80972 *nix uses 1 sec intervals, though, not 100 ns intervals. ...Show All

©2008 Software Development Network