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

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

prk

Member List

Alexie1668
Vaish
Enkht
scdlewis
Feliner
Indigo Cowboy
Koruyucu
Flegg
Febin
Forch
Ralf_from_Europe
georgeob
Marcos B
Bruno N. Souza
ChrisKinsman
vs2003team
Detisch
Mathieu DESPRIEE
baobab
FredHeida
Only Title

prk's Q&A profile

  • SQL Server Trying to Transpose and Collapse Data...

    I'm relatively new to this, so bear with me here.  (SQL Server 2005 Express, Datatypes are all varchar, int or money, nothing crazy...) I currently have a table (not designed by me...) which looks like this: ProjectID            Months           Expenses 3214                JAN                    45.67 3214                 MAR       & ...Show All

  • Windows Forms Need advice designing Navigation system.

    Hello all, We currently have an old Access app that I am currently planning to convert to a VB.NET windows forms app. The navigation design of this Access "Switch Board" form is way too drawn out. It is made up of nothing but buttons in the middle of the form to show more buttons (if sub-drilling) or to open a form. Well, sometimes it takes 5 or 6 click throughs to get to the form I want to display. About 10 employees here use this system and are semi-happy with the existing navigation. Well I hate it. I look at it as if a new person came on-board, could they easily navigate through all those buttons. So now I wanna redesign the navigation to suit the existing users and be simple enough for new comers to navigate with ease. Are t ...Show All

  • Software Development for Windows Vista VIDEOINFOHEADER does not update image dimensions

    I have some DirectShow code that loads video clips and plays them onto OpenGL textures. The problem I have is that the VIDEOINFOHEADER returned from the SampleGrabber does not update the bmiHeader.biWidth when changing from a 640x480 to a 720x480 clip. I release the SampleGrabber and all DS filters before rebuilding the chain and clear out the AM_MEDIA_TYPE structs before calling the SampleGrabber's GetConnectedMediaType method. I have the Windows Server 2003 SP1 Platform SDK, have built the DS samples as debug and develop on XP SP2. Any insight into this problem would be greatly appreciated. This may actually be a codec specific problem. I'm using ffdshow for MJPEG decompression and it has this problem. ...Show All

  • Visual Basic Shrinking a file

    Hi, I have a long file, and I want to make it smaller. How can I do it zip it http://www.winzip.com/ if you mean in code with API, then http://www.sharpziplib.com/ else shell to a command line or http://www.7-zip.org/ endif ...Show All

  • Windows Forms How do I set a DataGrid View

    I am building a Windows Form, using C# The Dialog box I am working on is a Mini Search Function. The user types into a txtbox, then the script will look in the MSQL db, to find where all products are like the txtbox The code I have so far is SqlConnection conn = new SqlConnection(@"MyConnectionHere"); SqlCommand cmd = new SqlCommand("Select * FROM tbl1 WHERE Nombre LIKE '%"+txtSearch.Text+"%'", conn); conn.Open(); SqlDataReader rdr = cmd.ExecuteReader(); if(rdr.Read() == true){ MessageBox.Show("Here I will add the results into the DataGrid", "Next Step", MessageBoxButtons.OK); }else{ MessageBox.Show("I am afraid there are no products where where the product name is like\n ...Show All

  • Windows Live Developer Forums More info on Error code: -100996

    I am getting error code -100996 when adding a new order. The adcenterapi.chm file describes the error code as : (Can not create P4P order for the manual prebilled accounts. A P4P order for the manual prebilled accounts cannot be created). I couldn't find any info on the terms P4P and prebilled accounts. Kindly elaborate on this error. Also direct me to any other documentation on adcenter API apart from the chm file. Thanks Hi Sudhir, P4P, aka PFP, is Pay for Performance, which refers to keyword marketing based on the cost-per-click billing method. For this to work with your account, your account needs to be set up for monthly invoicing. If you are experiencing this issue in the production environment, please work with your Searc ...Show All

  • Visual Studio Tools for Office problems with deployment of VSTO 2005 Excel application

    I have created a VSTO 2005 Excel application. If I deploy it to the computer where VSTO 2005 development systems is installed the application works as designed. If I install it on another client (or under VPC2004 on the development computer) the setup routine is working without problems. When I start the application I get this problems: If I doubleclick the Excel file Excel starts, the workbook will load, after this the whole Excel will hang (hour glass). There is no error message or something else. The Microsoft VSTO client troubleshooter will show that all needed bascis are installed correctly. Who has a help I am closing this thread due to inactivity. If this is still an issue please open another thread. Regards, Dar ...Show All

  • Visual Studio Express Editions Setting up OpenGL with Visual C++ 2005

    Okay, so basically I tried to write a simple OpenGL program in Visual C++. I'm using the Win32 Application Template, and I have everything linked correctly. However, when I try to run the program, I get many compile errors. This is my first experience with OpenGL (not with C++, though), and I copied a sample program from a book. #include <gl\glut.h> #include "stdafx.h" void Initialize(); void MouseHandler(int button, int state, int x, int y); void KeyboardHandler(unsigned char key, int x, int y); void MainMenuHandler(int option); void Animate(); void Reshape(int width, int height); void Display(); /**************************************************************************** main() Setup GLUT and OpenGL, drop into the event loop *** ...Show All

  • Visual C++ Errors of LINKER

    When I use a CWaveFile class and declaring an instance under a button1_Click event as example I have Linker's errors,and I include all requirements of using this class, if you want the code tell me at my email: aimnour@yahoo.com. The Linker's errors are: Error 1 error LNK2028: unresolved token (0A00000E) "public: __clrcall CWaveFile::~CWaveFile(void)" ( 1CWaveFile@@$$FQAM@XZ ) referenced in function "private: void __clrcall Capture1::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" ( button1_Click@Form1@Capture1@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z ) Capture.obj Error 2 error LNK2028: unresolved token (0A00000F) "public: __clrcall CWaveFile::CWaveFile(void)" ( 0CWave ...Show All

  • Visual Studio 2008 (Pre-release) Can I pass other objects to a MediaElement than files (jpg, wmv) ?

    Hi, I’d like to pass a memory stored object like a ByteArray containing the data of a wmv video to a MediaElemt. How can I do that Can I set the source property to a memory object Or is there a generic video object that raw video data (the in memory representation of a wmv video file) can be passed to and assigned dynamically to a MediaElemnt Or is there a completely different method of achieving this One more question: Is it vice versa possible to extract data (the video stream) from a MediaElement and store it into a memory object (like a bytearray) Please help me with this! Any suggestion would be essential aid to me. Thanks and regards, Immanuel Unfortunately this isn't supported (in MediaElement) i ...Show All

  • Visual Studio Express Editions Your &£%"£$%"£ site doesn't accept my email!!! GRRRRRRRRRRRRRRRRR

    Microsoft sites are very very complicated!!! You are driving me crazy!!! The procedure to obtain a key for the software installed DOESN'T WORK GRRRRRRRRRRRRRRRRRR!!!! I insert my email but the web page says that it is invalid. Are you stupid It's not invalid! Also because I just used to register a microsoft passport access. I tried with another justfotspam email and it says email invalid. ***! All this is very.... grrrrr complicated!!!!!!!!!!!! I would like to write in my language to be sure to use the right bad words and insults to describe all I'm thinking of your register procedure!!!!!!!!!!!! This site is for peer to peer help, although some Microsofties do post here. Either wa ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where does Console.WriteLine() go to on 360?

    Probably a setup problem, but I can't seem to get any text sent to Console.WriteLine() to appear in the output window in GSE, when running the app on my 360. Anyone else managed to get this working Andy. Adam Miles wrote: System.Diagnostics. Debug .WriteLine( "Hello, world" ); Thank you Adam, I didn't think it would be hard to do! ...Show All

  • Visual Studio Team System TFSWarehouse

    Hello Guys, I have to do Dual server deployment of Team Foundation Server. I have deployed the Database Tier successfully on one server. The problem is I cannot find TFSWarehouse database installed on it. Neither could I find the TFSScheduler. Will the this database be installed after I setup the Application Tier on another server. Thanks in advance. Hello Sudhir, Thanks for your help. No i dont think the setup failed and Analysis service is installed on the machine. The following databases are installed :- STS_Config_TFS STS_Content_TFS TFSActivityLogging TfsBuild TfsIntegration TfsVersionControl TfsWorkItemTracking TfsWorkItemTrackingAttachments So, I think only TFSWarehouse is not ...Show All

  • Smart Device Development Problem with an existing connection was forcibly closed by the remote host

    Hi, I got a very strange problem on WM5. My code works fine on PC2002, PC2003, .NET1.1 (WinXP) but it does not on WM5. The code works fine when I query a web-site that respondes with Keep-Alive tag and it doesn't work when a web-site respondes with Proxy-Connection : Close. The code is very simple - it accepts connections and for each connection creates two sockets, one is accepted socket and the other soket is to a proxy server. Then the code just passes queries-responses between browser on PDA and the proxy server. There are 2 threads per connection, one thread reads from browser and writes to my proxy server, another thread reads from the proxy and writes to the browser. I have removed all unnecessary code t ...Show All

  • Windows Forms Framework and Windows Installer not present

    I am deploying a project on a large number of user machines. On a W2K machine, when I tested the MSI, it of course, did not have the Framework or the correct version of Windows Installer. But I did get the expected error messages. So I am going to issue install instructions that state the order of install is to first install these two items, and then install the application. Do any of you do anything different Ok, that's a nice feature. Unfortunataly, it doesn't work. I don't know if it works on XP machines. But it does not work at all on W2K machines. ...Show All

©2008 Software Development Network