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

Software Development Network >> ACCOUNTINGONLINE.US's Q&A profile

ACCOUNTINGONLINE.US

Member List

PeteJM01
charret
MaggieChan
C!77LVR
Jessica Fisher
pure159112
capitapicard
Suneel VLN
RTS4ME
wwwxwww
Johan Overbye
Ashneet
Fox Me Up
spacelord
friendz
daph4ntom
Aleniko29139
andrewness
boulder_bum
IceAngel89
Only Title

ACCOUNTINGONLINE.US's Q&A profile

  • Visual C++ Error result 1 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\rc.exe'

    I am trying to build a Visual Studio 2005 C++ application, but I keep getting this error whenever I do a build in debug mode. Any suggestions as to what to look for Is there something I should change in Tools/Options/Projects and Solutions/VC++ Directories My Path environment variable Thanks, Shelley In this thread the solution seemed to suggest that replacing "C:\" with "C:\\" for the last path in the VC++ Includes directories. I did this and it had no effect, I still get the same build error. Does this need to be done somewhere else also Do all the "\" need to be replaced by "\\" in those paths or just the first occurrance ...Show All

  • Smart Device Development Setting the parent of a form raises exception in NET CF 2.0

    Hello, I just ported an application from NET CF 1.0 to NET CF 2.0 (SP1) and I get the error System.ArgumentException: Value does not fall within the expected range. at Microsoft.AGL.Common.MISC.HandleAr() at System.Windows.Forms.Control._SetParent() at System.Windows.Forms.Control.set_Parent() at com.incahellas.FormHelper.PrepareForm() at com.incahellas.FormHelper.ShowForm() at pocketerp.Form1.MainWorkA() at pocketerp.Form1.set_Func() at pocketerp.Form1.Form1_Load() at System.Windows.Forms.Form.OnLoad() at System.Windows.Forms.Form._SetVisibleNotify() at System.Windows.Forms.Control.set_Visible() at System.Windows.Forms.Application.Run() at pocketerp.MainClass.Main() } whenever I try to set the parent of a form. Does anybody kn ...Show All

  • Windows Forms --to attach a particular column to datagridview

    Hi, Is it possible to attach a particular column ( all row values) from a datatable to the datagridview control. thanks, Venp Hi,venp You can achieve it in this way: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form22 : Form { public Form22() { InitializeComponent(); } private void Form22_Load( object sender, EventArgs e) { DataTable Ta = new DataTable (); Ta.Columns.Add( "ID" , typeof ( Int32 )); ...Show All

  • SharePoint Products and Technologies Loading from Project Server

    Hi Is it possible to load data from Project Server or Portfolio Server using the BDC Thanks, Mystique Yes, it's quite simple. You can access the SQL database of the project server and fetch a list of projects. Because ProjectServer use GUIDs as ID I had to transform the IDs in System.String (and not System.Guid). bye, David ...Show All

  • Visual C++ Bug: VC++ fails to instantiate static data member in template class

    This code fails to compile on VC++ 2005, failing with error LNK2001: unresolved external symbol "protected: static unsigned int Foo<unsigned int>::a_static" #include <vector> #include <algorithm> template<typename T> class Foo { protected: static T a_static; }; template<typename T> T Foo<T>::a_static; template<typename T> class Bar : public Foo<T> { public: T f() { return this->a_static; } }; template<typename T> struct Functor { Functor(T const& t) : t_(t) {} int operator()() { return t_.f(); } private: T t_; }; template<typename T> Functor<T> functor(const T &t) { return Functor<T>(t); } int main() { std::vector<int> v(100 ...Show All

  • .NET Development PKCS #8 DER Key file

    Hi everyone Im developing an application for Digital Invoices. Our goverment gave us for developing/testing purposes a certificate, a private key file and a password for private key file. I can open the certificate using X509 in .NET 2.0. The problem is the private key needed for RSA encryption because the certificate doesnt include the private key and its provided separated in a file that is PKCS #8 DER and password protected (supossed to use the password given). I dont know/found how to open the key file and use it as RSAParameters. Please help!!! Thanks in advance... ...Show All

  • .NET Development update a table with a dataset with C#

    i am trying to find a way to update a database using one dataset and one open connection...meaning i have a large number of records that i want to insert into a table in my database and i don't want to loop through and insert one at a time...i looked around and found a way to first get a dataset from a table, then add records to this dataset, and then use the dataAdapter.update method to update the records in the database....this should suppodadly work, but it is not....here is my code first i have a method to retrieve data from a table and put it in a dataset, next i have a method to update the database public int Update( DataSet ds) { int xy = 5; try { this .oleConnection.Open(); this .oleCommand.Comman ...Show All

  • Visual Studio Team System Team System Warehouse Problems

    Hello, About five days ago I started seeing a bunch of errors in the Windows Application Event Log. I've been searching for solutions for the past few days with no luck so now I'm posting here. Here's the errors I'm getting in order: ============================================================== Event Type: Error Event Source: MSSQLServerOLAPService Event Category: (289) Event ID: 19 Date: 9/20/2006 Time: 9:56:27 AM User: N/A Computer: TEAMSERVER Description: Errors in the metadata manager. An error occurred when loading the Changeset dimension, from the file, '\\ \D:\Program Files\Microsoft SQL Server\MSSQL.2\OLAP\Data\TFSWarehouse.0.db\Changeset.200.dim.xml'. For more information, see Help and Support Center at http://go.m ...Show All

  • Audio and Video Development iHDSim catastrophic failure

    Just wanted to report a strange bahaviour of iHDSim when having specified multiple audio languages for a title. WORKING: <TrackNavigationList> <VideoTrack track="1" /> <AudioTrack track="1" langcode="en:00" description="English 2.0" /> <AudioTrack track="2" langcode="de:00" description="German 2.0" /> </TrackNavigationList> NOT WORKING: <TrackNavigationList> <VideoTrack track="1" /> <AudioTrack track="1" langcode="de:00" description="German 2.0" /> <AudioTrack track="2" langcode="en:00" description="English 2.0" / ...Show All

  • Windows Forms Dekbar

    I want to write a "search files" program that primary runs at deskbar of windows and possibly at explorer toolbar. How I can do it, at least the first Thanks dimis Hi, To integrate with windows explorer, you may have to look at the shell extension programming. http://www.codeproject.com/csharp/dateparser.asp http://www.codeproject.com/shell/shellextguide1.asp ...Show All

  • .NET Development multiple sockets question.

    hi.. im trying to implement a three-socket client-server application... when dealing with one socket there is no problem.. but when when i tried to impelement another listener socket on the server to connect the second socket on the client.. i faced a problem with asyncronous callback and asyncronous result.. it sometimes returns null.. could u please redirect me to any good articles or documentaion that would help get a better grip on this matter! or a source code example that uses 2 sockets at each side(server and client). thnx take a look at this: http://codeguru.earthweb.com/Csharp/Csharp/cs_network/sockets/article.php/c7695/ http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=103691&SiteID=1 I'm unsure if tha ...Show All

  • Windows Live Developer Forums How to load new pushpins depending on my map location

    This might be an obvious question so please bare with me. I want to be able to have push pins loaded asynchronously as I move around the map. So if i have 20 pushpins in one state and 20 in another, I obviously only want to see the 20 while i'm in that state, but as I scroll or pan to the next state i only want those other 20 pushpins to be loaded as I move to that location. Can someone point me to an example of this as i figure this would be an obvious scenario, I just haven't been able to find a good example. You will simply use AJAX to make the call to your aspx page with the given bounds of your current view. I highly recommend using this approach. http://viavirtualearth.com/VVE/Articles/Clustering.ashx ...Show All

  • Visual Basic playing animation

    can i display the animation using mediaplayer in asp2.0 the path saved in database Use the http://forums.asp.net , The ASP.NET forums for answers to web development. This Forum is for the Visual Basic IDE. OTP ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. rendering shapes on terrain

    I am trying to render a circle representing an objects movement radius value in my level / terrain editor and im trying to figure out the best way to handle this. I've been thinking about using the stencil buffer to cut out an outline of a sphere at the objects position and then render my circle there, but im not exactly sure if this is the best way to do it. Does anyone know a good way of doing this right now im using a sphere as a shadow volume and then rendering the shadow as my circle on terrain and it seems to be working well, except when the camera goes into the shadow volume. its not a major issue and i guess i can do carmacks reverse, but it seems to work alright now if anyone has any better sugges ...Show All

  • Visual Basic Questions on a class

    Hello. Some questions please. I created a class that contains a read method and an update method on a file. The first one returns an oledbdatareader (with all found rows) and the last one returns an integer (rows affected). My questions is: what should I return for each classes if there was an exception, what is the correct way to do that Thanks...   depends really. If there was an error I would throw the exception up and handle it or perhaps return nothing but would be ideal to throw the exception and catch it and show it to the user for example or handle it your way. The general rule is to catch the exception and handle it. If a class requires a value back (depends on data ...Show All

©2008 Software Development Network