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

Software Development Network >> Jason D. Camp's Q&A profile

Jason D. Camp

Member List

me*
Michal Golawski
Igor Grozman
DarthFahza
ackermsb
Helen999888
espionage
mbr_rptusr
vijil
JDavide
magikalpnoi
KarimG
andris11
rmelnikov
rod_r
ngkay
Nick Forte
Kandisa
JLovero
Dat23
Only Title

Jason D. Camp's Q&A profile

  • Visual Studio 2008 (Pre-release) Problem when changing BasicHttpBinding to WsHttpBinding WebService blocks

    Hello, I'm working in a Tutorial about WCF. I have build a webservice which interacts with a database SQL Server 2005. An a Win32 Client to consume the WebService. Everything works fine, but when I change tu binding form BasicHttpBinding to WsHttpBinding, the webService blocks. I have worked a lot of time to find a solution, but nothing. :-( Here is my contract : namespace BankingService { [ServiceContract()] public interface BankingContract { [OperationContract] [FaultContract(typeof(BankingServiceException))] string DebiterCompteTrans(Transac t); [OperationContract] [FaultContract(typeof(BankingServiceException))] string CrediterCompteTrans(Transac t); [OperationContract] [FaultContract(typeof(Bank ...Show All

  • Visual Basic Do I need an addin to print barcode in VB2005?

    I'm looking into purchasing VB2005 will I need more purchasing to be able to print barcode (128) Where can I find sample codes for doing this   Hi, Take a look at these screenshots.>> get the program demo from >> http://www.tec-it.com/asp/main/startfr.asp LN=1 under the downloads section. It can deal with loads of barcode styles, not just CODE128 http://i13.photobucket.com/albums/a272/u-might-want-this/Barcode_Prog_View.jpg   http://i13.photobucket.com/albums/a272/u-might-want-this/Barcode_Site_Pic.jpg   You can print off samples only one at a time in different widths and heights, with or without the number shown above or below the barcode. Only it has the wor ...Show All

  • .NET Development Terminating a remoting call

    I have a client making a long-running remote synchronous call (via .NET Remoting) to a server. Is there a way to termiante this call, perhaps by retrieving the thread ID on which the remote call is being serviced on the server, and then termianting the thread Thanks. Yazan D. One way to do this is to specify a TimeOut in the properties for the channel. Please check http://msdn2.microsoft.com/en-us/library/kw7c6kwc.aspx for the complete list of Channel properties. Please see http://blogs.msdn.com/dotnetremoting/archive/2006/07/27/680893.aspx for a helper class to use the Channel Properties. I hope this helps ...Show All

  • Software Development for Windows Vista Textpattern giving exception by UIAutomation on AMD64

    I am using Mita to do some development, which is dependent on UI Automation. MitaSpy exposes properties of my control as ControlType.Document and supported patterns as Scroll. The classname being displayed as richedit. The control doesn't support the text pattern. This is occuring only on a amd64 machine and not on a x86 machine with ws03 OS . Exception: ******** <Exception Type='PatternNotFoundException' hash='19515494'> <Message Type='String'>The pattern &apos;TextPattern&apos; was not found on the UIObject &apos;{Certificate status, RICHEDIT, 42.590260}&apos;</Message> <Data Type='ListDictionaryInternal' Count='0' hash='41421720'> ********** Is there any way to read the conten ...Show All

  • .NET Development Deleting file from fileserver

    I would like to be able to delete a file from a file server. I have code to do it for an ftp server, but u nfor tunately applying this code to files on a file server does not work since the following does not exist: FileWebRequest request = ( FileWebRequest ) WebRequest .Create(serverUri); request.Method = WebRequestMethods . File .DeleteFile; I also have a way to make a temporary z drive and work with code that basically inputs into a command window. The problem here is I am not sure what the command line is to delete a file. Also, the file server will be protected by a username and password, so I need to take that into account. Does anyone know the best way to go about deleting a file from a file server If you leave ...Show All

  • Visual Studio Team System Source control and non VS files

    Apart from some VS projects, we also have sets of XML (text) files that I want to put under source control. We create and edit these file sets in an IDE that is not Visual Studio. How can I put these under source control in Team Foundation Server If you haven't checked in the pending adds yet, just undo the adds of the files/folders you don't want. If you have, then you'll have to use Delete. To avoid deleting the files locally, create a separate workspace first. (you shouldn't need to download anything -- Delete will work so long as the files are mapped) ...Show All

  • Visual Studio Team System How not to retreive all files in a team project

    We have 10 or so solutions in our team project, and I've gone through the wizard to create a build process for each of these solutions. When we run the build it retrieves all the code for the entire team project, since each solution can stand on it's own I don't want this to happen as it takes a long time to do this. How can I prevent the build process from retrieving ALL the code and only get the code that is in a specific folder and below Thanks Wayne Alex, If you're performing recursive checkout operations during your build, then yes, this technique can be used to prevent "cloaked" folders from being checked out. ...Show All

  • Architecture SOA - Transaction/compensation/cordination

    I have a challange. I have multiple services that are located on different server setups. They are build stateless N-tier architectures based on single call remoting. The services do not support the flow of transactions. This would also couple the services an go against the very idea of service orientation. But ..nevertheless, one needs to perform business operations that span multiple services. How do I best support this. Should I have the programmers do custom compensation code very time (clean-up) and accept that if something crashes the data is inconsistant or should I try to find/implement some kind of common cordination What are my choices Hi Ahmed I had ...Show All

  • Visual Basic IsolatedStorageFileStream access problem

    Hiall I am implementing a class library (Addin ) in VB 2005 for Solidworks 2006 3D cad tool. I wanted to use IsolatedStorageFile for my persistant storage. I used my code like this Private Function CreateSettingsStream( ByVal key As String ) As IsolatedStorageFileStream Dim store As IsolatedStorageFile = IsolatedStorageFile.GetMachineStoreForDomain() Return New IsolatedStorageFileStream(( "abc.txt" ), FileMode.Create, store) End Function When I run the Addin I get a strange error in the following statement Dim store As IsolatedStorageFile = IsolatedStorageFile.GetMachineStoreForDomain() and the error is " Unable to determine the identity of domain." Any body kno ...Show All

  • .NET Development System.Transactions in SQL Server Database

    I'm using the System.Transactions - Transaction Scope block using SQL Server 2005. Everything workings fine on my queries, except when I try to use a Synonym to access a table on the same server, different database. If I make any call using a Synonym I get the error message: "Transaction context in use by another session." If I don't use the synonym and access the database table directly using <dbname>..<tablename> like AdventureWorks..Person instead of trying to use the synonym everything works perfectly. If I don't use the System.Transactions then it all works perfectly. Anyone have any ideas I've done multiple searches and can't find any issues regarding synonyms and transactions. Thanks ...Show All

  • Visual Studio Can't debug ASP in VS2005

    VS2005 doesn't seem to support debugging ASP pages. Is this really so That's a serious problem if it is. Thanks Jeremy Hi Monica, Thanks for the info.   I am using the "Visual Web Developer 2005 Express"  flavor of VS2005.  It doesn't look like the "attach to process" feature is present.  Is that correct If so, is there another way to enable legacy ASP debugging   I realize that this goes against the intent behind this tool,  but the fact of the matter is that while I'm taking on more and more .NET projects,  I'll be stuck w/ legacy ASP maintenence for quite some time and it'd be nice to use one tool to does both.   I imagine that I'm not alone. ...Show All

  • Visual Studio Team System VS Crash on Check-In

    When I try to check-in a file that I have previously checked-out I get an APPCRASH in devenv.exe. I'm running VS 2005 SP1 with the Vista hotfix. I have read a couple different posts related to F-Protect, Visual Studio 2005 and Team Explorer causing a crash. This was very similar to my problem, except I see no reference to ntdll.dll as the FaultModule. Instead the FaultModule is StackHash_9eb0. I don't have real-time virus protection running, so I do not believe this is the issue. Does anyone have any ideas I'd rather not uninstall / re-install...it takes forever. Apologies. No idea what might be causing this. I think your best bet is to call MS product support and see if they have anything in th ...Show All

  • Windows Forms Intellisense style code completion

    Hello I'm making a development environment for Javascript applications, using VB.NET 2005. My question is this: How do I make an IntelliSense-style automatic code completer Thanks in advance. Thanks for your speedy reply. After I posted the thread I realized that the most appropriate option would be to create a filtered listbox. But how would I position the ListBox over the exact position of the caret I await any suggestions. ...Show All

  • Visual Studio Express Editions Reimaging a school lab with express editions

    I'm trying to setup some computer labs in our schools so the students can take advantage of the Visual Studio EEs. After installing the software, launching and registering it I sysprep the machine and reclone it. After the lab comes back up from cloning the Visual Studio software acts like it is running for the first time. Is there any way to install/configure the studio to avoid this behavior Since we use Clean Slate in the lab any changes done, such as a first time launch, are repeated for ever user from then on out. The changes made each time are erased when the student logs off. If you use the online installation the software will require every new user (windows login) that starts the express editi ...Show All

  • Internet Explorer Development Three problems with IE 7 - rollovers, cut-off text and cut-off images

    Hello all, I thought I'd finished designing a new site which works fine in IE6, Firefox 2, Opera and Netscape - until I tried it in IE 7! Problem 1 (most important) - Tabbed CSS menu moves on rollover URL = http://www.toucanmusic.co.uk/test/index.php CSS = http://www.toucanmusic.co.uk/test/toucan.css The tabbed menu at the top works fine in all other browsers I've tried, however in IE 7 the menu initially loads up correctly then, when you rollover the tabs, a white gap appears between the tabs and the blue bar underneath. Refresh the page once and the gap remains, but refresh it a second time and it disappears! Not being an expert at CSS, I'm using a variation of the "fitted doors" menu found at http://www.cssplay.co.uk/menus/do ...Show All

©2008 Software Development Network