Couz's Q&A profile
Audio and Video Development Posting to Web Service
I still am waiting for the spec . . . Can you do posts (or gets) from iHD You can send / receive a string / file / XML DOM to / from an HTTP web server. Note that most types of content need to be AACS protected on the web server, which can complicate things. One of the things we hope to have up sooner (or later) is a networking sample. ...Show All
Microsoft ISV Community Center Forums Library Reference issues.
Hello guys, I am building my Excel macros using Excel11.0 library. I only use the syntax that works on Excel 2000, so that my code runs on Excel 2000. So far, my code is created in Excel 2003 editor and runs on both Excel 2003 and Excel 2000. But if I am referencing another office library like Outlook 11.0 Object in my excel macro, Excel 2000 can't pick up the library. I am creating my macro using Office2003, but there are some computers in my company uses Office2000. And you know upgrading their office is out of my reach. What should I do Thank you. Go to one of the Office 2000 machines and open your project in the VB editor on that machine. Reset the Reference on this machine to the Outlook 2000 ...Show All
Software Development for Windows Vista Error in WorkFlow Monitor
Hi, I have a problem to start Workflow Monitor. It says "Exception in GetWorkflows" and the description is: "No se puede cargar el archivo o ensamblado, 'Proceso, version 1.0.3, Culture = Neutral, PublicKeyToken = null ni una de sus dependencias. El archivo no puede hallar el archivo especificado. In tracking' Database in table Workflow and column WorkFlow Definition appear this: <ns0:VentasAFacturacion documentO="{p1:Null}" x:Name="VentasAFacturacion" ProcesoID="00000000-0000-0000-0000-000000000000" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:p1="http://schemas.microsoft.com/winfx/2006/xam ...Show All
.NET Development PCI Device Port I/O
I have a PCI device that is controlled by writing directly to its I/O ports (i.e. the "I/O Range" in the Resources tab of the device in the Windows Device Manager). Is there any .NET managed method of reading from and writing to such ports If not, is the best method of doing so to make an unmanaged call to some Win32 function There are some freeware device drivers around that use a usermode DLL to let an app read and write directly to an I/O port. You'll have to P/Invoke the DLL's methods from a .NET program. I use this one and have had good luck with it... ...Show All
Visual Studio Express Editions 0x80040154 - publish c# application (2005 Express)
Morning Newbie at this. Please give detailed answer or good reference. I have developed a module that uses the Quickbooks SDK to access their account system. It workes well on my machine but when I build the app and install it on a test machine without the SDK installed I am unable to access the com object. I get the following error : System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {4877276C-A727-486D-B201-F096035CA4DF} failed due to the following error: 80040154. at QBInterface.IQBCustomer.LoadQBCustomers(). ErrLookup tell me that this means that the class is not registered. Please can someone tell me how (if possible) build an installation (msi) file from ...Show All
.NET Development Generate Dataset VS.Net 2005
Hi In VS.Net 2003 I could Create an Xml file. Sketch out some nodes. Right click and create an Xsd The Xsd got added to the project I could open the Xsd and right click and Generate Dataset Then use the Strongly Typed Dataset I am using RC0 VS.Net 2005 It seems this flow is no longer there. I've worked around it. It takes several steps. Is the flow hidden somewhere Thanks Hi, John you wrote: The typed dataset will be generated for you Generated where. I did that, but where is it generated. the same xsd file or different. I can t find the generatee file. Thanks. ...Show All
Software Development for Windows Vista Visual Studio 2005 on Vista
Does anyone know when Visual Studio 2005 will be updated to work with Vista Currently there appears to be a number of issues and the web site says that service pack 1 with the vista update is required. In particular, the development web server included with VS 2005 runs EXTREMELY slow and takes an inordinate amount of cpu on Vista. It might have been nice if this had been posted in the front of the Vista Developer center (it is a little burried). Unfortunately I have upgraded one of my machines thinking it might be easier to develop a Vista project on Vista, but it appears this is not the case. Is there anything currently available to update Visual Studio to run on Vista I am surprised that Vista was made available to MSDN subs ...Show All
Game Technologies: DirectX, XNA, XACT, etc. My first game on Xna
I made my first game(1946) with Xna. you can move your plane with mouse, canon is left mouse button new version! (0.1) http://s1.upload.sc/request/38ca5cf656f179755c9bd1d11dea24ae/owner changes; 1 new plane, 2 new sounds, fixed bullet bug. old download link; http://s1.upload.sc/request/f6db77a9f09b025ca438d0dca6855812/owner if anyone has a question please send here or genjurosei@gmail.com thanks The dream Build Play contest is a small comp being run by MS, as the moment there is not much information on it... but we should have more soon. ...Show All
Visual Studio Team System TFS Warehouse - event log error 3000
I keep getting a TFS warehouse error: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 17/11/2005 10:06:56 PM Machine: MachineName Application Domain: /LM/W3SVC/3/Root/Warehouse-1-127767387961411737 Assembly: Microsoft.TeamFoundation.Warehouse, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a; v2.0.50727 Process Details: Process Name: w3wp Process Id: 3424 Thread Id: 4956 Account name: DomainName\au_vstfs Detailed Message: Cube processing runtime error: \r\nMicrosoft.TeamFoundation.Warehouse.WarehouseException: OLE DB ...Show All
Visual Basic Terminate program from nested function
Hi, I'm writing a .dll. I'd like to know how to stop all the code running from anywhere in the solution. For example: -A class of the .dll is called from an .exe. -Function A is called from the main sub. -Function A calls Function B. -Function B calls Function C. -I need to terminate all the running code from Function C with a simple method/function. Is there an easy way to do this Sometimes it gets very long to propagate error handling back tho the main sub when deep into functions. I hope I explained it clearly. JakkyTchong I get this error when writing "End": 'End' statement cannot be used in class library projects. It seems 'End' statement doesn't work in .dlls... Any ideas ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Drawing colored meshes using own effect
I want this easy thing to work -- but apparantly it's not that easy for me. I simply want to load a colored mesh from a file, and draw it on my screen using a custom effect. The mesh(es) load just fine in DXViewer, and also no problem when I'm using the BasicEffect to draw the mesh. The mesh is drawn at the correct position/scale, but the colors are wrong. They seem to be random, and sometimes they change during runtime. I've posted the relevant XNA code below. Of course it's incredibly rediculous to put all this code in the Draw method, but it's just to show you all the relevant code together. So here we go: protected override void Draw( GameTime gameTime) { CompiledEffect compiledEffect = Effect .CompileEffectFr ...Show All
Visual C++ About the C4430 Error
Hi! I got these 2 function declarations in Visual C++ 2005 Express Edition CODEC_API extern AWC_decodeSwaths(AWC_Tag *tag, AWC_Image *buffer, int regionIndex, int stride, char **ptr, int *copyFunction( void )) ; CODEC_API extern AWC_encodeSwaths(AWC_Tag *tag, AWC_Image *buffer, int *regionIndex, int imageWidth, int imageHeight, int lines, int reuse_flag, int stride, char **ptr, int (*copyFunction)( void ) , int rate_flag, int goalbits); Athough all seems to be ok, the C++ compiler gives me the next error code: C4430: missing type specifier - int assumed. Note: C++ does not support default-int I know It's about the marked code, but i can't solve the problem. I hope someone can help m ...Show All
Windows Forms Tab Control
Dear friend I had tab control in which 6 tap page,in each tab page number of control which is bind to the dataset. When i retreive data from database, merge logic is used to get data to the dataset which is binding to all the control in the tab control. The value get update properly to the dataset, and values comes proper to the first tab page control, But the value in the 2 and 3 tab pages not getting updated. It only get updated when i active that tab control page. Problem is when i retreive data and click on save button.In save Procedure i had written code for validation in which i m checking text value it show me Blank/empty. To save the value i have to click on all the tab page control and then click on save button. ...Show All
Architecture Software Process News: EssUP (Essential Unified Process) and PLE (Product Line Engineering)
Two processes to keep an eye on in the upcoming months are the EssUP (Essential Unified Process) and PLE (Product Line Engineering). Read more... here . ...Show All
.NET Development UpdateBatchSize without dataSets
Hello, In our project we are using ado.net 2 but we are not using datasets. We use our own value objects. I would like to batch my Create, Update, Deletes to the database. Is there a way I can take advantage of UpdateBatchSize I can't figure out a way to use the dataAdapter without a dataset...is there a way Except: dumping my data into a dataset and then persist the dataset...seems kind of funky... Thanks in advance. Houman The data adapter is specifically designed to bridge between dataset and the connected provider model, so no, you can't really use it without a dataset. You can, however, directly manipulate the connected provider objects (connection, command, reader) to send your upda ...Show All
