Use Mono To Run .net Apps On A Mac?

Oct 17, 2011

I've heard a lot about Mono but I have no idea what exactly it is or how to use it. All I know is it's aimed at making .NET apps cross platform. Could someone tell me or point me to some tutorials explaining how to port my vb code to run on other operating systems? Maybe shed some light on all of this?

View 9 Replies


ADVERTISEMENT

Mono Vs. VB Pro Features

May 31, 2011

I am thinking of giving mono develop a try. I have some questions. Visual Studio 2008 Professional has options for creating controls and services. This is not available in Visual Basic 2008 Express. This relationship between the different editions, is there something limiting like this with mono develop? I figure since it's open source, everything is implemented like Visual Studio 2008 Pro.

Another question. Does anyone have experience with mono. Is it a production level serious environment for commercial work? Is there something I should know about it?

Any mono developer that has anything good or bad to say, please drop a post in here. I would like to get as much info as possible from vbforums. This has always been the best help site for me using Visual Basic Express.

The most important thing, to reiterate is if I can make Windows Services with Mono Develop and if it supports full threading features that are limited or not available in express.

As a last question, what is the story on managed directx for mono. On Linux, there is no such thing, so would you plan an opengl library to start with? or does that work out in a different way?

View 5 Replies

.net - Mono - Could Not Find A 'Sub Main' In ''

Apr 26, 2010

I started a new solution (with multiple projects) and am trying to get it to build. Initially I was getting an internal compiler error and thought maybe it had to do with MySql, so I removed all references to MySql. Now I am getting the error "Could not find a 'Sub Main' in ''". I have made sure that all of my projects have a Main subroutine like this:Public Shared Sub Main()End Sub2 out of the 7 projects will compile. I don't know what makes these projects different from the others, and the error message isn't very helpful. Any experience with this one?

View 2 Replies

.NET Not Working On Ubuntu 10.04 With Mono?

Apr 9, 2012

When i run program Error Shows...Could not load file or assembly 'Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.

Description: HTTP 500. Error processing request.

Stack Trace:System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.
File name: 'Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'

[code]....

View 3 Replies

How To Compile Mono With Support

Jun 3, 2010

I've downloaded latest source from mono project, compiled it and everything works (c# projects, mod_mono, xsp) except vb.net. Vbnc, mono's vb.net compiler does not exist after compiling mono from source.This is on CentOS 5, on Ubuntu 10.04 I installed mono packages via apt-get and vb.net just works.

View 2 Replies

Can Mono Run Framework.net Compiled Applications

Nov 30, 2011

I read many questions on running .net code with mono but i always end up with the same question. I'm building a new app right now, so i better start straight and take the good direction: Can i develop an app within Visual C# Express or Visual Basic Express, compile it from the Microsoft environment using the compilers they have and run that application using MONO on linux.Or do i have to work with the mono compiler from scratch (or convert my MS project afterwards to mono) to be able to use my .net apps using the Mono framework on linux.Linux/Mac support is not really a must for my app development, but i'd like to get it straight off the start.i'm using WinForms, Encryption, Globalization, SQLClient but thats probably all, is there anything you Mono experts out can tell me NOT to use off the start.Oh and i use the My namespace for all sorts of things such as getting the computer name, logged on user name, resources, settings, etc...

View 2 Replies

Does Mono Support Visual Basic (not .NET)

Sep 28, 2010

Someone asked me today if it was possible to port a visual basic application to Linux or similar platform, I assumed it was .NET so I suggested to use Mono, but noticed that on their vb support page they only talk about vb 8 (.NET) Does mono support non-.NET vb? In fact I'm not sure what he is using, I think vb6, I'm not sure of the versioning at all though.

View 2 Replies

Playing 8 Mono .wav Files To 7.1 Speakers?

Jul 4, 2010

