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

Software Development Network >> Kamil Kovar's Q&A profile

Kamil Kovar

Member List

Chris_tr
bobfidelman
Tony Ball
Pirringer
Urip
dbw
randyds
mon
Markus Zywitza
billmac3
Shahed Khandkar
marianf
Antons1
Shiggity
CoffeeGuy
ObieOne
Janine_Whittaker
Calvin Ho
Lampkin
Stuman99
Only Title

Kamil Kovar's Q&A profile

  • Visual Studio Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid

    I have installed a RC version of VS Team Suite along with full MSDN installation. After completing installation, I'v got " Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid " error when I have tried to access it by doing "Start" -> "All Programs" -> "Microsoft Developer Network" -> "MSDN Library for Visual Studio 2005" When I accessed it from VS ...Show All

  • SQL Server multiple charts based on employees in report

    I have two charts that are subreports. I want to see if I can do one of two things. Give the user the ability once the report processes to change the employee name and refresh the chart. Format the subreports to repeat the charts for as many employees that are in the main report. Sometimes there will be 8 other times there will be as many as 20. Yes. For 1, you can pass the employee name through re ...Show All

  • Smart Device Development How to use DEBUGMSG macro?

    Hi, What is the TRACE like method for Smartphone In debugging process I want ot put some message to Output window, is that DEBUGMSG macro is appropriate one In order to use that macro, what kind of header file I should include I included the dbgapi.h file, but it doesn't work. So how to use this kind of trace method Thanks. Well, there is nothing wrong with your code. The problem is that Windows CE ...Show All

  • SQL Server How to iterate over a recordset?

    Hi All, Many moons ago I wrote a blog entry ( http://blogs.conchango.com/jamiethomson/archive/2005/02/08/960.aspx ) about how to, in a script task, iterate over a recordset that is populated into a variable using the Recordset destination. My method there was to use ADODB.DLL but that's a bit "old school". Is there anything in System.Data to which I can cast the Object variable that will allow me to navigate the recordset stored withi ...Show All

  • Visual Studio Express Editions Linker problem with PSDK

    Hi All, I am by no means an experienced programmer, but have taken interrest in C++. I have tried to create a program that should remote control two or more other applications. I am trying to use FindWindow() to get me the handles of the desired applications. At first I had some (trivial) problems with the LPCTSTR, since I am not that good with pointers. If someone can find it in their hearts to explain a little pointer practices for me, I would ...Show All

  • .NET Development Struggling with DataTable.ReadXML()

    Hi guys, actually I've found a solution for my problem, I just wanted to share my experience and ask whether anybody knows why it wasn't implemented the way I would expect :). Example code: ............... System.Data. DataTable table1 = new System.Data. DataTable (); table1.Columns.Add( "Column1" , typeof ( int )); for ( int i = 0; i < 5000; i++) { table1.Rows.Add(i); } System.IO. StringWriter ...Show All

  • Visual C# Intellisense Information from library dll

    I have a C# library project that compiles to a dll. I have several other projects that reference this dll. However, the intellisense commenting does not display for the methods in the dll while if I include the library project in the solution (rather than just the dll in the project) I do get the information. Is there a way to have intellisense get the method information from a dll Thanks. ...Show All

  • .NET Development ADO.net, how to use INSERT statement

    when execute insert statement, happend exception "fail to connect datasource". if change the value( , , ) to real value(3,'dfdf',11). it work well. so it prove that it can connect to DB. and execute select statement, no problem. why insert can happened the problem how to handle it CageNo defined to AutoNumber, CageName to Text and Food to Number(long integer) in Access. Any help, i will appreciate it. using System; using System.Drawing; us ...Show All

  • Visual Studio Unspecified Error on Loading

    Hello, we detect today a very strange behaviour of VSS (6.0d). It is integrated in our Access (Access 2002)-Development and worked fine until this morning. After starting the MDB (and performing VSS-login) Access crashes. Rebuilding from SourceSafe-Source, Analyzing and Fixing VSS changed nothing, so I installed the VSS SP6 for resolving the problem, but no success. If I don't perform a VSS-login the error won't appear, but we need this tool. ...Show All

  • SQL Server Command line tools missing

    I have read about the dtexec utility, but I can not find this on my installation. Is it a seperate install or do I need to reinstall Bob How I found it was by clicking on Start-->Run then entering in dtexecui.exe ...Show All

  • Visual Basic Microsoft.Office.Interop Error

    I have a VB program which involves opening Excel files. To do this I had to add the Microsoft Excel Object Library to my projects' references. There was no problem here until a friend tried to run my project on his computer. The application would start, however once a command to open an excel file was selected, the following error was displayed: Unhandeled exception has occured in your application. Could not load file or assembley 'Microsoft. ...Show All

  • Windows Forms ClickOnce, Xml, & XPath: Querying the *.application file

    Hello all -- I'm trying to write a "home page" for my ClickOnce application.  This homepage does much of what the auto-generated publish.htm file, but actually intergates the application file for the app name, version, URL, etc. My XML & XPath is not very strong, but usually has not failed me.  querying the *.application file has been rough for me, as it has xml namespaces in it and I haven't dealt with that before.  ...Show All

  • Visual Studio Team System PInvoke portability

    FxCop has given the following resolusion message: "As it is declared in your code, the return type of PInvoke Unmanaged.BitBlt(IntPtr, Int32, Int32, Int32, Int32, IntPtr, Int32, Int32, Int32):Int64 will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should ...Show All

  • Visual C# setting a cursor to an embedded resource cursor

    Hi, can anyone help me with the syntax of setting a cursor to an embedded resource. I already added my cursor to my project and tried this Cursor c = new Cursor(GetType(), "cursor1.cur"); this didn't work thanks in advance, kimme You can take a look at the MSAvalon.Windows.Input.CursorTypeConverter . ...Show All

  • .NET Development End of Stream error

    Hello! I keep getting this problem when trying to read a binary stream. "System.Runtime.Serialization.SerializationException: End of Stream encountered before parsing was completed." I've tried using both the FileStream.Seek(0,SeekOrigin.Begin) and the FileStream.Position = 0 but I still get the same error. Here is my code: FileStream fs= new FileStream("stream.bin", FileMode.Open); BinaryFormatter sf = new BinaryFormatter(); fs.Seek(0 ...Show All

©2008 Software Development Network

powered by phorum