CampAlbion's Q&A profile
Visual C# Passive waiting
hi i have a time axis implemented by ArrayList. There are a nodes, sorted by time of execution. I want to execute some code, when real time is equal (or greater) with Node.Time I dont want to wait for time by acitve waitng - something like this> //ArrayList queue while (realTime >= Node(queue[0]).Time); /* acitive waitng */ Node(queue[0]).execute(); how can i run it with passive waiting thanks for your ideas I ag ...Show All
Windows Forms binding listbox to xml element
Hi, I have a listbox control. How can I bind the listbox to an element of xml I want to bind the list panel control to the "id" element in the xml. <Accounts> <Account> <id>Test</id> ...Show All
Visual Studio Team System Registering com during build
Hi all I'm trying to register a COM dll during the build process, my Regsvr32 is looking ok but it returns an error code of 3. However when I try and register manually (whilst remotely working on the server) it works absolutely fine. Any ideas Thanks Kev I needed to register a dll before the project was build. In the project folder I created a new folder 'lib' and copied the dll to the folder O ...Show All
Visual Studio SourceSafe 2005 Internet Plugin
Hello, I've succeeded working with the SourceSafe 2005 beta and the internet plugin on Visual Studio 2003. Is there any support for Visual Studio 6.0 (VB) I've tried using the internet plugin with VB 6.0, but received an error ("The source code control provider did not initialized properly") Thanks, Hi Tim, There is no separate option in installer just for the VSS Remote plugin. After installing VSS2005, to use the internet plugin wi ...Show All
Windows Forms User controls VB 2005 vs vb 6 "Property Pages"
Question #1: Back in VB 6 when creating a user control you could create a Property Page so when you imported the control to your form you could RIGHT-CLICK it and a pop up property window would show up. How can you do that with vb2005 Question #2: In a user control how can you create a property that would have the ... showing next to the properties. So when you click on it a window pops up Thanks ...Show All
Game Technologies: DirectX, XNA, XACT, etc. New to C# and Directx
Hi All Can anyone suggest me about good links on C# and DirectX I am begineer in DirectX programming. Thanks and Regards Jayash The Directx SDK has lots of information, with c#.net examples. You can find more info on these 2 sites, which also have a lot of links to other sites. www.thezbuffer.com www.ircomm.net Goodluck with learning :) ...Show All
Visual Studio Page Number -- Too simple, but I can't figure it out
How do I put page numbers on a report. I get this error: The Value expression for the textbox ‘textbox1’ refers to the global variable PageNumber or TotalPages. These global variables can be used only in the page header and page footer. C:\Documents and Settings\john\Local Settings\Application Data\Temporary Projects\WindowsApplication1\Report1.rdlc I can't figure out how to create page head or page footers. I tried the table report it ...Show All
.NET Development 404 Errors with ASP.NET v2.0 - dependency issues?
Did all the dependent assemblies make it into the \bin directory of the new location -steve Absent pdb files should not cause the 404. Did you check that the Web Service extensions are enabled on your system Start -> run -> inetmgr When Internet Information Services (IIS) Manager comes up, expend the (local computer) node and select the Web Service Extensions node; on the right hand side see the list of all extensions, make sure ...Show All
SQL Server dtexec
I have saved a copy of a package to a 64-bit server running Windows 2003 Enterprise Edition SP1. I changed the Run64BitRuntime to true before saving the package. When I try to use DTExec to execute the package which does have a script task in it I receive the below error. Error: 2005-08-17 16:52:32.89 Code: 0x00000005 Source: Script Task 1 Description: The script files failed to load. End Error Any hel ...Show All
SQL Server Multiply Rows with T - SQL
I need to multiply rows of a table with each other. I found a function like this exp(sum(ln(floatfield1))) . But I can not find the ln function. Is there any other possibility Thanks for any help. Uwe In your SQL statment exp(sum( LOG (floatfield1))) . In SQL Constant e (2.71828182845905…) based Natural log is set as LOG and 10 based is written as LOG10. Some examples: LOG ( e ) = 1.0 EXP( LOG( n ) ) = n ...Show All
Visual Studio Express Editions insert filename into SQL Table
Hi I'm just not getting this but how can you insert the filename into a table. I managed to upload a file from website to my hard drive but now what to save the filename to a field in the database. Can someone please help Here's the code for aspx file and following the code for aspx.vb file: <% @ Page Language ="VB" MasterPageFile ="~/MasterPage.master" AutoEventWireup ="false" CodeFil ...Show All
Windows Forms How to find whether I reached bottom or datagrid or not which event fires?
I am using visual c++ 2003. Either I scroll through scrollbar or through datagrid. When I reach the end, next row it creates a row with all null values. I wanted to know which event fires and handle the event. How to find whether I reached bottom of datagrid or not AND which event fires Thanks, Jil. ...Show All
Visual Studio Express Editions VB6 to C# Conversion using VB2005 Express
I convert VB6 using VBUpgrade in VB2005 and paste all controls to C#. All properties are the same from VB2005 to C#. My problem is...my controls (e.g. labels) are not aligned in VB6 when I compare the VB6 form and C# form by setting the two form location to 0,0 then switch to one window to another ( Alt + Tab ). Please help me on how to formulate that problem. -bachie bachelor_1919@yahoo.com My question is: why are you upg ...Show All
Windows Forms Create Database Connection & Fill combo box
I created a windows form that has a combo box that is supposed to be filled via fields from a database stored procedure. How do i di this 1. Create the db connection 2. Fill the combo box from the SP 3. Do i create the connection&nb ...Show All
Visual Basic Trying to update a datatable
I am completely frustrated… Trying to help a friend. Here is what I have been trying to do.. I am a noob at visual studio. I am setting up an inventory database using VB as the front end. I have setup an accounts table, product table. These I can view edit, delete, and ad records to fine. I am trying to make an invoice. I have set up the following tables: tblInvoice ...Show All
