VB Be Supported In The Micro Framework?
Jan 5, 2009
When will VB be supported in the Micro Framework? it seames as there is a lot of new technology comeing out of MS lately leaving VB behind, insted of in step with C# like origionaly promised.I know that the VB compatibility dll has yet to be ported, but if this is the only hang-up, skip it for now and get some eary adopters playing with it.most of us can read C# so VB documentation is not hugely needed, just a few quick samples in the SDK.Please help, the company I work for could have soo many applications for this tech, but we are commited to VB for it's ease of use and it's natural synthax for reading.
View 2 Replies
ADVERTISEMENT
Aug 21, 2010
I'm fairly new to the MS Sync framework and have been beating my head against the wall for about four hours now to no avail. I'm simply trying to sync my databases (one "master" SQL Server 2008 with a SQL Server CE, the client) with:
Dim syncAgent As DataCacheSyncAgent = New DataCacheSyncAgent()
Dim syncStats As Microsoft.Synchronization.Data.SyncStatistics = syncAgent.Synchronize()
It works just fine in Visual Studio 2010 and always manages to sync, but now that I'm trying to implement it on my client's computers, I always get the error:
The specified change tracking operation is not supported. To carry out this operation on the table, disable the change tracking on the table, and enable the change tracking.
View 1 Replies
Mar 8, 2010
1. Is it possible to fitler with MSDN DExplorer or any other tools the Classes supported only in .NET Framework 1.0, or 1.1 or 2.0? I know with MSDN DExplorer when you click on any class there's an info tab with supported .NET Framework versions. But I want to filter all classes supported in .NET Framework 1.1. for example.
2. Is it correct to say that .NET Framework versions are only upgradable (addition) with new Classes and functions but and all Classes for example supported in 1.1. are also supported in 2.0 and also supported in 3.5. For example are there any obsolete (removed) classes or functions supported in previous but not in later version of .NET Framework?
I read some statements of Microsoft in their msdn site articles that everything supported in previous framework is supported in the next, like there are backward and also forward compatabilities. This is not quite my question, my 2nd question is do you know exactly which classes / functions are changed or deleted, if there are such? I know there are new, but are there changed or deleted?
View 3 Replies
Nov 6, 2009
Error Message: "This server version is not supported. Only servers up to Microsoft SQL 2005 are supported VB.NET" I am using VB.NET 2008 and attempting to connect to SQL Server 2008 with XP as the operating system. I have service pack 1 installed in Visual Studio but this error message presists. The articles I have read on this error said to install sp1 as a solution but I have done that and the error persists. FYI, the error does not occur when I am using code to connect to SQL Server but when I attempt to connect using one of the designer wizards this error occure.
View 3 Replies
Oct 4, 2010
I know it will sound like a dull question, but, coming from a VB6 and C in micro controllers it might be quite reasonable:
[Code]...
View 2 Replies
Jan 22, 2011
I have build using the computer Performance counter a Stop Watch class with a precision of 1 Microseconds ( 1/1000 of a milliseconds )It works good but While building this class I had a problem And found a work around to it. But I am not please with this work around.As you may know, the CLR does not create it's object at the time where you declare them, but when they are first needed. So, while building a class that a timer with such precision, the elapsed time, you will get include the time used by the CLR to build the class. This is a problem since it takes 700 to 800 microSecond to do so.I have try using a code like the one I post here, try using start/stop method, try builing the class as native code API etc. And always the same problem,I get some CLR time include in the elapsed time.The work around I finaly found is to use the fact that the CLS will recycle an object if you dispose of an object and recreate immediately after.
So, what I do, is create the timer, dummy use it, dispose of it and recreate it to actualy do work with it. Here again, I get a small CLR work time of 3 to 4 Microseconds for recycling work.I have no hope to find a better solution using a managed code class, but I am sure that there is a way to put in memory from managed code, an unmanaged class that will be ready to be use by the managed code.If you try to run it, the first time you will click the button, you will get an extra 3-4 microseconds on the result.[code]
View 4 Replies
Nov 5, 2011
why my splash screen open for micro second i want open this 10 second and above
View 6 Replies
Sep 23, 2009
i'm supposed 2 integrate a gsm module with a micro chip so send sms.And i'm allowed 2 use silicon laboratories so write the code as i'm an amatuer to this
View 1 Replies
May 29, 2012
i m currently working on application that has to monitor temperature and humidity of a particular place and constantly report the same to the user over internet. So far, I m using LPC1768 and its ethernet module collect the data, process it and send it to the router. On the other side, i have a computer which is connected to the same router and running a VB application where the data is mined and reported in a excel.
This setup works just fine. Now, i want to monitor the same data over internet. How can i do the same?
Here i was able to connect to the micro-controller using the IP 192.168.1.100 port 80. I m aware that the IP is a local one and to access the micro controller from Internet there is another way.I have a IP based webcam which enables us to monitor from internet. How should i make micro-controller data be accessible from internet.(similar to IP Camera).
View 1 Replies
May 30, 2012
Example, when i plug in my device, the programme is supposed to identify which com-port is connected to it and update the textfield accordingly, however this is my first time using such a device and im not too sure
View 6 Replies
Jul 26, 2011
I want the Indexing server Query to Search any type of document by document name.
Let assume i have ..
test.ppt
test.pdf
test.doc and so on.
If I enter the test name in my search text box the , I want the search result with these file. I am using the vb.net with the help of MicroSoft Indexing Serice. I need the query of MicroSoft Indexing Serice for search any type of document by document name or title.
[Code]...
View 2 Replies
May 21, 2010
I am work on VB.net 2003 Framework 1.1 for last 3.5 years in windows Application.We are currently migrating to VB.net 2008 framework 3.5, but i don't know about the features which related to ADO.net and which is important to performance. I know linq to SQL but our architecture is made in .net 2003 so we should follow this.Any features which is very important to enhance the performance?
View 2 Replies
Feb 2, 2011
I have a solution that I wish to upgrade from Vb.net framework 1.1 to framework 4.0. The solution consists of a number of projects, all but one of which compile to dll's. The master project compiles to a executable which provides a menuing system which dynamically loads the dll's and connects to entry points.
The projects contain normal classes, numbers of forms and also controls, which are either usercontrols or are inherited extensions of standard windows controls.There are a number of third party components (eg reporting and grid controls from Component One, Ribbon control from DevExpress etc).
[Code]...
View 4 Replies
Apr 7, 2009
How come software created in an older framework version won't run on a newer framework version? Actually whenever i try to run some old specific software having .net 3.5 framework on my PC they show they needs .net framwork 1.1 . What a bad thing?My newer version of Photoshop ans Ms office open all lower version files.
View 6 Replies
Nov 24, 2011
I work for a small company and we are planning to build our own framework using .net . For example if a dropdown is placed in the form and set the custom property to Users, then the users list from db from has to populate. The developer will drag and drop the custom control and set the connection string in config file. Other things are to be managed by the framework.
View 4 Replies
Nov 7, 2011
Is the MetaWeblog API still supported? I ask because while researching XMLRPC, the Cook Computing library and implementing MetaWeblog API, I clicked a link that took me to MSDN that states the topic has been removed.There is a link there that takes me to new docs for Windows Live SDK. On the new page i cannot find current info on MWAPI. I am using EF, MV3, and VB.Net.
View 1 Replies
Feb 17, 2012
I was using WMI msacpi_thermalzonetemperature class to read the CPU temperature. but Its giving me Not Supported error.I think this error is coming because of some driver missing on motherboard. I amnot that good in hardware.which driver i need to download on my Window7 ACPI x64-based PC.
View 5 Replies
Jun 17, 2011
[code].....
View 3 Replies
May 20, 2010
Dim newver As FileVersionInfo = FileVersionInfo.GetVersionInfo(url...)
I tried the above vb code to find the version of MyProgram.exe and i get an error URl formats are not supported.
How do I get the version of MyProgram.exe on my website?
View 7 Replies
Sep 3, 2009
[Code]...
What needs to be done to properly declare the function using vb.net
View 4 Replies
Feb 15, 2011
I try to move files with code below from [URL]...Public Function TransferFile(ByVal originalFile As String, ByVal destinationFile As String, ByVal userName As String, ByVal password As String) As String
[Code]...
View 1 Replies
Apr 10, 2012
I've found this nice library to make localization in a .NET application. Problem is, this FairlyLocal is build in C#. Now I downloaded a converter to make it happen in VB.NET. But it seems my project is using the FairlyLocal.dll which is a binary and uses _() where '_' is the name of the function. All I want is to change the '_' to 't' so it would work with the VB.NET application too. How is this possible. I'm a greeny to VB.NET and .NET overall so please don't be rude.
Problem I get is at the '_': Identifier expected. [Code]
I also tried what Justin said (with the brackets []) but that doesn't work either.
View 3 Replies
Nov 29, 2010
Is it possible to create an ad supported pc application. I know Kings Office is ad supported. Can I add them to an app I am developing too?
View 1 Replies
Aug 19, 2009
I have very simple project in VS 2005 (close to hello world). This project is referencing few other DLLs that I have built on the side using command line scripts. These DLLs are fine and working perfectly. None of these DLLs are defining a specific 'Locale', so they default to locale = 'null', and everyone seems to be pretty happy with that.However, one of these DLLs, say XYZ.dll, must link/reference a third party DLL which defines locale= 'Neutral'. I can see that quite clearly with ildasm:[code]If I remove the third-party dll reference from my XYZ DLL (removing some code then not linking against it), I can compile my basic VS project without any problem. The problem is that I do need to link against this third-party DLL and would like to use Visual Studio.Does anyone know about this "Culture name not supported" error?
View 1 Replies
Aug 24, 2011
Filestream URI format not supported?
View 3 Replies
Jan 2, 2010
I need to know how Windows detects what resolutions the user can select for their monitor / graphics card. I'm pretty sure it's an API call, but does anyone know what it is?
I already have code to change it (courtesy of this thread here), and I was wondering if it was possible to get a list of valid and allowable resolutions.
View 3 Replies
Dec 21, 2011
I want to get the list of supported resolution by a graphic adapter/card. Anyway to do it?
640X480
1024X768
1366x768
and so on...........
View 6 Replies
Mar 29, 2011
why i having this error and how can i encounter this error
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim connection As New SqlClient.SqlConnection
[code].....
View 6 Replies
Feb 5, 2012
Code:
Try
Dim xDoc As New XmlDocument
xDoc.Load("ftp://XXXX:XXXXXX@ftp.someaddress.com/subfolder/subfolder/subfolder/file.xml")
[Code]...
I'm getting the error: "The given path's format is not supported".
I read the xml file no problems and make the changes as well. I have double checked that. When attempting to save the xml is when the error occurs. the xml file has 50k lines in it, and as the code suggets, it is hosted on an ftp server.
IS claims that permissions are 777. Also, I tried the same code on a file on my local drive, instead of the ftp address, and it worked perfectly.
View 3 Replies
Jul 27, 2010
I want to know exactly how well I can depend upon the continued existence of VBScript. I am considering embedding VBScript in a computer system that I will be developing. Whatever scripting language that I choose must be interpreted, and it must have minimal object oriented support (it must have classes).
View 7 Replies