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

Software Development Network >> JohanNL's Q&A profile

JohanNL

Member List

Daticus
Soumya B
NLC4241
redshock
Ofir Epstein
Markmar11
Minherz
npiacentine
satya31237
Dace86
yanivpinhas
Gonzow0815
moondaddy
johnb01
rajitha aththanayake
Tim Mostad
osamaT
Juvraj
jackwc
curiousss
Only Title

JohanNL's Q&A profile

  • SQL Server Moving RS 2005 Reports to new server

    Hi Guru, Currently, we are running our RS 2005 reports on our old hardware and wanted to move them to better server where I’ll be building it tomorrow. On the existing server, we installed both database and reporting services running on the same box but I’m ONLY planning to install reporting service on the new server. What are the options to move RDL, shared data sources, shared schedules, jobs to the new server I heard people talked about backing up and restore both ReportServer and ReportServerTempdb databases to the new server would do it. How can I restore or attach these two dbs to new server when we don’t plan to install database services on it Please help! Thanks, Silaphet, ...Show All

  • .NET Development Process.BeginOutputReadLine() just fires events all at once, not in real-time!

    I am using System.Diagnostics.Process to read from a command-line program asynchronously using BeginOutputReadLine(). It works, but all the events don't seem to be firing in real-time at all (It seems to just draw them all in 2 big chunks after the process is almost finished. public void Convert( ) { Process encoder = new Process (); encoder.StartInfo.FileName = "neroAacEnc.exe" ; encoder.StartInfo.UseShellExecute = false ; encoder.StartInfo.CreateNoWindow = true ; encoder.StartInfo.RedirectStandardOutput = true ; encoder.OutputDataReceived += new DataReceivedEventHandler (encoder_OutputDataReceived); encoder.Start(); encoder.BeginOutputReadLine(); encoder.WaitForExit(); } void encod ...Show All

  • Visual Studio SP1 for VS2005 doesn't update VSS2005, although it should.

    According to http://support.microsoft.com/kb/918526/ several fixes for Visual Source Safe 2005 should be included in Sp1 for VS 2005. But after installing the Sp1 I still have the RTM files of VSS 2005. What went wrong while installing SP1 I have use this utility http://blogs.msdn.com/heaths/articles/pab.aspx write to view the content and state of single product patched by vs2005 sp1 to open the files of msp i have used Installshield 11 Professional msp wizzard , but you need the rtm msi of vs2005 ... Marco ...Show All

  • Visual Studio Express Editions Paint Problem at MDIChild at Opening at Startup in Maximized State

    Hi guyz, I have one MDI form and one MDI Child. Both form's property windowsstate=maximized. When MDI form loads, its child forms load at the load event of MDI. But, It not paints that child form properly to maximized area. there is border appears of that child forms without title. Once we minimize that bad painted form and again maximize it. it works fine.. So, why its doing problem at startup in maximized mode I've just transfered my winapp from Vs2005 Beta to Vs2005 express can anyone tell me.. please   is it a BUG of VS2005 Express It sounds like it could be a bug, although I can't reproduce it on my machine. Does this happen consistently, or just in one application If you create a new MDI app, can you reproduce it - Ste ...Show All

  • SQL Server Need help to create this named set

    I have a "Date" dimension with several attributes in it such as "Accound Period", "Calendar Year", "Completed Year"etc. I want to create a "named set" for some dataset to filter out the "Calendar Year" which has the value "Less than or equal to" the value of the attribute "Completed Year". The structure for the "Date" dimension is as follows: Calendar Year (attribute) Members Calendar Year------member Properties Completed Year (attribure) Members Completed Year------member Properties It has only a single value for the "Completed Year" and it was calculated in the data source view using "getdate() -2" ie. 2005 for the entire attribute. How to create a named set to filter out the Calendar Year with this Thanks ...Show All

  • Windows Search Technologies limit on number of files indexed?

    What is the limit on the # of files indexed My count for # of items indexed (in wds v2.6.5) never exceeds about 11% of my actual file count. (164,832 indexed of 1,500,000 actual files) Yes, I'm selecting all file/drives to index against. Yes, I've rebuilt the index more than once. I'm guessing that for folks here thinking of indexing their entire business' file sets, be they on servers or local, the index has to scale well beyond anything I've seen so far, and yet... Thanks Hello SpeedNut, The WDS index should easily handle well over one million files (though the index will obviously grow fairly large). There could be several reasons that you're index is not going up over the apprx 170k items. ...Show All

  • Windows Forms how to put this...please helpme ..

    hi all may be my question ll be easy for u but please tell me how to do this .. i having a grid view in my page .. am using select query and gettin the executed query in dataset and binding the gridview with this dataset i want to add a edit button at the end of the each row in gridview please tell me how to do this and how to call that editbutton for the code if i click on editing i should get tat window as like default edit comes with the gridview how to do this please help me out When you say 'page', is it a form, or a web page If it's a web page, you should ask at www.asp.net , ASP.NET questions are off topic here. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. So how does this (non)commercial business work?

    Can anyone please enlighten me on how this all will work. How I see it, there are two points for having XNA. 1. To let gamers make Xbox 360 non-commercial games freely to play on their own consoles. 2. To let gamers make Xbox 360 commercial games that they may transfer over live. But can we sell these games & start a business And where do our limits end & then begin again with Pro I have been trying to start a video game business for years now, working with teams and software, and Microsoft XNA can be a new pedestal for my team and business.   Thanks in advance. C# 2005 Express Goto http://msdn.microsoft.com/vstudio/express/visualcsharp/ and download it :) have fun w ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Deleting a line of text in a text file.

    I am trying to delete each entry of the text file below, one at a time, after it has been used. I quess you can say I am trying to use an old "push and pop" method. I have 9 variables I want to fill from the text file, then I want each variable cleared to receive the rest of the text from the file. Is there a way to do this in VB.net 4 113 2 A1455 00320 025 1819 122006 155 4 112 2 E1569 00425 030 1816 122006 145 line1 = sr.ReadLine() line2 = sr.ReadLine() line3 = sr.ReadLine() line4 = sr.ReadLine() line5 = sr.ReadLine() line6 = sr.ReadLine() line7 = sr.ReadLine() line8 = sr.ReadLine() line9 = sr.ReadLine() try this: -Create the Full String ( 4 113 2 A1455 00320 025 1819 122006 155 4 ...Show All

  • SQL Server Executing a whole container in one transaction

    Hello all, I am trying to build a package running a container that includes several tasks: 2 Execute SQL tasks and a data flow task. I would like to execute this container in a single transaction, which means that if any of the tasks fail, no changes are been made by the container execution. To achieve this, I have followed the instructions of how to configure the DTC on the server and locally, and set the container's TransactionOption Property to "Required". The problem I encounters is that when using a dataflow task in the container, the running process runs OK until it reaches the dataflow task, then it just gets stuck (marking the task in yellow). When removing the dataflow task, left with only Execute SQL ...Show All

  • .NET Development How to set a File's Version Info

    Hello, I know the System.Diagnostics.FileVersionInfo class which works fine. Now I need a method to set the FileVersion, not only read. Is there a possibility with plain .Net 2.0 Thanks Sven There's no support for that in the framework. It's not easy to do at all. The only API Microsoft provide for changing native resources (which is how the version info is stored, as a VS_VERSIONINFO resource) is the BeginUpdateResource and related functions. But that still requires you to know the detail on how the information is stored. ...Show All

  • Visual Studio Express Editions Making transparant border

    Hi Folks, I'm working at a internet radio player, but i could use a little help making a white border of 6px thick and a transparancy of 36%, around the application. Can somebody help me with this Thnx. Geoffrey The win32 dev newsgroups at http://msdn.microsoft.com/newsgroups is a proper place for such an issue. Folks there might be more familiar with similar issues. OTP Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual C# Probability Math Function in c#

    Hi i am make a class that need some math function about probability (like combination and permutation ...). I have a look in math class but there isn't any fuction like that. Where i can find a reference for it Does C# have something build in already so we can use like Java Thanks a lot for your help Probability is a pretty vast area, so you're going to have to be more specific about what you're looking for. Could you name some of the Java functions you've been using, and for which you want C# equivalents ...Show All

  • Visual C# Get window handle

    Hi All, Is there any possibility of getting the handles of all windows which are present in the taskbar. I need to track down which window is being closed and display a message stating the file name of the closed window. You want to get all the system processes and iterate through them checking the Process.MainWindowTitle if the string is empty then the process *probably* doesn't have a visible window. This code will fill a List of all the handles: Process [] processes = Process .GetProcesses(); List < IntPtr > windowHandles = new List < IntPtr >(); foreach ( Process process in processes) { if (process.MainWindowTitle != string .Empty) { windowHandles.Add(process.H ...Show All

  • Visual C++ Multiple Compilation

    I have a class defined in a header, for example Node root;, but when I compile and link I recieve a link error, saying it has already been defined. To get rid of this I placed #pragma once at the top of the header, to no effect. I then replaced it with #ifndef DIRECTXSCENE #define DIRECTXSCENE 10 and then at the bottom: #endif This did nothing either. Any suggestions Mike Sorry, here is my header file #pragma once #ifndef DIRECTXSCENE #define DIRECTXSCENE 10 #include "stdafx.h" #include <d3d9.h> bool InitScene ( HWND hWnd); DWORD WINAPI ThreadProc( LPVOID lpParameter ); bool BeginRendering (); HRESULT InitializeInterface( HWND hWnd ); void CubePrim ...Show All

©2008 Software Development Network