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

Software Development Network >> Jason Bolstad's Q&A profile

Jason Bolstad

Member List

latence01
Viral Thakkar
Praveen.Yarlagadda
Vladimir Chtepa
Zoran Bebic
Carlos Chicas
Mark The Archer Evans
mary.oneill
Aadi1
Gpg
J P R
TRTwiggy
yaakov
Daniel Karanov
irenedaniel
kevow
kuntushi
bulfers
xishan shigri
Will Sullivan
Only Title

Jason Bolstad's Q&A profile

  • Visual Studio Crystal Report Printing Extra Blank page

    Hey Guys Yet another Crystal Reports Problem I got this application that creates and prints out Policies The problem is that on one users machine the Report Prints out 10 Pages with the extra Page being a blank page in the middle of no where.... it should normally print out 9 pages. There is only one version of Crystal Reports being used. They all using the same Report. I export the report to PDF automatically. so when it opens it has the 10 pages in there already. Dont know what it is. it seems that its only on this machine that is prints out 10 pages. Every other machine prints out 9. its a new machine so i only have what it needs installed. Please Help. I've found out what the problem was. In the Repo ...Show All

  • Visual Basic How to pass parameters to SQL procedure from unbound datagridview ????

    I have a unbound datagridview and I want to pass parameters to SQL stored procedure when the user end to add or edit rows. But I can’t see events like "unboundAddNew", "unboundEdit", "unboundDelete". How can I do that Thanks ...Show All

  • Windows Live Developer Forums Page in activity can redirect to other page?

    If I want to change url in my activity,what to do I want the page in activity to jump another page ,means that the page in the activity want to change page dynamically , may it be I don't really understand you question 100%, but I guess you are asking how to use multiple pages in your activity. You can use frames to that. For example, you can make the main page like: <html> <head> <title>My activity</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script> // Functions for receiving / sending data function Channel_OnDataReceived() { if(window.external.Channel.Data == "") return; if(window. ...Show All

  • Software Development for Windows Vista Error 0x8004D00E on SQL Server 2000 + Windows 2000 SP4

    We have an ASP.NET application running on Windows Server 2003 whose database backend lives in a different machine which runs SQL Server 2000 and Windows 2000 Server SP4. Whenever we try to use System.Transactions we get errors. We are almost sure that the problem is related to MSDTC refusing network connections. We tried to run the same thing using Windows Server 2003 in the backend server, and we were able to make it work by configuring MSDTC security using the COM+ console. However, we still need to support Windows 2000 for the backend. There is apparently no GUI for MSDTC security on Windows 2000, and the registry settings we have tried so far did not work. We think this should be a very common issue, but we have ...Show All

  • Visual Studio Express Editions Need help for reading seiral port

    Hi every one, I need help on hoe to makeCOM port for Visual C++ Express works. I am a beginner for Visual C++ Express. I have trouble for reading data from serial port. I would like to ask if any one could show me the way or give me some examples for reading data from in_buff. I have no probleme with sending out, the only problem is reading. Thanks mman06 I wrote a little thing on how to open a COM port in c++ here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=300214&SiteID=1 Maybe you will find it useful. ...Show All

  • SQL Server How can I get Actual Operation Cost from Actual Execution Plan?

    I have a view in SQLServer 2005. It took 30 sec. to finish. Then I deleted 4500 records from one table that is used in view. It took 90 sec. to finish now. I did a comparison on Actual Execution Plan between before I deleted data and after I deleted data, they are almost same, only different is Actual Number Rows become less after deleted data. So, I wonder why data become less but time become more. When I look closely on the Actual Execution Plan, the ridiculous thing is, there are only Estimated Operation Cost on each step, no Actual Operation Cost. I guess there are something wrong with optimizer because reuse same Execution Plan, but how can I tell which step wrong without Actual Operation Cost. Thanks! Henry ...Show All

  • Visual Studio Team System Fxcop rules in spanish?

    Does somebody know if these rules are translated to spanish I need to make a document for my company using those rules. and it would be faster If i got a translation. Another questions is: fxcop is the same thing when I right click on vs 2005 code analsys Luis, Visual Studio Code Analysis is a version of FxCop; you can find out the differences via this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=300549&SiteID=1 . The rules that are included in Visual Studio Code Analysis (which is nearly every rule except the spelling rules) are translated to Spanish, you can find these, starting here: http://msdn2.microsoft.com/es-es/library/ee1hzekz.aspx . Regards David ...Show All

  • Visual Studio Express Editions Number of lines in a text file

    Hi I need to determine the number of lines in a file, and then assign the value to an integer. Here's my structure: Do while [the filereader is not at the end of the file] -> filereader should now read line -> for each line add 1 to variable (integer) "testinteger" Loop Does anyone understand my structure Thanks! Johannes easily done my friend Dim theFileToRead as new StreamReader(" file.txt ") Dim testinteger as Integer = 0 Dim theCurrentStringLine as String = String.Empty while theCurrentStringLine is nothing = false 'you could also replace this with: 'while theFileToRead.Peek() > -1    theCurrentStringLine = theFileToRead.ReadLine()    testinteger = testinteger ...Show All

  • Windows Forms UserControl accept only certain controls

    Hi, I've created an usercontrol and want to prevent certain controls to be dragged onto it at design time. How would I achieve this Thank you in advance There is an OnControlAdded method in the Control class. Override that method (be sure to call base.OnControlAdded() ) and check that the type of control being added is of one of the types you allow. Throw an exception otherwise. The designer will catch the exception and display the message you put in it. ...Show All

  • Visual Studio 2008 (Pre-release) Bug or Feature : Behavior of OneWay bindings (July CTP)

    Hi, I'm using the July CTP and have run into a situation where Binding doesn't behave as I expected it to. I've isolated this behavior below and I'm not sure if it's a bug or if it's by design. If it is by design, I think the documentation should highlight this 'feature': I've created a Source object and a Target object: public class Source : INotifyPropertyChanged { double _floatingPointValue = 0.0; public double FloatingPointValue { get { return _floatingPointValue; } set { if (value != _floatingPointValue) { _floatingPointValue = value; _OnPropertyChanged("FloatingPointValue"); } } } public event PropertyChangedEventHandler PropertyChanged; private void _OnPropertyChanged(string proper ...Show All

  • Visual Studio 2008 (Pre-release) January Orcas CTP

    Hi! I have download and installed January Orcas CTP on virtuell server and now I can start Visual Studio Orcas 9.0, but can not find any Linq project to start playing. I am a first timer about Linq. I checked and there is a version 3.5 Net framefork installed under Windows. Regards Good. So it is not just me. I found the required assemblies in the 3.5 framework. I wonder why the LINQ support is so buried in this release. Isn't this like *the* major new feature for Orcas/.NET 3.5 Go figure. ...Show All

  • Visual C# looking to program web cam applications

    Greetings. I am new to programming so bear with me. I thought writing a frame grabber program for a web cam would be an interesting first project. I decided to use C# because it uses the .Net framework and is portable. I know it can be done using directshow, but I heard directshow may not be supported anymore. Besides, the one book everyone agrees is a valuable learning tool is unavailable. I was wondering if C# and the .net platform would allow me to manipulate the web cam, are there any books available specifically for my project, what opinions users of those books have, and what other references would be recommended. Thanks in advance. ...Show All

  • .NET Development Generating additional [field | property] at runtime

    I have a need to track objects at runtime that don't have a uniqueness to them. I guess to describe my ideal situation would be to somehow mark objects in memory with some additional unique identifier that I could then use to track these objects. My overall goal is to build an object that can watch and manage other objects, and should those objects change their public properties, my object will still know them. I've poked around Reflection.Emit and I'm not sure if that's going to do what I need. I also wonder if I can attach something to an object at runtime, if when calling the object normally or with boxing/unboxing if I will lose the additional data. Thanks, Ryan Generic solution: add a s ...Show All

  • SQL Server Inserting row with single quote

    I'm inserting a row of people's names and addresses to a table. This seems to work great, unless the person has ' in their name, for example O' Riordan. When the address has single quote (such as Wilder's Path), I'd get the same error, unclosed quote when inserting the row. What would be the best way to work around this, other than read the line and replace it with a space. Take a look at these links http://msdn2.microsoft.com/en-us/library/ms378878.aspx http://msdn2.microsoft.com/en-us/library/ms378138.aspx Hope this helps ...Show All

  • SQL Server SQL Server Caching

    In a test app, I've noticed (by logging the times to execute) that it appears SQL Server 2005 is caching the results of queries (no client-side caching is being used). Some questions if I may... Is it possible to know how long/how many queries will be cached Is setting such caching a database setting Can longer-term caching priorities be set by configuration Is it possible send a command to the database (on startup) to preload the cache with certain data Thanks! Andy, What you are observing is most likely SQL Server's caching of data pages used in query execution, not the query results. One way to see this is to first execute DBCC DROPCLEANBUFFERS to clear all data pages out of cache ...Show All

©2008 Software Development Network