Is it possible to play 8 different and individual mono wave files to a 7.1 (8 channels) audio system using vb.net? (I undestand that the .1 speaker is the subwoofer and I'm not yet sure it can be replaced with an ordinary speaker.) The playing should start simultaneously and the files can be of different size/length.Is this something that should be done using win API functions if it can be accomplished at all.I just re-installed my old VB6 which I need to ugrade and vb.net would be the easiest for me so I placed this Q here.

View 2 Replies

.Net Application Working Faster With Mono Then Under Native .Net

Mar 21, 2011

To do some testing with MPIR, GMP, the .Net Bigint module and other math libraries I've recently written a small program which allows me to create random sequences of numbers with a certain amount of precision: Always this amount of digits in front and behind the comma, no starting/ending zeroes. While it might not be the most elegant of code, it really blew my mind when I found out my application was running up to 10 times faster with Mono under Ubuntu 10.10.While the code is not elegant and in Basic, it was developed by me in about an hour's work and it serves the purpose: To generate dependable huge datasets consisting solely of preconfigured numbers before or after the comma. To get a general idea the UI's posted here:[code]Eliminating IO by not writing to IO but just to a List instead Eliminating an "if" path which checks if the random before/after float character is checked.Disabled progress reporting in general which causes the backgroundworker to not report any progress.Play around with the amount of symbols, theres very little difference between just getting 1 random character or getting 15 per record.I'm at a loss to what causes my program to run so slow under Windows/.Net compared to Ubuntu/Mono. I'm only a "half programmer", which means: I'm a Bussiness and ICT student who mainly focusses on human ICT, and the Microsoft Platforms certainly have lead on that, however such a huge performance hit compared to Linux for this soul and simple program really gives me a cold chill when it comes to my favourite platform.

View 3 Replies

C# - Registering A Delegate Function With An ISO C++ Callback (on Mono)

Apr 8, 2010

I am exposing some ISO C++ data types to .Net (mono on Linux to be precise).For the purpose of brevity, I shall refer to C# in my question, although my question relates to all of the .Net languages (with C# and VB.Net being my target languages). So far, I have worked out how to expose the ISO C++ data types in C# class(es) for use in mono -The only problem so far is how to deal with the C++ callbacks. In .Net languages (C# and Vb.Net), I believe 'delegates' are the callback equivalent.

Sticking with C# for now, can anyone recommend a way that I can register the C# delegate functions with my ISO C++ code.The ISO C++ code is a notification library, and I want to be able to "push" the notifications to the mono framework (i.e. C# delegates in this case).My underlying assumption is that the mechanism/steps to implement this would be the same for the .Net languages - I'll just have to code the actual delegates in the .Net language of choice - is that assumption correct?Last but not the least, is the question of thread saftey. The underlying ISO C++ code that I am exposing to .Net (mono to be more specific), is both re-ntrant and thread safe - do I have to do anything "extra" to call .Net delegate from my ISO C++ code?

View 1 Replies

Can Mono.Cecil Rewrite Debugging Symbols As .NET

Oct 27, 2011

After rewriting a VB.NET assembly with Mono.Cecil the 'Call Stack' debugging window in Visual Studio 2010 shows the language as C# and not VB.NET. Is it possible configure Mono.Cecil to rewrite an assembly so the debugger recognises the rewritten assembly as VB.NET?The following Mono.Cecil simply reads and saves an assembly without modification. However, the debugger reads the new assembly as C# instead of VB.NET.

Dim readerParameters = New ReaderParameters() With {.ReadSymbols = True}
Dim writerParameters = New WriterParameters() With {.WriteSymbols = True}

[code]....

It is desirable for the rewritten assembly to be VB.NET so the debugging windows 'Local' and 'Immediate Window' are the VB.NET versions rather than the C# versions.

View 1 Replies

Windows.Forms Based Apps Vs WPF Based Apps?

Jun 21, 2010

what WPF based apps are?Is it an application that runs under Silverlight? If so, how?I know; Windows Forms based apps,console apps,DLL _ Class Library Projectsand I've had an introduction to ASP.Net.What I mostly want to know is, if WPF apps are for Silverlight then do they also run in a server based fashion like anASP.NET website would when you create ASP.Net webpages?Is it a way of creating what looks like a FORMS BASED application but it runs in a browser instead or what?Please enlighten me a bit further as I have no idea what WPF is all about.

View 3 Replies

.net - Use Mono.Cecil To Determine If A Type Implements An Interface?

Jun 23, 2012

I had a look through the documentation on the Wiki, but it seems a bit thin. How do I determine if a type implements a given interface using Cecil? For my particular implementation it is important that I do not actually load the type into the AppDomain.m Here's the code that I have so far:

Dim outputModule As ModuleDefinition = ModuleDefinition.ReadModule(outputFile)
For Each assemblyType As TypeDefinition In outputModule.Types

'How to determine if assemblyType implements a specific interface?

View 1 Replies

Detach Database Failed For Server 'MONO-PCSQLEXPRESS'?

Jan 15, 2012

Error : "Detach database failed for Server 'MONO-PCSQLEXPRESS'."
Public Sub bk()
Try

[code].....

View 1 Replies

.net - Run "Hello World" GUI Based Application On Linux Mono

Jul 18, 2011

I am getting below error when I am trying to run vb.net application on Linux through mono.

[Code]...

The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly(/root/HelloWorld/HelloWorld/bin/Debug/).

View 1 Replies

Asp.net - Use Of Multithreading In Web Apps

Dec 17, 2011

I am using an Application server for calling Oracle Reports and I have a URL to call the report. When the report is called the server converts it into PDF but when report contains large data it takes a lot of time to load. I want to do in asp.net that when I call the report url it opens the PDF file and copies it into the root of my web folder. The next time when I call the URL it opens the PDF file and creates a new PDF on backend for next call. I have made this function to download file

[Code]....

View 2 Replies

C# - .NET Framework 1.x Apps Run On PC's With .NET 4.0 Only?

Oct 3, 2010

Basically, i am trying to determin if an application made for 1.x will run on a computer with just one copy of the .NET framework installed which is a higher version than what i am targetting, ie: it only has one copy of .NET 2.0, or 3.0, or 3.5 or 4.0 - has one copy of either of these and thats it, the hypothetical computer would not have 1.0 or 1.1 installed.

[Code]...

View 5 Replies

Can't Find The Exe Name Of Any Of Apps

Sep 12, 2009

Usually when you right click on an application, and then click on properties, you can find the applications exe name. Such as, explorer.exe, mspaint.exe, and much much more. But I can't find the exe name of any of my apps.

View 7 Replies

Communicate Between 2 .Net Apps?

Apr 10, 2010

If I control both applications, what is the best way to communicate between 2 exe's written in VB.Net. For example, I want to drop an XML file from one app, and pick it up with the other, but I do not want poll for the file. I've heard of named pipes, but I found it was complicated. What's the most effecient way to do this?

View 4 Replies

Develop Apps For PC And Mac?

Mar 19, 2012

I need to develop some apps that will be accessed from both PC and macs. Can this be done with visual Studio 2010?

View 2 Replies

Getting A Bug In Console Apps?

Nov 1, 2009

I have the following

Private Sub startMySQLConsole()
Dim parameterString As String
parameterString = ""

[code]....

For some reason, it partially exists the program. The first letter of the line is starred (MySQL wants me to enter a password).I want to use get to mysql via the my app, which launches mysql.

View 1 Replies

Regarding Apps And Animations?

Jul 8, 2010

I'm developing a media player app and upon looking at it for a week now, it seems really bland. I would really like to add some animations for it (besides just moving forms with x,y locations) but have no idea where to start.

Are more complex apps/designs/animations better suited for a language like c#/c++? I've never done animations before (except simple form moving) and I think now would be a great time to get some opinions!

You could probably say this would linger more so on 3d images and 3d animations

View 3 Replies

Using Same Code In Different Apps?

Sep 9, 2009

say i have a piece of code of some function I would use in many different new apps for example

Code:
Dim Expression As New System.Text.RegularExpressions.Regex("S+@S+.S+")
If Expression.IsMatch(txtEMail.Text) Then

[code].....

View 4 Replies

Can Refer To Samples Of Such Apps?

Aug 15, 2011

I would like to develop a VB.Net based smart device app. A simple one. Do any of u know where i can refer to samples of such apps?

View 2 Replies

C# - Switch Between Two Apps Seamlessly?

Jan 17, 2012

I have a .NET application that was written in C# and VB.NET using WinForms. We want to slowly migrate this to something new, in many iterations. The new code will be entirely C# and WPF. We would like to utilize Prism.

As far as I know, we can't integrate the old WinForm app in Prism.

I am considering making my old app show the new app in certain instances. For example, when you press a tab in the old app, the new app opens on top of the old app, with the same tabs. Over time, only the new app would be necessary.

View 1 Replies

Can VB Handle Apps That Interact Well With The Web

Jan 12, 2011

I'm looking to pick up a programming language. I've viewed some source code of both VB and C# and VB looks like something that I can pick up well.My question is can VB handle creating apps that will interact with the web? Things like signing me into accounts, downloading information, things of this sort?

View 2 Replies

Console Apps Like Cmd Edit?

Jun 14, 2011

Is it possible to create console apps like the Edit app in CMD with visual basic or C#? I want the program to respond to mouse input, have menubar, mssgboxes and windows.

View 3 Replies

Controls On Third Party Apps

Jan 1, 2010

Im trying to detect when numbers change in a 3rd party app and then capture them for crunching. I do recall something back in the days of vb5 that would list control info when the mouse hovered over it. Cant seem to find anything like it these days. Ive got window handles ok, just cant read the control data.

View 9 Replies

Create Apps Without .net Framework?

Apr 5, 2012

I have learned to create programs in VB.NET with Visual Studio, but the downside of that is that i need the .NET framework, which is not on every computer. Can I create a program in VB.NET without it needing the .NET framework? If yes, what tools do i need?

View 1 Replies

Deploying Apps When Update URL Is Not Available?

Jun 1, 2011

I am having a real issue deploying applications when the URL is not available.how to do updates when the URL is not available? I guess I could always put it in code within a try/catch and do it that way.

ERROR DETAILS
Following errors were detected during this operation.
* [6/1/2011 10:37:25 AM] System.Deployment.Application.DeploymentDownloadException (Unknown subtype)[code]......

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved