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

Software Development Network >> Jason W. Matthews's Q&A profile

Jason W. Matthews

Member List

Chris Lively
kevow
Sweeps78
xyligun
Mark Norgate
Hadrienlc
kp6452
Andrew Buyan
R2 DJ
David Parreira
Mathew1972
Epoch
LukasO
hrubesh
Nick Hart
Jamie Thomson
Haiping
sandyJ
François PIETTE
FatalRanger
Only Title

Jason W. Matthews's Q&A profile

  • Smart Device Development How to bound DataGrid to datatable/dataset and create ComboBox Grid colums

    I have a requirement to add, edit, and delete data displayed on datagrid in pocket pc application. But, I do not see the dataGrid allowadd, edit, delete properties (like win app). it seems those propertiess will not be supported in pocket pc application, not sure . How can I bound dataset to datagrid how can I replicate changes to dataset, made from datagrid Is there any round about way to achieve this I would also need to set some columns as combox columns. Please suggest any one. Thanks, You would also need .Net Compact Framework V2 SP1 installed" - do you have it installed no, I thought CF V2 is part of vs.net 2005 installation. Please make sure to rebuild the solution before browsing ...Show All

  • SQL Server ROLLBACK TRANSACTION

    Hi everyone, In the following T-SQL code snippet,when I attempt to insert more than one record I encounter an error because of the following trigger but I have some doubts about the performation of ROLLBACK TRANSACTION in here. So there is only one transaction occured in the specified table that contain both trigger and the specified table however I supposed that when we call ROLLBACK TRANSACTION, the transaction is aborted. But the code run the Raiserror statement which is located in after the ROLLBACK TRANSACTION statement. So why do this code( Raiserror) is run Should not it be terminated because of the ROLLBACK TRANSACTION statement ALTER TRIGGER kimlikNo_Degistir ON Bilgi FOR INSERT AS IF(SELECT COUNT(*) FROM Inserted) > 1 BEGIN ...Show All

  • Visual Studio Express Editions C#.net 2005 application with MS ACCESS db?

    hi, I am trying to build a C# win form application that uses MS ACCESS database, I have a login screen, i want to compare the input username and password with the actual username and password stored in ACCESS db, and let user login when they match. I can do this in c#.net2003, but no idea how to do it in 2005, plz help thx ahmedilyas, i did it with these code: string un = txtUsername.Text; string pw = txtPassword.Text; OleDbCommand loginCommand = new OleDbCommand( "SELECT staff_id FROM staff WHERE hpm_name = '" + un + "' AND hpm_pw = '" + pw + "'" ); loginCommand.Connection = new OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\\HPM.mdb" ) ...Show All

  • Windows Search Technologies Do I need to create a new store?

    I'm working on an app that stores files in "docs & settings\...\app data" in a profile. I want to add search functionality to my app. I've added the path to the indexable paths in WDS (2.6.5) and the docs I'm interested in get indexed, but I don't really want the to be returned normally by desktop search so I'm not happy with that approach. I thought I may settle for using 'in:myfolder mykeyword' but as far as I can tell I cannot use a full path for 'in' and it doesn't search recursive subfolders (is that right ). so I'm thinking I'll have to create a store so I can do something like "WindowsSearch.exe /url search:store=myapp mykeyword". If that seems to be the thing to do, then I need to create a pro ...Show All

  • Visual Studio Team System Setup cannot access Reporting Server

    Hi there, i'm trying to install the Team Foundation Server. When setup asked me to enter a user for the Report Server. I created a user TFSReport and added him to Administrator-group and all the sql-groups. I opened the Report-Server Configuration and configured it so that the TFSReport-User controls the service (works without any errors). Near to the end of the setup, i get the following error, that setup cannot access the SQL Report server. I should ensure that it is installed, that it runs and that i can access it. Any idea Thanks in advance, David I don't remember exactly which log it is, but you'll want to look in the usual places (c:\windows\, c:\windows\system32, and your profile's temp directory ...Show All

  • Software Development for Windows Vista weird exception

    I am new to WWF and just trying to create a 'hello world' application in WWF, I am loosely following 'presenting Windows WorkFlow Foundation' beta edition. I have successfully created a 'hello world' WWF console application but when I attempt to add a parameters collection (Dictionary<string, object>) I receive an exception message  "Exception has been thrown by the target of an invocation." with the inner message being "This operation can not be performed at runtime." Now I find some reference to possible to binding problems with the collection but I am unsure how to solve the issue. The code is shown below: using ( WorkflowRuntime workflowRuntime = new WorkflowRuntime ()) { AutoResetEvent waitHandl ...Show All

  • .NET Development Maximum UPD message size - WSAEMSGSIZE

    I am using multicast (i.e. UDP) to distribute very high volume market data around a network. For my particular architecture, it turns out that larger packet sizes are more efficient (yes, I know this is not usually the case). However, when I dial up the packet size, I start running into WSAEMSGSIZE errors (socket error code 10040). I am unable to find any documentation on how to determine what is the allowed packet size. It would be useful to know this in advance rather than trying to tweak the numbers until my app breaks. Can anyone provide any guidance on determining what value will trigger WSAEMSGSIZE and whether it can be configured directly. I've tried SET_SENDBUF and SET_RECVBUF, but these didn't seem to work very well. I think there ...Show All

  • SQL Server Relationships and constraints across databases

    (I wasn't sure which forum to pos this in. Let me know if you think there is a better one.) I have an application that breaks down into two sets of data, Set A and Set B, for our purposes. Both Sets currently reside in the same database. Set A is a fairly static set of data, changing maybe once a week, if not less often. Set B is empty at first but it has a lot of dependencies to Set A. Items are chosen from Set A to fill Set B but never the otherway around. Here is the problem. We continue to copy the "master" database whenever a new customer signs up. The problem is, anytime we have to update data on Set A we have to do it across multiple databases. Set B is never copied as its customer owned. What I would like to do is c ...Show All

  • Smart Device Development What's mean of disassembly window's data

    Hi, I use Windows CE Platform Builder to debug. While enter into break state, I saw the disambly window But I don't know what's code means between mem address and assembly instructions. What are those code mean( e1a0c00d , e92dd800, e24cb004) Are they machine code relate to assembly instructions or just memory segememt sample code: 10000004 <_c_start>: 10000004: e1a0c00d mov ip, sp 10000008: e92dd800 stmdb sp!, {fp, ip, lr, pc} 1000000c: e24cb004 sub fp, ip, #4 Those are the machine instructions for the assembly language on the right. You turn those on/off by right clicking the assembly window and clicking on "Code Bytes" ...Show All

  • Windows Forms Settings focus after the last character ...

    I have a TextBox on a Form. When a user types a character in this TextBox, another Form gets opened displaying records related with that character typed. This second Form also has a TextBox which displays the original character typed in (in the first Form Text Box), and the cursor must wait after the first character so that user may continue typing. How to set the focus after the last character on the TextBox With TextBox1 .Focus() .SelectionLength = .Text.Length End With ...Show All

  • Visual C# Best practice for an interruptable Worker Thread in C# 2.0

    I'm writing a DLL (no GUI involved) that exposes a couple of functions that control the execution of a long process. There will only ever be one client of the DLL at a time, and only one worker thread. For brevity's sake the two functions are: Start() - Starts the long process. Stop() - Stops the long process. Long process preforms resource cleanup. The long process does not have a completion point - it is expected to run until stopped. After the worker thread is spawned by the Start method, I want it to report back to the main thread that everything is up and running OK, or report any error that may have occurred. The Start method will return this status to the user. I'm sure I have a few options as to h ...Show All

  • Visual Studio Team System Branching across projects

    I'm looking for current thoughts regarding branching across team projects and support where you have common components that live in separate team projects. To keep this "simple" let's assume the following: Common Library projects - each contain a number of projects that are intendeded to be used by multiple "Products" CommonProjectA CommonProjectB "Products" - These are the end products, and each use either A/B or A&B - Each can release together or at different times ProductA ProductB ProductC - "C" agregates and depends on Product A & B of a consistent release Each Product A , B and C each have their own solution file that includes the relavent projects from CommonProject ...Show All

  • SQL Server Cache calculated member

    hi, i have several calculated mebers in my cube that take a long time to be evaluated. so i would like to evaluate the the calculation during processing my cube and store it directly in the cube. So far i only found the "CACHE" statement that would fulfill my needs but i dont get it to work correctly my calculated members looke like this; CREATE MEMBER CURRENTCUBE.[MEASURES].[Kaufpreis je Wohnflaeche m2 Max] AS MAX({descendants([Immobilien].[Geographie].currentmember, [Immobilien].[Geographie].[Immobilie], self)},[Measures].[Kaufpreis]), VISIBLE = 1; the [Immobilien].[Geographie]-Hierachie looks like this: Immobilien Land PLZ Immobilien Immobilie what would the CACHE-Statement look like to cache this calculated m ...Show All

  • Visual Basic Label Printer Problem

    Hi all, I have a label printer (Argox 1000-x) and i want to print some datas on it. And this printer is connected to my computer via the COM1 port. I can open/write COM1. And when i send some data to printer through COM1, Label Printer's Ready Signal Led will be ON/OFF. But it does not print anything or any label.. So, how can i solve this problem Regards.. Hi BrunoYu, Now i can write some data to label via the barcode label printer. And i don't get any errors. And label printer is used in a warehouse. But now the problem is i can't print the barcode and also i don't know how to do this. But i am searching it. If you show me the way, it will be nice :) Thanks for your reply.. Regards.. ...Show All

  • Audio and Video Development Media Foundation Protected Pipeline EXE stopped working

    I just installed Vista Home Premium, with IE7 and WMP11. I tried to play an MP3 file and got this error - "Media Foundation Protected Pipeline EXE has stopped working." WMP11 closes. Any ideas what's wrong Any help is appreciated. Thanks. I am facing the same problem. its more when I am trying to open media files from reliable websites. The same error displays and no solution is offered. I am able to play other audio and video files saved on my hard disk/cd/dvd via Realplayer, itunes and some with WM player. Please suggest any solution. I rely a lot on online video news etc, which I am not able to view. ...Show All

©2008 Software Development Network