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

Software Development Network >> da Vinci's Q&A profile

da Vinci

Member List

gafferuk
Lehmberg
Bret Grinslade
Damien fromOZ
tchen777
MikeBlig
bschaldon
matthew lyden
RajLakamana
abssoft2000
malous1
Marco Minerva
Vedratna
MattWoberts
Wildert
87jerome
THE RAZI
HelplesslyInDistress
suchi banerjee
GoDaddy
Only Title

da Vinci's Q&A profile

  • Windows Forms Override how GridView gets data from DataRow

    I have an app that uses several GridViews, and I was recently asked to encrypt only a few columns in my database. I already have custom classes that extend the DataRow, is there a method or version of the [] accessor I can override that is called by the GridView I need to check if the column being accessed is one of the encrypted ones or not. Thanks. Moving from .NET Framework Data Access and Storage to Windows Forms Data Controls and Databinding . ...Show All

  • Smart Device Development Read and write XML files

    Hi, I want to build a software for pc pocket on Windows Mobile 5.0 using VS 2005. I create solutions and add one xml file item into the project, called "data.xml". My application when loading will load xml file like this: myData = new XMLDocument() myData.load(" \\data.xml "); There are 3 things: 1. Is this the right way to load xml data Any suggestion for a good way to do it 2. Is data.xml automatically deployed together with the application or do I need to do any step to include it when deploy on to the emulater 3. I got this error so far: Could not find file " \\data.xml " Thanks Bao Nguyen Hi, I am developing a smart device app. i am also having the same issue. Can u ...Show All

  • Software Development for Windows Vista Urgent: Scheduling service in Sharepoint workflows

    Hi, Hosting a workflow in sharepoint yields in major scheduling service issue. The manual scheduler service can't be controled and thus the delay activity in turn isn't feasible. A possible walkaround was to create a task with a duedate. A windows service will run on timely basis and checks all the tasks with expiry date and updates them. In theory, updating a task will cause the workflow to trigger the OnTaskChanged method, but in practise, this wasn't the result. When this task is updated, the workflow isn't affected, whereas when manually updating the task an error occurs "event isn't received". The reason is due to the fact that the updated workflow in the windows service doesn't run the scheduler and as aresult, the workf ...Show All

  • SQL Server Bulk Insert vs. Data Flow Task (different row results using flat file source)

    I'm importing a large csv file two different ways - one with Bulk Import Task and the other way with the Data Flow Task (flat file source -> OLE DB destination). With the Bulk Import Task I'm putting all the csv rows in one column. With the Data Flow Task I'm mapping each csv value to it's own column in the SQL table. I used two different flat file sources and got the following: Flat file 1: Bulk Import Task = 12,649,499 rows; Data Flow Task = 4,215,817 rows Flat file 2: Bulk Import Task = 3,403,254 rows; Data Flow Task = 1,134,359 rows Anyone have any guess as to why this is happening Yeah, thanks for the reply. I've checked the preview and it looks fine. I've also tracked down some of the skipped ...Show All

  • Visual C++ How to using Console::Wirte in Form

    Hi, I create a VC++ windows form application by using VC++ .Net2003, in the code, I type Console::Write("Hello World"); but i unable to see the Console appear during executing. How to display console in Windows Form Check this thread ... ...Show All

  • SQL Server Opportunity to provide feedback on performance improvements in SQL Server...

    Please consider giving your feedback or suggestions on the top 5 OLTP and data warehouse performance improvments you would like to see in the next version of SQL Server. Use the links below to provide your comments. http://blogs.msdn.com/sqltips/archive/2006/09/20/TOP_5_OLTP_PERF_IMP_NEXT_SQL.aspx http://blogs.msdn.com/sqltips/archive/2006/09/20/TOP_5_DW_PERF_IMP_NEXT_SQL.aspx Thanks Any thought on 1. Reverse Key, Functional based and Bit map indexes 2. UPSERT Statement (Update and insert) 3. Regular expressions in SQL Server 4. Row level trigger (due since first version) Thanks Bushan. ...Show All

  • SQL Server Programmatic export to Excel file

    I would like to call reporting services p rogrammatically and save the report to disk in Excel format. I do this now via calls to Crystal Reports from VB .Net. Is there anyway to do this with Reporting Services I still would be using VB .Net. Yes, you can access a report server from another application using the web service. Here's a pointer to using the web service: http://msdn2.microsoft.com/en-us/library/ms154699.aspx ...Show All

  • Visual Studio Express Editions how can i select startup to user control at start up

    I am new to programing and would like to know how to do the following. I have multiple use controls and i would like to select the control to show at start up from a combobox list. i would like to save the selected control to a usersetting so it will start up when the aplication is restarted. Thanks Thanks ReneeC. I will look into ' TypeOf ' 's. (Just because I'm that TypeOf Guy Always willing to improve my code.) ...Show All

  • SQL Server Key Maintenance and Stored Procedures

    Basically I would like to ask whether parameters can be used to pass the value of the 'symmetric key id', 'certificate' and optionally 'password' to a stored procedure that uses encryption functions. The reason this is appealing is that when encryption keys etc change over time (we have a requirement to decrypt data, destroy and create new keys, then encrypt data every time we lose a staff - don't ask), as we would be passing the value of keys, passwords and certificates as parameters to a standard stored procedure. Hardcoded Example (Working) USE PSS GO CREATE PROC insert_payer_ba -- define parameters @param_rec_id NVARCHAR ( MAX ), @param_bsb NVARCHAR ( MAX ), @param_account NVARCHAR ( MAX ), ...Show All

  • Smart Device Development Where is the Active Sync device name located?

    Posted on: 02/22/2007 08:15:24 Not sure if this is the correct place to post but I didn't know where else to ask this question. Unable to program for my device with VS 2005 unless the OS is upgraded. I've had problems with my Viewsonic V37 Pocket PC. I had obtained an OS upgrade CD via ebay. I attempted to upgrade the OS from 2002 to 2003 and it didn't work - for some reason the USB port was unable to detect the device and I had to reset it several times, once for each attempt. I'm still back to the original OS. With each new attempt, I had to rename the device in my computer by a new name as the previous name was still there. How can the old names be removed Where is the device name association located ...Show All

  • Software Development for Windows Vista Workflow Persistence, Idle Workflows and External Events

    I've been doing some thinking about how the default workflow persistence services work and how it affects those of us writing complex event-activities (i.e. IEventActivity implementations), and I was curious about something. I was reading Paul Andrew's comment on how the default workflow persistence service will only load persisted workflows that are "ready to run", and how it worked with locking when multiple runtime instances across a farm were using the same persistence database (all very informative stuff). However, what I'm not quite clear on yet is what the "readiness to run" of a persisted workflow is determined. Could someone expand on this a little bit Here's what I'm trying to find out: For example, if an act ...Show All

  • Windows Forms Why does the ClickOnce 'Install' button generate an xml page instead of starting download?

    Hello, I just published my application for ClickOnce deployment to my web site. When I click on the Install button on the publish\publish.htm page on my website, the browser returns the contents of an xml file and does not start the download. Does anyone know what might be causing this Any help or suggestions would be greatly appreciated. Thanks! Jason I also still have the same problems and have not been able to figure out what the problem exactly is, indeed IE7 works great but IE6 doesn't i hope somone can come up with a solution soon. ...Show All

  • Audio and Video Development UserOps again...

    Has anyone successfully prevented default handlers for e.g. skip next, pause, etc My programming doesn't seem to keep the default handlers from being called: var VK_SKIP_NEXT = 0xC7, VK_SKIP_PREV = 0xC8; function handleEvent(evt) { switch (evt.key) { case VK_SKIP_NEXT, VK_SKIP_PREV: stop Event (evt); } } function stopEvent(evt) { evt.stopPropagation(); evt.preventDefault(); } application.addEventListener("controller_key_up", stopEvent, false); application.addEventListener("controller_key_down", handleEvent, false); I tried this just now (using Peter's fix) and I am getting errors from the HD-XA1 but the Sonic Simulator is running it fine...Peter...if it's ...Show All

  • Smart Device Development AVRCP

    Any help in finding documentation on how to use AVRCP in C# CF 2 appreciated :) Microsoft BT stack APIs are described here  (WM 5.0) and here  (CE 6). I’m not sure if this profile is even supported though and if it is it might be up to OEM to support it or not. If you happen to have 3 rd party BT stack you’d need to contact that 3 rd party to obtain documentation and/or SDK. Link #3 points to one of these manufactures. ...Show All

  • Smart Device Development Debugging WM 2003 SP with VS2005

    Is it possible to debug a WM2003 SP using VS 2005 All my attempts on several devices on several different desktops yield the same result: Access Denied. I can: 1. debug WM2005 SPs with VS2005. 2. run on a WM 2003 emulator. 3. run un-attached to the debugger on a WM2003 phone. but i cant debug. I've heard of several people having this same problem too. I've heard rumors that it is possible though and it must be. What could my problem be Thank you for any advice. This is something related to configuring security certificates on device. See if following white paper helps http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/wmsecurity.asp This paper contains a section for Debug ...Show All

©2008 Software Development Network