Thomaschr's Q&A profile
Visual Studio Express Editions Visual Basic 2005 - Databinding not updating the database
Well I had a tough time trying to resolve this issue and always thought that there is something wrong with my computer or the software itself. Then after searching the forum i found out the solutions to this problem. the solution is location in the link here. This is a blog about working with Local Data File: https://blogs.msdn.com/smartclientdata/archive/2005/08/26/456886.aspx . Quoting from this blog Where is my data -- Understanding the file copy for desktop projects But i didnot understand it properly. my project is created in the visual basic 2005\projects\ MAK folder, where MAK is my referred project created by me. There is one database file i.e. MAKdatabase.mdf located in project\mak\mak folder ans another one in the folder ...Show All
Visual Studio 2008 (Pre-release) Trying to run unit tests on a WinCE 5.0 device gives deployment errors.
Thanks to all the blogs and forum posts, I have managed to successfully: 1) Install a Virtual PC deployment of Orcas CTP (Jan 2007). 2) Connect to my WinCE 5.0 device from within VS9. 3) Create a simple app, deploy it and even debug it on the target. However... the whole reason for going through all this process was to see if I could get Unit Tests to run on the target successfully. I have been following Sriram Krishnan's blog post ( http://blogs.msdn.com/vsdteam/archive/2006/11/12/unit-testing-for-net-compact-framework.aspx ) at the very useful " Visual Studio For Devices " which covers the necessary steps for "Unit Testing for .Net Compact Framework". All seems to go to plan, until "Click on 'Run Checked Tests'&q ...Show All
Visual Studio Express Editions How can I know when someone push the SCAN button on the scanner?
Hi, I have a scanner with SCAN button . How can I know when someone push the SCAN button on the scanner P.S I have Lexmark scanner and when you push the scan button on the scanner it scan the picture and create file. Regards, Yaniv There are two types of interfaces to scanning devices, the old TWAIN interface and the more modern Windows Image Acquisition interface. Check the links for a sample project and see what you like... ...Show All
Windows Forms Filter DGV by combobox programmatically
I am trying to filter a databound DGV from a combobox. All procedures are strictly read-only. Access db. 2 tables Countries, Addresses. Added datasource MyDb on Data Designer added underlying Select Query to Addresses TableAdaptor SELECT city + ', ' + State + ' ' + cstr(Zip) + chr(13) + chr(10) + Memo AS Log FROM Addresses 4 fields data is concatenated into single DGV column called Log Datagridview's datasource = MyDbBindingsource When form opens datagridview DGV fills perfectly. combobox cboCountry is databound to Countries table. When I select a country from cboCountry, DGV should simply filter and show selected country's data. Filtering the bindingsource does not work as it does not seem to accep ...Show All
SQL Server VS 2005 cannot connect to SQL Server 2005 Express
I've installed, with default settings, VS 2005 and Server 2005 Express and cannot get VS2005 to connect. This is the error: Unable to open the physical file "..path...mdf". Operating system error 32: "32(The process cannot access the file because it is being used by another process." I shutdown Server 2005 but that didn't change anything. Any ideas Thanks. Thanks for the info but that seems to apply to users who are not the adminitrator on their machine. I don't know why it would come up for me. ...Show All
Visual FoxPro Source from internet
Where can I find a source on the internet where will be wethear forcast for Slovakia and the other world... I want to include it in my program, to show the weather forcast, just temperature, humidity, air pressure, wheter it will rain, or snow, etc. Don't know wheather this kind of source exists... Thank for your advice Look in some of the Web Service provider directories. For example: http://www.xmethods.net/ ...Show All
.NET Development ftp service
Hi, I will be extremely grateful for any help with a task I have. I should implement (in .NET 2003) FTP service which should authorize clients and will run on a server. I have to admit that I know almoust nothing about this stuff. I should probably start 'Windows service' project in Visual studio and should implement some 'middle service application' which will wait for ftp client requests, will perform internal client check and if client validated successfuly, will pass the client request to the server. If we don't consider the authorization part, which is not difficult for me, can anybody give me a clue how to implement the 'middle service application' which passes the ftp requests to the server and returns the results back How diffi ...Show All
Software Development for Windows Vista Where is ManifestChk.vbs?
I installed Windows SDK 6.0 and can't find ManifestChk.vbs (http://msdn2.microsoft.com/en-us/library/aa375349.aspx ). Any one know where it is Thanks, Jeff Maybe this tool was replaced. You can try to validate a manifest (i.e., to see if it conforms to the manifest schema): mt.exe -manifest 1.manifest -validate_manifest ...Show All
Visual C++ Searching for function to use??
Hi all, Could someone please guide me in the right direction I'm looking for a function that performs the same action as the GlobalMemoryStatus() but instead of memory, hard drive status i.e. virtual memory, swap memory and so. Thanx The win32 dev newsgroups at http://msdn.microsoft.com/newsgroups is a better location for such questions. OTP Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio Express Editions Database
Hi I need to connect to an SQL database that is on a remote server. How can i do this in vb 2005 express As shakalama stated VB Express ID Support for databases other than Access and SQL Express are not supported. As SQL Express is designed to be a local database only and remote connections are not supported out the box for this then Add New Datasource is only going to present you with Microsoft Access File or Microsoft SQL Server Database File (SQL Express). That said - you can write your code to access any database that is supported - so you could write code to access as SQL Server, Oracle Database, MySQL etc. But you are not going to get the IDE support from the designers and wizards. &n ...Show All
.NET Development 401 Access denied - Integrated Windows Authentication
In researching another problem, I have run into this peculiarity using IIS5/Windows XP/.Net 2. Why can I browse to a webservice and execute methods successfully, but a test application using the web service (C#/.Net 2 - ASPNet/.Net 2) fails with a reported error of Access denied (401) using Integrated Windows Authentication Setup In both the default web site properties and the target ASPNet Web Service Virtual properties I have these security settings: (OFF/Unchecked) - Anonymous access (OFF/Unchecked) - Digest (OFF/Unchecked) - Basic (ON/Checked) - Integraged Windows Authentication. Behavours Ability to browse to a basic ASP page in the default IIS directory and the virtual directory and have it display a time. Ability to browse to ...Show All
Visual Studio Team System Sharepoint Services and Frontpage Extensions
I've been trying to setup TFS on a server that has been used for website development, testing and user demo. When we get to the WSS setup in the checklist and the actual install, it loudly complains about Frontpage extensions being installed. So, I uninstalled them and now none of the VS2005 clients can connect to the web projects. When we tried to reinstall Frontpage extensions it complained about port 80 being taken, so we tried using port 8080 for first WSS then Frontpage. Now everything is broke to hell and we're sweating the loss of all the websites. Is it even possible to setup TFS on the same box that is used for web site development & testing If not, what about using virtual server to host the TFS I'm not much on netw ...Show All
Smart Device Development C# call method
This is the first time i have used C#. I am converting a know good C++ file to a C#. I have all my methods established and ready to call each other. I can not see anyway to call a method asynchronously without the use of method.Delegate.BeginInvoke and to close the call EndInvoke(out int iExecThread, IAsyncResult ar); Please confirm. You could also use the Thread class; but, Thread.Start on the compact framework does not support passing parameters to the method (i.e. ParameterizedThreadStart is not supported on Compact Framework). ...Show All
Windows Forms Vertical Label
Does someone know how i can make a vertical label like this : H E L L O Thanks you could do but would be better if the newline character was not required so instead its a control that manages everything itself without the need for the user knowing any "tricks" multiline does not exist for labels, only textbox controls ...Show All
Game Technologies: DirectX, XNA, XACT, etc. .x maya exporter problems
I am trying to load a .x model into my engine and im having a bit of trouble getting it to render properly. if i load in an x file my friend sent me it will work fine, but when i try to export my own model out of maya 7.0 the mesh renders all black. the confusing part is that the mesh works fine in the directx viewer, and my code loads other .x files fine. has anyone encountered this problem before here are some screenshots i took debugging, my material is set up fine, but in pix you will see that theres something really funky going on. black rendering Pix screenshot Materials seem good *edit* i forgot to mention that the texture is also getting loaded in and returning S_OK The problem h ...Show All
