Software Development Network Logo
  • Visual Studio
  • Game Technologies
  • Smart Device
  • Windows Forms
  • Architecture
  • SQL Server
  • Visual FoxPro
  • Windows Vista
  • .NET Development
  • Microsoft ISV
  • Visual J#
  • VS Express Editions
  • Windows Live
  • Visual C++
  • Visual C#

Software Development Network >> Alistair Peterson's Q&A profile

Alistair Peterson

Member List

snowjoe
eroh92
LukeB
Thomanji
Brewmeister P
Kiumo
MariusVE
RichardWard
diavolo
Klaus Leithner
ch_cu
Pavel S. Kozlov
pccoder
rusi
PiratSS
Creative
Larry Beck
Land
Toni Leitao - MS
Varun Gupta
Only Title

Alistair Peterson's Q&A profile

  • Visual C++ Compiling fftw - what flags should I use for best performance?

    Greetings, I have compiled the fftw fft package from www.fftw.org  using the Visual C++ 2005 Express Edition beta 2 but I can`t seem to find a good choice of flags for optimizing the code. As I run the benchmark code that comes with the package I get slower performance with msvc than if I compile with gcc 3.3.3 under cygwin which seems strange because I usually see the opposite behavior. Has anyone else tried to compile this package with th ...Show All

  • Visual Basic multiple passwords

    Hi everyone, I'm an absolute beginner with Visual basic.  I learned of its existence today, so that should tell you something. Now I'm trying to make a little quiz, and I've run into a problem. At some point I ask the ones taking the quiz to give me their name. So far so good. what I've got goes like this: If Name <> "Annie" Then    MsgBox "I don't recognise you. Goodbye."    End End ...Show All

  • Visual C++ Dependency checker for 64-bit executables

    Hello, I am adapting a product from 32-bit to 64-bit.  The application is written in C and C++ with MFC and ATL code. At present I am able to execute my 64-bit compiled code on a 64-bit system as long as I have a copy of VS 2005 installed on that server.  I have been trying to help our Installation designer determine which of the VS redistributable merge modules are needed to install on a "clean" (one with out VS installed) system. The ...Show All

  • Software Development for Windows Vista How to render video using AudioVideoPlayback in Managed DirectX window

    I am using managed DirectX's CustomUI to develop an interface for project for school. I have the interface all setup and figured out how it works, my next addition is when I click a button it will clear the screen then play a video. Now I found some code that uses Microsoft.DirectX.AudioVideoPlayback. I would like to use this if possible because it is very simple. Now my problem is I am not sure how to setup the video device so it targets ...Show All

  • .NET Development Dumping contents of memory to a file

    I can easily identify a process and it's associated threads, memory usage, private bytes, etc.  What I'd like to do is dump that process to a file ( the whole thing, as it is in memory ).  Or at a minimum be able to view what's in that process.  I'm using C#, and the Process class in System.Diagnostics.  Anyone have suggestions on how to get access to what exactly is in the memory of the process I want to access ...Show All

  • SQL Server SQL Server 2000 Service Pack 4

    Hello All, I am thinking of upgrading from SP3a to SP4.  It states on the Microsoft site that "SQL Server 2000 SP4 adds platform support for Microsoft Windows Server 2003 x64" It then adds that SP4 addresses specific issues discovered in SQL server 2000 since its ship date. My question is: Is it worth installing on Windows Server 2003 Enterprise which already has SP3a on it   Will it do anything, as Windows Server 2003 Enterprise is n ...Show All

  • Windows Forms Installation Failure

    Hi, When I try to install the source code I am getting the following errror. WindowsNT or User Group 'machine name-\ASPNET' not found. Check the name and try again Changed database context to TaskVision Granted database access to 'machine-name\ASPNET' I am installing t ...Show All

  • Visual C# Aborting and Managing Threads: The Dog or the Cat?

    Newbie here .... thanks in advance for your patience. I'm working w/ C# Visual Studio 2005 I've read up on all the comments about problems w/ aborting and suspending/resuming threads.  Lots of things to consider.  Looks kinda ugly on all fronts.  Note that I'm not thinking of using suspend and resume to synchronize threads.  I would like to just pause and then restart a particular thread from where it left off.  Wo ...Show All

  • Visual C# problem with richtextbox

    Hi I'm writing an IRC Client, but i have a problem with RichTextBox. I'm using AppendText() method of RichTextBox class but it isn't append the text in the box. The form have one button too and and i use click event for append "Connecting to server" and it append in the RichTextBox but the message from IRC server it isn't append. I don't know where is the problem... Sorry for my english ... How ...Show All

  • SQL Server How do I extract data from selected rows from my excel source file?

    The columns in my excel source contain data of different types with the column name being a string and the data in those columns being integers. Is there any way to only extract numeric data , in short I want column names to be omitted. Also the data is distributed unevenly , beggining at various rows in each column. Thanking in advance :) ...Show All

  • Visual C++ the end of binary file

    Hi all, I'm using fstream object to read a binary file, but I don't know if it reachs the end of the file, because the eof() function doesn't work for binary files. I always read one more time from the file. That is to say, if I just write one int value to the file, and then I read it. but as a result, I entered the following loop two times. I know the read() fuction consider EOF as a valid content, but I have no&nb ...Show All

  • Visual Studio Express Editions keypress......please help

    hi guys I have asked this question before with no satisfactory response....... can anyone please explain this to me ........................................................................ I am making a simple animation in vb express.............yes...I know vb is not ideal for game making...but I dont know c++ or c sharp..........so I am stuck with vb.... my problem is this.... when I press a key to move a graphic everythin ...Show All

  • Visual C++ TextOut() and LPCWSTR

    in win32 project i have a code: char buffer[80]; static int wm_paint_count=0; . . . case WM_PAINT: hdc = BeginPaint(hWnd, &ps); SetTextColor(hdc, RGB(0,0,255)); SetBkColor(hdc, RGB(0,0,0)); SetBkMode(hdc, OPAQUE); sprintf(buffer, "WM_PAINT called %d times. " , ++wm_paint_count); TextOut(hdc, 0,0, (LPCWSTR)buffer, strlen(buffer)); EndPaint(hWnd, &ps); break ; When i run ...Show All

  • SQL Server Annoying behavior in report designer

    I have a report with a complex dataset query that involves a temp table. Anytime I make a change to that query and save or change tabs, I get this message: Could not generate a list of fields for the query. Invalid object name #[temp table name]. (Error 208) Fair enough, but the real nuisance is that every time this happens it erases all of the dataset parameters I have previously set up. I have to redefine them every time. I hope this ...Show All

  • Visual Basic Enumerate class properties?

    Hi I simply want to display the values of all my properties in my class without having to reference each one. Is this possible without adding all my properties to a collection i.e. can I do something like for each p as property in myclass debug.print(p.value) next property Thanks in advance Jon You can get information about object in .NET using Reflection. For example, put the following code in the click ...Show All

©2008 Software Development Network

powered by phorum