Software Development Network Logo
  • Visual Basic
  • Windows Vista
  • SQL Server
  • Microsoft ISV
  • SharePoint Products
  • Visual Studio
  • Visual C++
  • Visual C#
  • Audio and Video
  • IE Development
  • Visual FoxPro
  • .NET Development
  • Game Technologies
  • Smart Devicet
  • Windows Forms

Software Development Network >> Jan Kučera's Q&A profile

Jan Kučera

Member List

NotMyself
mario.muja
Fluxtah
Mike Wachal - MSFT
KenJoh
AdeptBlue
TImmae
doubletrouble
zr119_62
Shadi_05
eriklarsson
Danny_FADBA
NetPochi
SilverOak
alsc
schobmich
dream pro designer
fleo
eeidfn
rusty_dev
Only Title

Jan Kučera's Q&A profile

  • SQL Server Database not in view in new maintenance plan SQL 7 (options)

    I recently migrated my database to SQL2005 from SQL7.  It was simply a restore from a backup and was cake. But now when I go to run a new maintenance plan I do not see my database. I found that the database options are set to SQL7.  If I change it to SQL 2005 I see the database. What impact will this have on my data Surely it is NOT self explanatory. It barely says anything at all. Damn wrong side of the bed Satya SKJ wrote: That is self-explanatory and there will not be any data updates until unless the user is initiated such process. BACKUP/RESTORE wouldn't attempt such process to the data. ...Show All

  • Visual Studio Tools for Office I need help!

    I would really appreciate it if someone could help me out on this I'm having problems with the security permissions of the word document customization assemblies. Even after giving permissions to the assembly from the .Net framework configuration, it's still telling me that the customization assembly does not have the required permissions to execute. I've been facing this issue for a long time.. plz if anyone has the solution to my problem, i'd really appreciate your feedback thanks Maha Thanks for your concern Maarten both the document and the assembly r in the same folder.. i tried publishing the VSTO project on file system (on my C drive) and i also tried publishing it to an IIS loca ...Show All

  • Smart Device Development DEploy pocket PC program

    How can I deploy pocket PC program I made one by C# but I fail to make a deply program or cap file I have many picture in that program so how could I ceparate between the program and the images and how can I deply .net compact frame work with the cab file Hi Hamdi, As Ilya said, it is a very big number of images to add to your project cab file in a mobile application!! try reduce it, and you can add them later to a resource file, or placing them in a directory in your solution, and add it to your cab project as resources. Note: i don't think i know you, but if you think you know me, think hard from where and tell me. Regards, If this post was helpfull, please press "Yes". Ahmed H. Waly ...Show All

  • Software Development for Windows Vista How to pass (list of) extension filters to SetFileTypes() method from an managed application?

    I am currently working with the VistaBridge SDK sample and the implementation of the FileOpenDialog is pretty much done, except the part (and this is important for any practical usage) where we can specify the filters. I think I know why that part wasn't done... (hence this thread) The new APIs take in the filter as a struct. The method "SetFileTypes()" takes the count and a pointer ref to the structure (basically an array ). From the VistaBridge, the struct and the method call is below: [ StructLayout ( LayoutKind .Sequential, CharSet = CharSet .Auto, Pack = 4)] internal struct COMDLG_FILTERSPEC { [ MarshalAs ( UnmanagedType .LPWStr)] internal string pszName; [ Ma ...Show All

  • Software Development for Windows Vista Failure in Registering Active X on Vista

    I have a Activex Component which is Outof Proc Server (.exe) I am trying to register the server using regsvr32 pcsexeps.dll Failed to see entries in registry Help me in this. Have you contacted the manufacturer of that activex There are certain things that will break on Vista and the most proper channel to ask that question is with the manufacturer of the activex. ...Show All

  • Visual Basic Dts.Runtime errors

    When I use Imports Microsoft.SqlServer.Dts.Runtime in vb2005 previously working code starts generating errors. For example: MessageBox.Show( "Error: " & description) now generates this error: Error 1 Operator '&' is not defined for types 'String' and 'Microsoft.SqlServer.Dts.Runtime.DtsObject'. Application.Exit() generates this error: Error 2 'Exit' is not a member of 'Microsoft.SqlServer.Dts.Runtime.Application'. How can this problem be corrected Unfortunately, that leaves me with this error: Error 1 Operator '+' is not defined for types 'String' and 'Microsoft.SqlServer.Dts.Runtime.DtsObject'. It's as tho Dts hijacks (or should I say overloads) t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Any "Keyboard.SetState"-like features in XNA? A simple question for a complex problem...

    Hi to the MSDN community! I'm currently trying to implement a simple force feedback feature in a motion sensor-controlled Pong clone written using XNA Game Studio Express, but to do so I need to pass a simulated keypress to an external application I cannot modify (GlovePIE, an input emulator who only accepts keypress events). So, I'd need a method to set an unused key's state to "pressed" (while it physically isn't)... but I can't find anything like this. Could somebody please help me Thanks in advance :) Thanks a lot, I actually want to use a wiimote in my XNA project (and - thanks to GlovePIE - I managed to do everything except the rumble feature, who needed a feedback triggered by the game itself on col ...Show All

  • Visual C# Parameter and Enum Value

    command.Parameters.Add("@Type", _ENUMValue); I have this paramter but when i call my insert function i want it to insert a ENUM value for the property that is assigned to represent this parameter in the sql querey....is there way to do this Do i need to be more clearer yes that looks ok.... Make sure also that the parameter is set for SqlDbType.Int SqlParameter theParam = new SqlParameter("@param", SqlDbType.Int); theParam.Value = (int)BusinessObjects.VendorInsurence.TypeOfInsurance.Cargo; ...Show All

  • Windows Forms WebBrowser Control

    Hi ! I am new to Framework 2.0. I have a small query. I know it is possible but I need help. I have tried every way out but not working. I want to auto click on the form/button on any website inside my application. HtmlDocument doc = webBrowser2.Document; HtmlElement element = doc.GetElementById( "Save" ); I dont know how to move from here for auto clicking of the button or auto submission of form. I am using C# language. Please help me. To "click" a button in the webbrowser you can use: webBrowser1.Document.GetElementById("Save").InvokeMember("click"); assuming the button is called "Save". ...Show All

  • Windows Forms display swf in asp.net image control

    how to display an swf file as an image in asp.net image control As Ken has mentioned,the asp.net image control does not support swf file, to display a swf file on web page, see Embedding Your SWF in a Web Page ...Show All

  • Software Development for Windows Vista WWF OwnershipTimeOut issue

    I'm facing a problem while using out of box Sql persistence service in my web application which is tightly integrated with the workflow. The scenario is :- 1. I've a 3 tier architecture 2. Workflow works parallel to other layers. 3. Web Application is hosted on IIS. 4. I'm using OOB Sql persistence Service. 5. I'm using ManualWorkflowScheduler service. In this scenario when a user persist the workflow after taking some action, and after this another user did some action from his machine. OwnershipTimeout Exception occur . In my case I have choosen the following configuration for SqlPersistence:- persistenceService = new System.Workflow.Runtime.Hosting. SqlWorkflowPersistenceService (connectionString , false, new TimeSpan(0, 0, ...Show All

  • Windows Live Developer Forums MySQL, VE API, and around 1Million places to display

    Man do i need help. i started off and got to this point and realised i was going in 2 opposite directions. i have a simple VE Map page using HTML/JS. i also have a PHP page that Queries a MySQL server and returns results. all i am looking for is how i would be able to do the following: allow a person to cruise(browse) the map in my simple page, and have 4 buttons to the side that would be toggled on/off to show 1 of 4 categories in my MySQL DB. obviously i realised with PHP it's server side and couldn't update on the fly. i am using a linux provider for this, which means no ASP.NET or any other gr8 MS jazz. the layout: MySQL-DB (name,address,type-of-place, lat, long). i currently dont have lat and long info (i'm guessing thats what everyon ...Show All

  • SQL Server Database Consistency Problem

    Hi, For last few days i am just scratching my head due to these wierd DB errors. First the General Network Error and now a new one ! database consistency problem. When i am selecting some records from database i am getting an exception which states that- A possible database consistency problem has been detected on database <db name>. DBCC CHECKDB and DBCC CHECKCATALOG should be run on database <db name>. <db name> is my database name. When i was getting the GNE, i tried searching net and found that .Net Framework 2.0 gives some specific errors instead. So i upgraded to v2.0 and this error is thrown now. I run the commands DBCC CHECKDB and DBCC CHECKCATALOG on my databases both on my machine and the s ...Show All

  • Smart Device Development Bluetooth serial Port (SPP) WinIOException during Reopen Port

    Hello! My actual project includes a bt-modul by kc-wirefree ( www.kcwirefree.com ) and pocketpc's by various manufacurers and WM2005 and net.cf 2.0 SP1. Pocket-PC's with microsoft's Bluetooth-stacks are working well, pocket-pc's with the broadcom-stack (I have also a acer n300) have the following problem: I am using spp to send/receive data from external module and if the carrier is lost or the external component is not answering (for instance power off/power on) the programm will close the connection, reopen it and test the communication again. I don’t like to use manufacturer-specific api's to guarantee the platform-undepending functionality. (And i think it is a problem to identify the manufacturer specific stacks) The reo ...Show All

  • SQL Server “AcquireConnection method call to the OLEDB Connection Manager for SQL Server failed” Error

    I have an SSIS package which takes input from Flat file and transfer the data to SQL Server using OLEDB Destination Data Flow Item. The OLEDB Connection Manager used for the destination is configured to use SQL Server Authentication for the user ‘sa’. The package works fine without enabling the configurations. But when I enable package configuration and save the configuration of the various connection managers in an XML configuration file and then run the package it gives the following error in the validation phase: [OLE DB Destination [21]] Error: The AcquireConnection method call to the connection manager "<Connection Manager Name>" failed with error code 0xC0202009. And after the validation phase is comp ...Show All

©2008 Software Development Network