Software Development Network Logo
  • VS Express Editions
  • Visual J#
  • Visual Studio
  • Microsoft ISV
  • Windows Forms
  • Visual C#
  • VS Team System
  • Visual C++
  • Game Technologies
  • SQL Server
  • Windows Vista
  • Architecture
  • Visual FoxPro
  • Visual Basic
  • Windows Live

Software Development Network >> Vicé's Q&A profile

Vicé

Member List

Adama
Thogek
ghostd0g_
fakher
Jared Wennstrom
Nxbber
Kamol Murodov
double_detente
Mattias Jonsson
Sailu
ChrisHanMSFT
Helder Magalhaes
Paul Chin
r17158
rw72000
Sandhya7
Santos Raphael
TundraNerd
wufei
shapij
Only Title

Vicé's Q&A profile

  • Windows Forms Moving images fluently

    I am looking for technique which allows to fluently move several images over the form without using DirectX & Open GL. Several images should be moved simultaneously but with different speed. Also one more feature: I should be able to change their (moved images) opacity during moving. Does anybody know good algorithm (or may be article, example, link) to implement these features In the absence of DirectX, yo ...Show All

  • Visual Studio Team System Team Foundation Server & 64-Bit Install or DT Install

    Hello Everyone, I have read in the install guide that Team Foundation Server will not install on server that has a 64-bit version of Windows Server 2003 installed. When will this be supported If anything, can the TFS Data Tier be installed on a 64-bit server that has SQL Server 2005 64-bit installed on it Thanks for the info... Ed B. see: http://blogs.msdn.com/robcaron/486302.aspx ...Show All

  • Visual Basic Desktop app needs data from web server

    Hello everyone, I have a desktop app that needs to grab some data from a table on a web server as well as grab the date/time from the web server. I have looked into using a web service to accomplish this but I'm not sure if there is a different or more efficient way to do this. I'm also having trouble finding a good tutorial for setting up a basic webservice that a desktop app can connect to and utilize so if someone could point me to ...Show All

  • Visual C++ Again on: How to solve .__dtor link error in MS VC++.net 2003 for codes that work in VC++ V6?

    Hi, Seems that my post on "How to solve .__dtor link error in MS VC++.net 2003 for codes that work in VC++ V6 " was lost. Here is it roughly again ================================================= I downloaded some open source c++ code from http://www.coin-or.org/ In the MS Visual C++ .NEt 2003, I set up a project (TestCLP5) with a file with  int main ( int argc, const char *argv[]) Then, On the tools\options dialog window, I&n ...Show All

  • .NET Development uploading images onto an SQL database through ASP page

    Laptop Spec: XP Pro Programming languages: ASP.NET, C#, SQL Server sorry again for consecutive posts, I'm new to all of this. I am trying to create an aspx page with a user interface that will allow me to insert an mp3 file onto my database. The code I have currently is: ------------------------------------------------------------------------------------------------------------------------------------------------- ...Show All

  • SQL Server SQL Server 2005 has shipped!

    This morning at 9 AM in shiproom, we did official signoffs for SQL Server 2005! SQL Server 2005 is in the bag! Congratulations ! I am eager to get it going. Does it require to uninstall June CTP / Sept CTP before installation thanks, Nitesh ...Show All

  • Visual C++ int thisarray[19][14] in a class derived from cobject

    I'm using VC++ 6.0 sp6 and I'm trying to create a class:public CObject If I declare an int array it crashes the wiz created SDI program, am I forced to use MFC CArray or CList What causes this Thanks in adv.!! I think I see the problem, I was thinking [19][14] meant [0..19][0..14] and really it means 19 elements for [0..18] and 14 elements for [0..13] I was trying to initialize the array ...Show All

  • SQL Server How to integrate reporting services with ASP.Net

    Hi My current situation is how to integrate my application written in asp.net to link to my report server's report  as by default anonymous user can access my report server's report without any authentication. how to configure to make the report server by using form authentication before access the reports  My Application Configuration Web application (Vb.Net) - http://192.168.1.18/mobiFO   Reporting services - ht ...Show All

  • .NET Development CPU problems in a .NET COM+ application

    Hi,  I have a COM+ application developed in C# which is based on Microsoft Exchange Store Events. The application is using asynchronous save event to extract each e-mail fields and base on these fields add a "special tag" to the e-mail. The COM+ application is extracting the fields and sends them to another application which runs on another computer. This application analyzes the content of the fields and is returning the "special tag" f ...Show All

  • Windows Forms how can i close a form from another form?

    for example: Form1 loads first and when I click a button Form2 will display. What I want to do is to close Form1 which is the startup form when I exit Form2. How do I do that Hi, I've been looking for a solution to this for a while and have never even got near. Your solution is the first I've seen that doesn't involve writing code the size of 'War and Peace', (oh yeah, AND it works!!),so would you mind if I picked your brains a bit furt ...Show All

  • Visual C# Nullable Value and Generic

    I want to mark a generic class to support nullable value.  The following is my class public class DataField<T> where T:System.Nullable<T> {     public T Value; }   But it can't.  Why Please help me.... 1. string  is not actually valid. Nullable<T> has a struct constraint so only value types can be used with Nullable<T>. As far as I'm aware there is no way to use constrain ...Show All

  • .NET Development Error with serialPort class

    I'm having problems with configuring my serial port object. I'm trying to communicate with a PIC18F458 and I have declared my serial port in the program as: serialPort = new System.IO.Ports.SerialPort("COM1", 19230); But when I run the code, I keep getting the error: A first chance exception of type 'System.IO.IOException' occurred in System.dll And when I display the error message, I get this: Error: The parameter is incorrect. ...Show All

  • Visual Studio Team System Strange exception when running tests

    When I tried to run my tests I have this strange error: Managed Debugging Assistant 'LoadFromContext' has detected a problem in 'C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\vstesthost.exe'. Additional Information: The assembly named 'Microsoft.VisualStudio.QualityTools.ExecutionCommon' was loaded from 'file:///C:/Program Files/Microsoft Visual Studio 8/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.QualityTools.ExecutionCommon. ...Show All

  • Visual C# Files on servers

    Hi, Asume that an ASCII text file exists on a server, I know the path, for instance http://www...../file.txt and I have the Read access for this file. How have I to enter the path Thanks for your answers, Valentin WebClient client = new WebClient(); using (Stream responseStream = client.OpenRead( "http://www.mydomain.com/file.txt" )) using(StreamReader reader = new StreamReader( resp ...Show All

  • Visual Studio Tools for Office Outlook calendar sync

    Is there anyway to synchronize Outlook calendar with an ASP.Net page or Web Service that brings data from the database Juliano, You can create a Web service that Outlook syncs to in order to display data in and Outlook calendar. In fact, we have an article with a full-blown sample on MSDN. My colleague, Stephen Toub, wrote this one, and the code is ready for download. In essence, you create your service to implement the SOAP calls with XML ...Show All

©2008 Software Development Network

powered by phorum