Yhert's Q&A profile
Visual Studio Express Editions absolutly new and very confused
hi everyone , I work in construction , and last year i developed a spreadsheet to estimate materials for different phases of my job . theres about 25 worksheets and lots of vba code . macros etc . I was hoping to try marketing spreadsheet , but ran into issues with excel and protection , liscense control etc . Sooooooo I figured vb 2005 express ...free ....i'm on it ...this will be great ... well .... i'm having issues ....and the w ...Show All
Visual C++ including dshow.h compiles not with /clr but with /clr:oldSyntax
Hello, can somebody tell why I get 103 errors with /clr and none with /clr:oldSyntax when I include the dshow header file. I would like to use the new syntax. Win32 console app generated by VC Express with line added to include dshow.h #include "stdafx.h" #include <dshow.h> int _tmain(int argc, _TCHAR* argv[]) { return 0; } Regards, stax You have nailed down the problem: the ne ...Show All
.NET Development to signe and encrypt email with attachments using vb.net
Hello, does anyone know how generate signed and encrypted emails with attachments only using vb.net 2.0 ( not libraries like chilcat .... ) I can generate a signed message, an encrypted message, an message with a signed and encrypted attachment but not the cobimnation of all. Thank you Klaus-Dieter Brinkmann http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=943659&SiteID=1 I hop ...Show All
Smart Device Development Creating a unified installer for both SmartPhone and PocketPC
Hi, Is it possible to create a unified installer that automatically installs the correct version of software depending on whether a SmartPhone versus PocketPC is connected Basically, one installer self extracting Windows .exe file that installs the correct .cab file of two .cab files (SmartPhone versus PocketPC). Can it be done with the .inf/.ini files Thanks for letting me know. We will change this approach af ...Show All
Smart Device Development Bluetooth communication using Winsock
Hi, Presently I’m working on Win CE for Pocket PC and I’m trying to do some enhancements to an existing Win CE application. The application has originally support for USB and Acitve Sync and other connectiviry mediums and right now I’m working on the Bluetooth connectivity mechanism. The win CE application should connect to a host application that resides on a PC (windows XP). On Win CE side I’m trying to use Microsoft sta ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Microsoft.DirectX.Direct3D.NotAvailableException why?
Hi all, I get a: Microsoft.DirectX.Direct3D.NotAvailableException from the following line of code: device = new Device (0, DeviceType .Hardware, this , CreateFlags .SoftwareVertexProcessing, presentParams); I guessing that its because the HW video is saying it isn't available or is not compatible with DX9 Am i doing something fundamentally wrong or is this the case Cheers very much for your time Felix You can't ...Show All
Windows Forms Pause
Hi folks, Could you please tell me how can I do a pause in my application developed with VB I must have to get a 3 seconds before start another application TKS BR Scripter Aale: Ingenious!!! I'll have to try that method&nb ...Show All
Smart Device Development files on remote computer?
Hi. Wondering if there is a way of retrieving files/directories etc... using the .NET classes I would like to retrieve this information on my remote computer (local computer which has the mobile device connected to it) I can connect using tcpclient but when i try to get a list of files/directories using: string [] theFiles = Directory.GetFiles("\\ComputerName\drive$"); I get an IOException. However the IOException does not give m ...Show All
Windows Forms drawing a table in C#
Hi all, well, this is my situation: I want to draw a table on a user control with 2 cxolumns and x rows. Everything works fine, however, if I scroll up/down, the table looks quite strange as it is repainted all the time. Is there any way to solve this Thx for the help! Regards, Mel hi, well i am also trying to do the same i.e i want to draw a table on a RichText Control, can u tell me how to draw a ...Show All
.NET Development Problems reading array in struct
Hi, I'm trying to marshal the DS_SELECTION_LIST struct ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/ad/ad/ds_selection_list.asp ) to C#. It works, but only the first element is retrieved. I believe this is because the marshaler can not determine the array size. However, the field cItems in the struct determines the array size. But I can not use the SizeParamIndex with UnmanagedType.ByValArray. So I tried the UnmanagedTyp ...Show All
.NET Development ThreadPool and Webclient.UploadValues
I have an app that listens on a multicast socket for some data then wraps that data in some XML and POSTs it to a web server for storage (the response from the web server contains no useful info so I ignore it). Early on I noticed that using Webclient.UploadValues was taking a fair amount of time and I was missing some of the multicast data coming in. I then tried using a ThreadPool to spawn off a separate thread that created it's own Webclient ...Show All
Smart Device Development Z Order of Forms - SendToBack() BringToFront()
I've created a modeless form, and everytime I create it, regardless of using BringToFront() on it, or send to back on the parent, I can't get it to come to the foreground. Is this function not implemented in .NET CF Thanks. Any solutions I know nobody has responded, but that TopMost property saved me from a lot of headache. Of course, I had to use it in a hacky way, namely: this.TopMost = true; this.TopMost = false; but it works ...Show All
SQL Server How to migrate from Analysis Serveice 2000 to 2005
I have a Cube designed with SQLServer 2000. How can I migrate it to 2005 Hi Deepak, did you migrate any 2000 database to 2005 in production environment with the Migration wizard Was you pleased with the result of the Migration Wizard How much handwork was invested to get a satisfying result IMHO, the Migration Wizard is really flop. ...Show All
Visual Studio Tools for Office TaskPane + Word.xml + beta2
Is there anybody who has has done such TaskPanes in Word. Read XML Word.xml + Schema.xsd + StyleSheet.xsl = Word.wml = ---------- manifest ---------- Word.wml.StartUp + ManagedBeta2Code.dll = Word + Document + TaskPane = ----------------------- beta2 co ...Show All
.NET Development why combobox invoke SelectIndexChanged twice on Initial ?
in my case, i have a listviw which data is relate to the data which is selected in a combobox. when debugging, i fond that the SelectIndexChanged event invoked twice on start-up of my dialoge. though, it did no harm to my work, i just want to know WHY How many items are you adding to the listbox The first time you add a value, it should fire the event. If you debug the program, put a breakpoint on the SelectIndexChanged method, then have a ...Show All
