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

Software Development Network >> Jim Stricker's Q&A profile

Jim Stricker

Member List

Ali-SCM
Lima Beans
rrowe007
Bachmo
logtorahul
project2n5e0o1
Daniel Ratcliffe
MicMit
Sweeps78
dilerabdullah
Sarwanan
Abelard
A1Programmer
Personal Information Withheld
Martin Moe
robinjam
Salvatore Di Fazio
JerberSoft
Reko Tiira
thomas_nor
Only Title

Jim Stricker's Q&A profile

  • Visual Studio Team System TFS errors after enabling SP1 ISAPI filter

    I'm trying to get this SP1 ISAPI filter working, but when I enable it I have connection problems with the TFS. I can still connect, but can't see work items or source control. I have the ISAPI filter configured like this: [config] RequireSecurePort=true ProxyIPList=192.168.1.1; There is an event log entry that says it has started correctly with that configuration. Here are the event log messages that start showing up when I try to connect with the ISAPI filter installed: Detailed Message: TF53002: Unable to obtain registration data for application VersionControl. Web Request Details Url: https://tfs.domain.net/VersionControl/v1.0/repository.asmx [method: POST] User Agent: Team Foundation (devenv.exe, 8.0.50727.147) Heade ...Show All

  • .NET Development Framework bug: SslStream.Read returns IoException at System.Buffer.BlockCopy

    Hi, I have the follwing code which is executed on an SslStream: try { streamtouse.Read(buffer, 0, 2047); readerror = false; } catch (IOException iex) { if (iex.InnerException.GetType() == typeof(SocketException)) { SocketException sockerr = (SocketException)iex.InnerException; if (sockerr.ErrorCode == WSAETIMEDOUT) { // Data was not received within the given time. // Assume that the transmission has ended. // Need to go back for more data - EndReadResponse will do // this. readerror = false; } else if (sockerr.ErrorCode == WSAEWOULDBLOCK) { //Operation would block - seems to append garbage here! ...Show All

  • SQL Server VS2005/SSR2005 Report Controlling field visibility by code

    VS2005/SSR2005 Reporting: How can one control an individual report fields visibility (toggle on/off) at run time, based on data values (of the same field or another field) in the report. Without user having to sit there and "Click". Thanks Zulu5255 If the Hidden expression evaluates to true, the item is hidden, otherwise it will be visible. Once the report is rendered, the visibility of the item is set until you re-render the report or you have a toggle item controlling the item's visibility. A toggle item allows you to control the visibility of another item after the report is rendered using a textbox. When you say that you set the expression, and then set it to be hidden, do mean that ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Multiple Instances of the Same Model

    I've hit a really weird problem with the game I'm writing for the DBP competition. The reason it's so weird is because I'm sure it wasn't a problem before. Basically, I'm implementing the p1_wedge model in a class I have created called Player. Originally, I only had one player on screen but now I've added a second player. The problem I'm having is that it only draws the model for the second player. However, once the second player gets destroyed it then starts to display the model for the first player. It's as if the first player can't be drawn because the second player is using the model. I haven't done anything special to implement the Player class. I have made the main class a Singleton so that I have access to the graphics and content o ...Show All

  • Commerce Server Getting SoldToName in Pipeline Component

    I'm building a C# pipeline component to handle credit card processing. I'm able to get the order form values without a problem. However, I'm not sure how to get the value for "soldtoname" which is stored at the PurchaseOrder level. Does anyone have any code examples where they've done this, or have suggestions As you've probably noted, the rest of the OrderGroup values are inaccessible in the pipeline. You can either use the email address in the address dictionary, or you can attach the value in the ordergroup field to the context dictionary prior to running the pipeline. IE: PipelineInfo p = new PipelineInfo(); p["sold_to_name"] = bas["sold_to_name"]; That only take ...Show All

  • Smart Device Development WM5.0 w/ MSFP Image clarification

    Does the WM5.0 w/ MSFP image that was provided with Device Emulator 1.0 provide the security issues that are being discussed in this blog post: http://blogs.msdn.com/windowsmobile/archive/2005/12/17/security_model_faq.aspx The issue I'm having is I'm attempting to test an ActiveSync CeRapiInvoke call to an unsigned DLL on the device. It fails on WM5.0 w/ Phone devices but on the Emulator the calls goes thru. ALL the DLL does is make a call to KernelIoControl to get the unique device identifier, which I'm told is supposed to be blocked on the new security model. But when I test this on the emulator image, it goes thru and returns back to me a value. Thanks in advance. http://blogs.msdn.com/windowsm ...Show All

  • .NET Development timestamp

    Hello, I was hopeing if someone might be able to tell me what the datatype should be if I want to set hold the value of "timestamp" from a data record from a SQL Server 2005 database. I'm using VB.net. I want to use the field in a "update .. where timestamp = <old timestamp>" type of update statement. Thank you Hi, Thank you. So in this example ' timestamp' is actually the variable name I thought a byte datatype could only hold values from 0 to 255 Does dim timestamp (7).... make it an array of bytes thanks ...Show All

  • Visual Studio Express Editions visual express C # installation will not install on my computer.

    Hi i try to install visual C# installation on my computer it gives me a message saying that setup is loading installation components this may take a minute or two. and i let it go for 20 minutes and it still had not load. can someone help with this matter. thanx!!!! Hi friendz, A few questions so that we can get a better picture of whats going on: a) What OS are you trying to install C# on b) What is the spec of you computer (cpu, memory, hdd) c) How are you trying to install C#, from a download or from a CD image I expect that you are trying to install from a download, and if so are you still connected to the internet As the download only downloads an installer and you will ...Show All

  • Visual Basic My.Computer.Network.IsAvailable

    Hi, I want to use My .Computer.Network.IsAvailable in my app to test for network availability, however the .Net framework sees a Sonicwall virtual adapter used for VPN connections as a valid network connection. (The PC has the Sonicwall global VPN client installed which is used to connect remotely to the network. The VPN adapter's status is always Connected) Anyone encountered this problem before (with Sonicwall or another VPN product) and found a good solution Thanks for any help! Ronan Try pinging the server to see if the network is available. If My.Computer.Network.IsAvailable AndAlso My.Computer.Network.Ping("YourServer") Then Me.Text = "Connected ...Show All

  • SQL Server How to disable windows authentication?

    How can I disable the windows authentication dialog box when opening the RS website http://server/Reports Thanks in advance I don't quite follow you. The problem you are describing is that you need the browser to send the security credentials, which is why you need to set "automatic logon" in IE. ...Show All

  • Windows Forms How to Show form in Quick lunch rather than Task bar

    Hi when I click on Minimize button of a form it should disappear and must be visible in quick launch . How to do this Any Idea Thanks u I am not sure , just guess if you want your from minimize to the system tray this article would help you. http://www.developer.com/net/csharp/article.php/3336751 ...Show All

  • Visual Basic ListBox - SelectedIndexChanged

    Hi all, i have a windows form which is used to display data by select the data inside the listbox. Actually i done this succesfully in .Net 2003, but now with the same codes, it is not working for .NET 2005. The situation is like that: When the windows form is loaded, all ID is binding to the listbox. I use the PopulateListBox to do that: Private Sub PopulateListBox() Dim i As Integer 'Get the customers from the database If lstName.Items.Count = 0 Then Try RequisitionPDClass.Initialize(c) Intw = RequisitionDA.GetAll() MessageBox.Show(Intw1.Count) For i = 0 To Intw.Count - 1 lstName.Items.Add(Intw.Item(i)) Next Catch nfe As Exception MessageBox.Show( "No record ...Show All

  • SQL Server How to : Truncation : Can i write a log entry whenever data is truncated?

    I'm reading data from a flat file source. If some data gets truncated, i have the option of 'ignoring', 'redirecting' or 'fail component'. What i'd like to do is, to allow the data to be truncated, but i'd also like to write a log entry so that i can know that a particular rows data has been truncated. I've tried 'redirecting' the row to a script component (as transformation), but i don't know how to determine if the error is truncation or not, not only that, i can't redirect the row back to the 'original' flow, which is a derived field column. Any ideas on how to do Cheers. Jamie Thomson wrote: That kind of dilutes the generic nature of the logging infrastructure. now you're talkin ...Show All

  • Visual C++ MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup

    Hi Justin! i am completely new to this and have to learn the language fairly rapidly, got myself a decent book, but when i try and compile a simple hello world program i get the error:      Linking...    MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup    Debug\dont know.exe : fatal error LNK1120: 1 unresolved externals    Build log was saved at "file://c:\Documents and Settings\Justin Pyfrom\My Documents\Visual Studio 2005\Projects\dont know\dont know\Debug\BuildLog.htm" dont know - 2 error(s), 0 warning(s) the hello world code is in a .cpp file format and t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Compile in Release

    I am in a huge rush right now. Between VS2003 and VS2005 they moved where you choose whether you compile in Debug or Release mode. Where is it now I have manually added the drop-down box to the tool bar, but it's grayed out. This is extremely frustrating and critical to testing DirectX stuff. Okay, that enabled the drop-down! Cheers! I know in Human Computer Interaction they tell everyone to hide extra settings... but the more I see such implementations, the more I think it's a load of BS. It seems to just get in the way and make things /harder/ to find. ...Show All

©2008 Software Development Network