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

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

TiwariPradeep

Member List

Evan Mulawski
pvphuc
HammerManinMD
Austink2004
KitGreen
XNA Rockstar
allison_h
Fwank79
Lars Breiter
GAtkins
RyanB88
stswordman
KedarP
ClydeCoulter
xRuntime
apunater
GrandpaB
Haashole
DellS
vgvKarthik
Only Title

TiwariPradeep's Q&A profile

  • Gadgets This is not a valid gadget package!! grr!

    hey, So i finished creating my gadget, i use winzip to zip it up to mygadget.gadget and then double click to install... However it just says: This is not a valid gadget package The gadget works if i move the folder to the windows gadget directory! Does anyone know how to fix this problem Regards I use 7-Zip , but I don't think that's the problem. Head over to AeroXP and post your Gadget up on the Development and Programming forum, I'll take a look for you both. ...Show All

  • Architecture Migration of Websphere (any other EAI Application) to BizTalk

    How to Migrate an EAI applcation, from Webshere to Biztalk 2006 1) Strategy 2) BizTalk Technology/Component Mappings with source EAI Tools. 3) Automation/Manual Migration ratio. 3) Benchmarking etc.... Thanks for your reply, What you are saying is right. This is a kind of 100% migration from Non-Microsoft to Microsoft technologies. Only IBM MQSeries will be used for messaging. Because it has more scalability/availability as compare to MSMQ. Migration Approach/Road map ===================== STEP 1: we will have first find the complete list of artifacts in Websphere. STEP 2: we will have check the artifacts which can be migrated directly, like those which are based on industry standards as you said, like XML Schemas, Or ...Show All

  • Windows Forms Additional Infos: PropertyGrid: How to catch an exception?

    I use a PropertyGrid to show a business object in my application. The business object throws exceptions if the user tries to enter an invalid string inside the PropertyGrid. The PropertyGrid shows two different behaviors in this case: If a default TypeConverter is used the PropertyGrid shows an builtin error message dialog. If a custom TypeConverter is used the PropertyGrid doesn't handle the exception. This happens only in Debug mode. How can I catch these exceptions and suppress the builtin error message dialog of the PropertyGrid The exception thrown by the PropertyGrid looks like this: System.Exception was unhandled by user code Message= "r is not a valid value for Double.&qu ...Show All

  • Visual Studio 2008 (Pre-release) How to: Implement aggregates with GridView and Grouping

    I'm trying to create a sort of Outline Grid. Where you can group and the Grouped item contains the sum. Eventually I need to include a Min and Max for dates. +/-Group1 20 50 item1 10 40 item2 10 10 I was thinking that extending the CollectionView and CollectionViewGroup might work, but before traveling down that long road I figure I'd see if anyone has had experience with this sort of thing. The goal is so that when you're creating the GroupItem style, you'll be able to reference ItemSum, just like ItemCount that currently exists. There is still an issue as to what column you need to sum, which I haven't really thought out yet. The other issue is that I'll need the group data to refresh when the item data changes. ...Show All

  • Visual Studio 2008 (Pre-release) How to make a WCF Service "live" until user shutsdown the service.

    I have a WCF service which is loaded in a Win32 service through COM interop. This WCF service starts when the Win32 service starts and should only die when the Win32 service is shutdown. WCF Service is defined as singelton and it has to serve all the clients using the same instance. [ Serializable ] [ ServiceContract (CallbackContract = typeof ( IMy Service Event ))] public interface IMy Service {} ---------------------------------------------------------------------------------------------------------------------------------------------------------- [ Serializable ] [ ServiceBehavior (ConcurrencyMode = ConcurrencyMode .Multiple,InstanceContextMode = InstanceContextMode .Single)] public class My Se ...Show All

  • Visual C++ typecasting a pointer?

    Hello everyone, I'm using VC++ along with a 3rd party library to capture and display images from a CCD video camera. I'd like to aquire the grayscale values in order to do some image processing but I'm a little uncertain as to the correct way. The images are either 8, 10 or 16-bit grayscale. The images are loaded into a buffer as follows: uInt8* imageBuffer; imageBuffer = (uInt8*)malloc(ImageWidth * ImageHeight * BytesPerPixel * (sizeof(uInt8)); At this point I call the grab function from the 3rd party library, passing the above pointer as one of the arguments. My question is how do I access the values that are stored in the buffer Let's assume I know a priori that the image is 10 bit...do I typecast the pointer as 16-bit and get the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D VERY slow on the XBOX

    Im having a hard problem getting good FPS rates on the XBOX, everything turns around and gets alot slower. Does anyone have a solution, or reason for this That profile definately looks like garbage collection is the problem. It is collecting once per second, and taking 38 milliseconds to do so: in a game running at 60 frames per second this will cause a hitch of two whole frames. There are basically two ways of improving GC performance: either reduce the amount of garbage you create so the GC will happen less often (it will still hitch when it does happen, but if you can get this rare enough, that might not be a problem), or reduce the amount of live objects so the GC will run faster when it does ...Show All

  • Visual Basic Problem with Excel in Web Service to print Excel File

    Hi. I create a web service in Visual Basic, the project load an .xls (Excel file) file and print this file. The problem is when the web service are installed in the IIS, it not works (problems printing in the function WorkBokk.PrintOut() ), but wen i run this in debug mode its work perfectly. Please help me, maybe the error is in some configuration of the com object. Code: Dim app As New Excel.Application appFolder = My.Application.Info.DirectoryPath Dim wb As Excel.Workbook app.DisplayAlerts = False wb = app.Workbooks.Open(FileName) wb.PrintOut() wb.Close() app.Workbooks.Close() app.Quit() Thanks No error message are displayed. Only the browser (when i testing de web service from IIS) open the new window when i call my meth ...Show All

  • Windows Forms Drag and Drop Label containing text into another panel

    Hi all, I was wondering if it is possible to do the following: I have a toolbar-like panel on the left of my form, on the right side of my form I have a larger panel containing nothing. In the toolbar are panels containing labels with text. I want to be able to drag such a panel to the panel on the right side and drop it there. I want it to be dropped on the exact location where I released the mouse button, that exact x-y position. Is this at all possible Any help would be appreciated. Hi again, I am a few steps further with the application. The drag and drop part works like a charm. The problem I have now is the following. Pnltarget, the panel where all the DnDcomponents are dropp ...Show All

  • Visual Basic Migrating DAO connection that uses a password with non-printable characters in it

    I'm able to open a password protected MS Access 97 db with the code below: DAO.Database. OpenDatabase(sPath, False, False, ";pwd=" & sDBPwd) where sDBPwd has embedded control characters in it. Specifically sDBPwd uses vbCRLF as part of it's string. Can anyone tell me how to embed control characters in a password string in ADO.NET Hi, Sorry I could not find an answer for this. Hopefully some one else can help. You can also ask this question on Data Access forum at http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=45&SiteID=1 . Best regards, ...Show All

  • SQL Server protected sql database file

    how can I create sql database file and it cann't be use or open (open mean to design view or structure) . my case is: I have Acces db and this db has its own username and password, no body can read, write or view the designing, so it is useless. But there are somesoftware able to break and hacking db access. I think sql database file is more secure, so how can I do it Hi, sp_changedbowner HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System how do switch to Visual Studio Team Edition for Developers?

    Hello, I installed VS 2005. Once I launched VS, it asked what IDE I would like to run with, I chose VS 2005 C#, NOT realizing that Developer Team Edtion was a selection. How can I make this VS 200 Developer Team Edtion my default IDE Regards, Spandon From within Visual Studio, access the Tools menu.  Select Import and Export Setttings... and then Reset all settings .  It is your call as to whether you'd like to back up the current settings; I usually don't.  Then select your environment (e.g., General Development Settings) and let'er rip. That assumes that you actually installed Team Edition for (Developers, Testers, Architects, Database Professionals) or Team Suite.  ...Show All

  • Smart Device Development Invoking Beep on Pocket PC using C#

    Hi, Am developing an application where i have to alert a Beep sound in a Intermec 700 series pocket pc built on Windows mobile 2003 OS. However i get a missing method exception at runtime saying "Can't find PInvoke Dll kernel32.dll". I tried using the playsound function as well. However i get some other dll cannot be invoked at runtime. I am pasting the code sample here Beep function [ DllImport ( "Kernel32.dll" )] [ return : MarshalAs ( UnmanagedType .Bool)] public static extern Boolean Beep( UInt32 frequency, UInt32 duration); Beep(750,300) PlaySound function [DllImport("winmm.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)] ...Show All

  • Visual Basic Smtp Email Question

    I was just curious if anybody knows how to set the username and password on an account in order for the smtp client to be able to send an email... Thanks All... Yes, I believe so. I access my gmail account already via Outlook Express. I'm trying to do this via my own application however. But, you 'd think if I can access my gmail account through Outlook Express, I should be able to access it in some other application. ...Show All

  • SQL Server SQL Express compatibility mode

    I currently use MSDE and now I need to upgrade because we moved to 2005. The problem for me is teh compatibility mode. I need to change it to 80 (2000). I also need to do it via command line because we have a base command line install for users. We use it to attach databases and view information. Is there a way to install SQL Express with a default mode of 80 (SQL 2000). THanks hi, tpeugh wrote: I currently use MSDE and now I need to upgrade because we moved to 2005. The problem for me is teh compatibility mode. I need to change it to 80 (2000). as Arnie already pointed out, databases "upgraded" to SQLExpress\SQL Server 2005 version are not directly upd ...Show All

©2008 Software Development Network