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

Software Development Network >> Andre Odendaal's Q&A profile

Andre Odendaal

Member List

JBeardon
homerun1
Ruhsert
Cologne Claret
Jason-Massey
SkyBlade!
Jiffy
GuyFawkes
Olivier Dagenais
mustangchik83
Cocktail
Philippe31
CSI Barber
Balwant Patel
Leather
T. J. Bussler
Jim Vinsel
prashanthmscis1227
guy691us
ToolmakerSteve
Only Title

Andre Odendaal's Q&A profile

  • Visual FoxPro How to save whole row in the grid to a table

    I am working with around 4 rows of data in the grid. When user input 4 rows of datas in grid and then press the save button, I want to save all the 4 rows in a dbf table. However, I can only insert the last (active) row of data to the table using the insert SQL statement. I wonder if I need to move the pointer of the grid and then use the insert statement again , but I can't find any function or method that can do so. Please kindly help. ...Show All

  • Visual Studio 2008 (Pre-release) Differences in syntax support between LINQ and DLINQ

    With standard LINQ: Given: Func<Customer, bool > IsFromLondon = c => c.City == "London"; Customer[] customers = GetCustomers();   We can get customers from London either by calling: var fromLondon = customers.Where(IsFromLondon);   or the simple syntax: var fromLondon =   from c in customers   where IsFromLondon(c)   However with DLINQ: Given: Expression<Func<Customer, bool >> ...Show All

  • SQL Server subreport parameters not pulling data right

    I have a main report pulling two Benefit Plan IDs (ID #1 and #2). I have a subreport that also pulls the same Benefit Plan IDs. I need it to display like this: Main Report: Benefit Plan ID 1 SubReport: Benefit Plan ID 1 Main Report: Benefit Plan ID 2 SubReport: Benefit Plan ID 2 BUT, it is showing both Benefit Plan IDs in the subreport for each ID in the main report. It is displaying the results like this: Main Report: Benefit ...Show All

  • Visual C# Validation expression for a RegularExpressionValidator!

    Hi, Can someone give me the validation expression for a RegularExpressionValidator in asp.net. i need two  validation expression.The rule for the first one is as follows.It should allow the following: a-z or A-Z 0-9 and underscore (_) Also, the underscore should not be the first or the last character. Rule for second validation expression is: only numbers 0-9 and it should be four digits Thanks & Regards, Frenz ...Show All

  • Visual C# Are strings any easier in the new C#?

    I stopped using C# about a year ago. I hated the complexity of using strings. Gone were the days of MyString = "Hello"; I had to now make an object. String manipulation, which was once easy using MID, RTRIM, REPLACE, etc., now is tedious. Anyway, I was wondering if the newest version of C# has made it any easier Um, you couldnt do - string s = "Hello"; what was so hard a ...Show All

  • .NET Development The Undo operation encountered a context that is different...

    This is not specific enough information for me to know what I did wrong and where. Does anyone have any insight to this It appears to have something to do with asynchronous socket I/O completion. System.Transactions Critical: 0 : <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Critical"> <TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Re ...Show All

  • Audio and Video Development Advanced Content Playback on HD-A1

    Hi All, I am having trouble getting an advanced content application to play once burned on a DVD-R and inserted into the Toshiba HD-A1 HD DVD player. Video and audio play fine using this method, but once the advanced content object is reached the player stops playback and gives an error. Does anyone have any advice on this We have tried the samples posted here and we get the same results. Thanks. We are using Sonic Scenarist ACA to ...Show All

  • Visual Basic Using VB.NET to run External Applications

    Is there anyway to use Visual Basic 2005 Express to run external files For example, pressing a button would open Notepad. I am trying to use the process command to run an external DOS-based program and then issue commands to it.  Is there any easy way to reroute the commands to the program once it is running     Roran1981 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. marking questions as answerd

    If possible, I'd prefer to mark my questions as answered myself. I now had it a few times that my question was marked as answered by somebody, even if I had not read the answer! When I read it I can see if everything is clear to me, then I can mark it as answered. Thanks! Best regards Nico Thanks! I understand your points. And of course you are right when you say I can unmark "answered" questio ...Show All

  • .NET Development ERROR [07002] [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.

    Hi all, I had created a simple log in screen with Employee ID and Password. But once I execute the code, it will give me an error as shown above at the ExecuteReader section. My code is as follow . Can anyone please help private void button1_Click( object sender, EventArgs e) { string test = "" ; bool boolReturnValue = false ; string UserName=txtEmpID.Text; string Password=mtxtPwd.Text; ...Show All

  • SQL Server RUNNIG A JOB???

    I HAVE A PROBLEM,, I``ve just deployed a package into my server..it runs without problems from my SSIS.. but when i set a job with the sql agent and the package to it,. the job just fails .. why any solution please somebody help me!!! yes, this question comes up a lot, I apologize for the confusion. We are working on a KB article to help explain issues around this. It should be ready within a few days. The short asnwer is that when y ...Show All

  • Visual Studio Team System Team Foundation Version Control Command Line capabilities

    Can TFVC have command line capabilities If so, where can I find a TFVC command line listing and guide TFVC command line reference ...Show All

  • Windows Forms find a datarow with added rowstate to bind from another form

    i've 3 datatables: the 1st contains an identity column, the 2nd has a foreign key to the 1st, and the 3nd has a foreigh key to the 2nd i'll use 2 forms (main form/popup form), and want to add this tables' values in the main form  ...Show All

  • .NET Development .NET framework adoption rate?

    We are trying to decide on whether to maintain 1.1 compatibility for our software or use some of the new features in 2.0. Thus we need to know how widely .NET 1.1 has been adopted by end users. If few machines have 1.1 installed we might as well use 2.0 since most users will have to download the redistributable anyway. But if many 2000/XP machines already have .NET 1.1 installed it would make sense to rather stay compatible with 1.1, since our a ...Show All

  • Visual C# OdbcCommand.ExecuteNonQuery returns -1. Help!

    Hi everybody,     I don't where to asked this question in this forum. How do you insert to a column of a table with a blob or binary datatype if there is one, from a byte() datatype What is wrong How can I fixed this I need help. Thanks. Code: string sqlText = "Insert table1(id, dataByte) values('" + id + "'," + byteData + ")"; OdbcCommand cmd = new OdbcCommand(sqlText, odConn); //opening connection here int iRes = cmd.Execut ...Show All

©2008 Software Development Network

powered by phorum