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

Software Development Network >> Kristian Jörgensen's Q&A profile

Kristian Jörgensen

Member List

kevin D. white
gamer6000
Novelle
js06
Jassim Rahma
averge joe
nfuji27
Pushpa
Ron J51027
hank voight
ofireps
John Papa
Alex-MyRpg
Will George
Freddo
Sara_H
TeresaDawn
Flame Thrower
Will Merydith
Stephen912
Only Title

Kristian Jörgensen's Q&A profile

  • .NET Development Problem with StreamReader

    I'm have a problem with the StreamReader that I can not figure out. As I have it set up right now, it will read through a text document. The text documents are created through our network backup utility. The problem that I am having is that when I run the program I am getting "Object Reference not set to an instance of an object". But if I open the text document manually and hit save without modifying the document at all, then the program run perfectly. Here is a copy of the code that is failing: Dim fs As New FileStream(FileAddress, FileMode.Open, FileAccess.Read, FileShare.Read) Dim reader As String = "" Dim streamreader As StreamReader = New StreamReader(fs) Do Until reader.StartsWith("Job Log") ...Show All

  • SQL Server Can't access instance of local webserver

    Hi, I've installed SQL Server 2005 Express Edition, SQL Server Management Studio Express using Windows Authentification and IIS 5. The problem occurs when I try to access the default address of my local computer to test my installation. I've tried with both http://localhost and http://127.0.0.1 . The system requires a password despite I don't use password for my Windows Authentification. Does IIS always demands a password regardless my settings for Windows Authentification or Best regards Thanks for answering. However, I already have anonymous authentication enabled but how do I enable Windows authentication in Internet Explorer I'm using IE7RC1. ...Show All

  • Visual C# I cannot get Intellisense to work in C#

    When I start a new project, as soon as a put just a few components on a form and start writing code for an event, Intellisense stops working. I have to holf Ctrl+Space to see the options, step through the alphabet by typing a character at a time and holding Ctrl+Sapce again to see the next set of options. How can I get Intellisense to work Note that I have found solutions to what appears to be this very problem for C++ projects, but I do not see any relevance in these solutions for me because they talk about .h files and other things that are hidden or not present in C#. I am also having some weird issue with Intellisense in C# on VS 2003. CTRL+Space works fine but the "." doesn't work any ...Show All

  • SQL Server extending SSIS Container?

    Has anyone investigated extending any of the SSIS Container classes I have been looking into it because we'd like to add a set of standard logging calls on events, standard startup procedures, etc. on any package that we execute. I've been looking into the Sequence Container, For-Each, etc. They are all sealed classes. I'm not sure why MS has sealed them. We're currently thinking of implementing our own version of the Sequence Container -- we'd really like to be able to extend the functionality of a standard container class, but we don't want to have to implement the actual container class itself. Any insight appreciated. jhikel wrote: Has anyone investigated extending any of ...Show All

  • SQL Server Select GetDate() Just the month or year

    I wonder if someone can help me with getting JUST the month and year from SQL DB. Using the Select Getdate() Statement. If I need to use another one that would work that would be appretiated as well. Thanks! Here is one option: SELECT replace( right( convert( varchar(8), getdate(), 3 ), 5 ), '/', '' ) ...Show All

  • Visual FoxPro Update Form by clicking Grid record

    Is there any way to see the same record in Form by clicking the grid's record when I click on grid's record within the Form, it won't show or refresh/update the Form. (It's a one Table Form that has a grid on one side) Thank you very much, it works the half! because the text fields won't refresh...ANY help appreciate  ...Show All

  • Visual Basic How to navigate a song to windows media player.

    I want to have the name of a song/album navigating to Windows Media Player when you click the Title. Does anyone know code so i can do this in VB. Thanks Deco wrote: I want to have the name of a song/album navigating to Windows Media Player when you click the Title. Does anyone know code so i can do this in VB. Thanks Are you integrating WMP into your application via COM component can you also define what you mean by having the name of a song/album navigating in WMP when the title has been clicked ...Show All

  • SQL Server how to start develop database applicaton on pocket pc ?

    i have install vs2005 and wm5 sdk on my pc. i want to develop database application on my pocket pc (database = sqlserver 2005 express) - i need to install another software on my pc or pocket pc - how to start develop database application on my pocket pc thank you You'll want to start by deciding whether you want to write your mobile application as native code (C++) or managed code (C# or VB.NET). If you decide to go the managed code route, start by learning the .NET Compact Framework. http://msdn.microsoft.com/netframework/programming/netcf/default.aspx Once you are comfortable with developing a smart device application with the .NET CF, you need to decide whether your mobile application will directly access your SQL Express data ...Show All

  • SQL Server Is SSAS a new version product or it is a upgrade version of SQL Server analysis services 2000?

    Hi, all here, I am having a question about SQL Server 2005 Analysis Services. Is it a new version product or it is a upgrade version of SQL Server 2000 analysis services Thanks a lot in advance for any guidance and advices for that. With best regards, Yours sincerely, It is a new OLAP and data mining engine. There are some upgrading issues especially regarding dimensions. In AS 2005 everything was about hierarchies but in AS 2005 a dimension consists of attribute hierarchies(flat hierarchies) and user hierarchies(the old AS2000 version of dimensions) A virtual cube is the same as a cube in AS2005. Measure groups is the same(almost) as the AS2000 physical cubes. Some changes in MDX have also appeared. Have ...Show All

  • Visual Studio Unable to uninstall Trial version of VS 2005 Professional

    I have the trial version of VS 2005 Professional installed on my PC. The trial period has ended and now I want to install my fully licensed VS 2005 Standard . During my attempts at installing VS 2005 Standard I experience the following: Upon opening VS Standard, VS Pro Trial opens, instead, with the message that the trial has ended, please upgrade. When I try to uninstall VS Pro Trial, it fails. The first time I tried uninstalling it, the uninstall process hung for over two hours, so terminated it and restarted my PC. During the second attempt, the uninstall failed because an .msi file was missing. I tried to re-install the product (VS Pro Trial) in order to get all the files back, but I was unable because the previous install ...Show All

  • Visual Studio 2008 (Pre-release) Setting the Via for MetadataExchangeClient

    I am experimenting with using the MetadataExchangeClient class to get device profile information from a device. To do this, I need to have a uuid in the To: address, yet send the message to different physical address. I think I can do this with a normal client by setting the Via (although I have not tried that yet). Is there anyway to do this for MetadataExchangeClient Thanks for your time. Kevin You are correct that the key thing is to specify a Via that is different from the (To) EndpointAddress. It is a shame that this isn't easier, but the code below will work. The only way to 'get at the Via' from MetadataExchangeClient is to override the ChannelFactory it uses so that the factory will contribute the Via. Below is a cod ...Show All

  • SQL Server Drives in a cluster environment

    Hi, I have a SAN and configuring a cluster on SQL 2005. I initially created a Quorum drive when setting up the cluster and now added 4 more drives to the physical node but when I try to install SQL that drive cannot be located. Do we need to create all the drives when installing the cluster or what is the way to add the drives later on. Thanks Anup Thanks All. With some troubleshooting and tips from this forums the cluster is up and running with SQL 2005. However I do not understand whi we need a seperate drive for MSDTC cant we share the quorum drive to do this. Can you explain how to size this like perf issues, disks needed etc. Thanks ...Show All

  • Visual Basic changing the color of one character

    Is there a way to have someone type a sentence into a textbox in black text, and to change all of the letters "e" to blue I would want the letter "e" to change AS they type. Thank you. That is not possible in a textbox. You need to use a rich texbox instead. Here is an example ...Show All

  • Windows Forms how to use picturebox

    Hi! I have a question that how to use picturebox. If I want to load pictures from a file. My reference says something like; pictureBox1.Image = Image.FromFile( ); What would it be after FromFile Should I put file address of the pictures Thank you for help. Problem mitigated. Turns out the Access DB I was using was giving problems in the way it was handling the image. I rebuilt my DB using SQL Server and everything works fine. Thanks. ...Show All

  • Software Development for Windows Vista StateMachineWorkflowInstance ASP.NET error

    I am attempting to use State Machine with ASP.NET. I am using StateMachineWorkflowInstance to get information about the active State when the ASP.NET page is initialized and again just before it renders. Placing CallExternalMethod activites in the Initialization activities causes me to get an exception when I try to get a StateMachineWorkflowInstance . Workflow with id "fea28637-6d1f-4244-a560-6f49084f3a53" not found in state persistence store. The error shows up when I handle an event in a State that then executes a SetState and the new State has an Initializer with a CallExternalMethod. From my 1st to my 2nd state this does not appear to be a problem, but from state 2 to state 3 it is not working and I get the except ...Show All

©2008 Software Development Network