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

Software Development Network >> -Roel-'s Q&A profile

-Roel-

Member List

Arvind Surana
Anth
Biltong
Davin Eastley
AJCodeFixer
SDerix
Norge
JohnFL
AtomZ .be
Mike Hanson
Tyrion
wstrnsky99
cYruZ
idoOv
_Bandit_
psylencio
DustinBreese
Djmegamixes
Glen - Mobiform
Mike Waldron
Only Title

-Roel-'s Q&A profile

  • Windows Forms Maximized Screen Similar to Pinnacle Studio

    Hey, I don't know how many have used Pinnacle Studio before, but whenever the application is maximized, the the forms don't really maximize (in the sense that most people think of). Instead, a black scrren fills in the area surrounding the main form. It is probably a form of cheating, by not having to make the software resolution independent. If someone knows how that is being done, please let me know. That trick would really come in hand ...Show All

  • SQL Server How to view sample transformed data before loading it into the table

    Before loading the data into the table, I want to preview it. Like how the transformed data looks like. What is the option for that. I can view the source data onlt, using the preview button. Same thing I want to do after doing certain transformations on the source data. How are you running the package You need to run it from SSIS Designer (i.e. BIDS) in order to see the Data Viewer. -Jamie ...Show All

  • .NET Development Problem with TransactionScope and Swedish OS

    Hello. We are trying to run a piece of code that looks like this: DBManager target = Factory_CreateDBManager(); using ( TransactionScope scope = new TransactionScope ()) { CompanyDataSet . CompanyRow company = target.GetCompany(UnitTest. Constants .CompanyId); company.Com_Name = name; target.UpdateCompany(company, lastAlteredBy); } When we run it on a English WinXP there is no problem. When we run it on a Sw ...Show All

  • Visual Studio 2008 (Pre-release) extensibility

    I saw in the channel9 video that Linq is able to query anything the implements ienumerable, and that by some means it's able to query sql, but I'm curious how extensible this is   is the sql support hard coded into the compiler or is there some extensibillity mechanism that would allow third party's to create 'providers' that can generate queries and marshal the results. Eric Meijer and myself both worked on ...Show All

  • SQL Server SqlServer2005 can support merge replication with SqlCe2.0??

    Hi guys, Correct me if I'm wrong. That's wat I was doing.. Try to perform a merge replication between the 2. But the following errors are wat I've got during the syncronization: Error Code: 80004005 Message : Run Minor Err.: 28557 Source : Microsoft SQL Server 2000 Windows CE Edition Err. Par. : ssce:database;password=mypassword;data source=Program Files\helloWorld\database.sdf; Error Code: 80040E14 Message : The OLE DB Execute method failed. ...Show All

  • Software Development for Windows Vista How does one design a loop back to an upstream activity?

    I tried to design a simple workflow but I got stuck. Assume the following sequential workflow of 4 activities: A01->A02->A03->A04 Now assume that there is a conditional evaluation after A03, if it is false, a loop back should occur to A01, if it is true, the workflow proceeds to A04. How does one design this in the WF designer I can't find anyway to connect back to an upstream activity. Roel Paul, ...Show All

  • Windows Forms PocketVision - Date problems

    Hi folks, first up - EXCELLENT app - nice, so far, anyway. Especially the PPC version. I've been trying to get it to work, and it appears that there is a problem passing dates (ie, when inserting tasks during a sync), as SQL CE doesn't lik ...Show All

  • Visual C# How to declare variables inside DataTable Queries like SQL

    Hi, I would like to ask this question as part of the example. How can we use variables in SQL Query in a DataTable/DataSet - that are defined only while querying. Let's look at the following simple SQL Query where I am declaring "@var" only while querying. DECLARE @var varchar(15) BEGIN SET @var = 'monday' END SELECT * FROM Table_Name WHERE _col_Name = @var This example is only a simple representation. Actual implementation is much different bu ...Show All

  • Visual Studio Memory, Disassembly view windows disappeared

    I am using Visual Studio 2005 Professional Edition on XP with SP2. I've used in past Disassembly & Memory view windows from the Debug-Windows menu option. Now these have disappeared. Under Tools-Options-Debugging-General: Enable Address-level is checked. I tried restoring settings in the Import Export Settings option, but this did not fix the problem. Any help would be greatly appreciated. ...Show All

  • Visual FoxPro Converter error.

    When I open an older 2.6 Dos report in vfp9, I am getting intermitent errors by the converter. Giving it a few tries usually ends up working. Here is the error log: Fatal Error in Converter: Error: Cyclic relation. Error Number: 44 Method: allothers Offending Code: ... File being processed: c:\devel\krcb\cpo1.frx I am getting the same error when I try to do this with VFP6. Anyone got this error Thanks. ...Show All

  • Visual Studio Team System Generic Test does not seem to deploy the exe

    I seem to be missing something simple here, I guess. The help states that the exe being run by the generic test will be copied to the deployment directory. This is not happening. Even if I add it to the "additional files" list, in effect forcing it to be copied, it is not run from this directory. This matters a great deal to me because I am trying to use a Generic Test to run my GUI to produce Code Coverage results. So I need the test ...Show All

  • Smart Device Development ListView.SelectedIndices property - what should it return?

    Hello, I have the following code: if (lvContacts.SelectedIndices.Count <= 0) {   MessageBox.Show("Please select some contacts to send email to!");   return ; }   I see the error message even if there are items in the listview that are selected, because SelectedIndices is always null. Instead, I have to iterate over the ListView.Items array and test the Checked flag. Am I doing something wrong thanks ravi ...Show All

  • Visual C++ Right-click on a ListCtrl

    Hi, I have a ListCtrl (report view) in the main view in my application, and I want to show a popup menu when I right click on the ListCtrl. But it doesn't work, the popup menu only shows when I right click outside the ListCtrl. I want it to appear only when I right click on the ListCtrl. In the CMyView class I have this code: void CMyView::OnRButtonDown(UINT nFlags, CPoint point) { CView::OnRButtonDown(nFlags, point); CMenu menu; VERI ...Show All

  • .NET Development CAS: Set zone security without wizard

    The commandline tool caspol.exe is what you should use, check MSDN for commandline options.   Willy.   <Daniel Rieck@discussions.microsoft.com > wrote in message news:a55674ed-3423-4dd3-9d69-d11ccf9d1c33@discussions.microsoft.com ... I have installed the Framework 2.0 Beta 2 on all of our workstations, but the ".NET 2.0 Configuration" wizard in Control Panel - Administration is ...Show All

  • Windows Forms Z order with MDI

    Ive got a MDI parent with numerous MDI children, wondering if I can modify the Z order programmatically of the MDI children. I have 2 or 3 different MDI child windows. The user can Tile/Cascade/Maximize these but whenever I open or close a window, or return to Tiled mode from another state, I automatically re-order the windows to ensure that a specific one is at the top, and (if it exists) a specific on ...Show All

©2008 Software Development Network

powered by phorum