DhivyaN's Q&A profile
SQL Server Odbc trace
Hi I run odbc trace , thru ODBC Adliministrator > Tracing tab. Is there a way to have the trace of sql_parm_input, sql_c_wchar, sql_varchar of sqlbindparameter For exmple : MSACCESS 698-548 ENTER SQLBindParameter HSTMT 07CD24F8 UWORD 1 SWORD 1 <SQL_PARAM_INPUT> SWORD -8 <SQL_C_WCHAR> SWORD 12 <SQL_VARCHAR> SQLULEN 36 SWORD 0 PT ...Show All
Windows Forms Error build Setup project if lage file added
I have a problem if a large Datatbasefile ins added to my Setupproject. The Size of the file 600 MB. This is the Message: Die Datei "C:\Visual Studio Projects\Navigator\Navigator\bin\DATA\Navigator_Data.MDF" konnte nicht gefunden werden 'Fur diesen Vorgang ist nicht genugend Speicher verfugbar.' (File not found, Not enough Memory) for those who dont speak german If i delete this file all works fine. The .MDF File is not at ...Show All
Windows Forms How get Bitmap From MemoryStream
i have one paroblem, when i convert MemoryStream to Bitmap it will give me an error. "invalid parameter applied", while i am passing MemoryStream object as a Parameter of Bitmap. public Image getImage (MemoryStream MemoryStream) { Image ImageWork = Image.FromStream (MemoryStream); return ImageWork; } ...Show All
SQL Server SQL Server Express with Office 2003?
Does SQL Server Express work *easily* with Office 2003 I'm especially interested in using Access 2003 & Excel 2003 with SQL Server Express. I did a search here, but found nothing. I see Oracle is now giving away their "Express" Oracle 10g; I'm weighing options... You will need to enable the TCP protocol in order to use SQL Express with Office 2003 products, and if you're trying to access th ...Show All
Visual Studio Can you defer property evaluation?
I have a catch-22. I have a property called "OutputPath" defined in my targets file. I also have an empty property called VcOtherFlags defined in a target in my targets path that allows folks to add in addtional compiler flags. Now here is the problem. If I do this: <PropertyGroup> <VcOtherFlags>-I$(OutputPath)</VcOtherFlags> </PropertyGroup> <Import Project="..\foo.targets"/& ...Show All
Visual C# Which is better?
i'm currently developing a Multiple Choice Question(MCQ) application in C#, where student can practise their lesson & participate in an test exam. The test exam will be generated page by page. In each page there will be 2 questions(read from database); there may be more than 100 questions. So tell me which one is better: 1) predefined form for each two questions( it will take 50 forms) 2) forms & control will be generate at runtim ...Show All
Software Development for Windows Vista Problem migrating to WWF 2.0 Beta
Hi!, I am not able to run WWF 2.0 Beta with VS2005 Professional. My machine has WinXP Professional SP2. At the startup it throws the error of "Package Load failure" for DesignerPackage that comes with WWF. And when i try to make and compile a new Sequential Workflow Console application project it gives me this error: The "System.Workflow.ComponentModel.Compiler.CompileWorkflowTask" task could not be loaded from the assembly S ...Show All
Visual Studio Express Editions BalloonTipText on NotifyIcon1 Hover over?
I've been looking at how to use BalloonTipText, and I found this small section of code: NotifyIcon1.BalloonTipTitle = "Balloon Tip Title" NotifyIcon1.BalloonTipText = "Balloon Tip Text." NotifyIcon1.BalloonTipIcon = ToolTipIcon.Error That isn't working for me though, in the test app I made to try it out. I put it in the NotifyIcon1_Click event and nothing showed up. I'd really like to be able to display someth ...Show All
Visual Studio 2008 (Pre-release) ListView with 35000 items
HI All, I tried using the Listview with ObservableCollection as the datasource containing 35000 items. Deletion in Observable collection is of O(n) , means if i have to delete two items present at the end of list, then Observable collection searches 35000+ 34999 times. It such an expensive deletion. Could anybody suggest better way to diplay data in listview when there many items. more than 35000. Th ...Show All
Visual Studio Express Editions Visual C++ 2005 Beta 2 breaks when trying to view project options
In Visual C++ 2005 Express Beta 2 when I goto project options, I get a message box that says: "Failed to create Frameworks PropertyGrid component. Please verify that the Common Language Runtime and .NET frameworks are properly installed." I am running Windows XP Pro with SP2. I've already tried installing VC++E 2005 B2 twice. I ran the cleanup tool with Beta 2 already installed and it seems to work fine now. ...Show All
Windows Forms load data only if needed...
hi to everybody! i would like to have a custom datagrid, that only loads the first 10 records of a table. when the user scrolls down on the bottom of all avaliable records a function should then load the next 10 records. i need this 'cause i&nb ...Show All
Visual Studio 2008 (Pre-release) How can I determine the remote IP in WCF Service? (1)
(Repost from 2 months ago http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=335969&SiteID=1 ) -- maybe someone has some info now :) I understand that the title is fundamentally flawed -- the binding used might not have the concept of an IP. But, assuming I'm using HTTP or TCP bindings, how can I access the remote IP and similar data I looked into OperationContext, and it seemed to have a lot of interesting things, but I couldn't figur ...Show All
Visual C# Dynamically moving controls
I have six panels, each panel contains a textbox and its label. Each panel has a checkbox associated with it on the form, but outside of its respective panel. I only want the panels whos checkboxes are checked to be visible. If another checkbox is checked, I want that respective panel to be displayed directly under the last panel displayed. Once that checkbox is unchecked, I want the panel to disapear, and all the other panels that come after, t ...Show All
SQL Server Is SSIS slower than DTS????!!!!!!
I am new to SSIS and probably doing some mistake while transferring data from oracle source to oracle destination. Please guide me.. In our project we need to transfer nearly 80 GB data from old system (Oracle 9i) to new system (Oracle 10 G Release 2). To do this exercise we are testing and comparing performance and cost effectiveness between different tools like SSIS, DTS and SQL * Loader (oracle built in tool). ...Show All
Visual Studio Class Diagrams
I have a solution with many projects, I'd like to create a class diagram that represents ALL of my classes contained in the solution, not just one per project. I would also like to have the feature that keeps the code and the diagram in sync. Is there a way to do this with the built in diagram Thanks Wayne Wayne The class designer is only valid in a project. It is not designed to be a solution level o ...Show All
