Make An Application That Works On Other OS's (Mac OS X - Linux)?

Oct 27, 2009

Can I make an application that works on other OS's (e.g. Mac OS X, Linux)?

View 3 Replies


ADVERTISEMENT

Make An Application That Search The Files Like Grep In Linux?

Jan 31, 2011

I would like to make an application that search the files like grep in linux.

View 1 Replies

Mpd Server Working In Linux Machine - Code Works Fine Until There Are Spaces In Directory Name

Jul 21, 2011

I have mpd server working in Linux machine. Code works fine until there are spaces in directory name.

How can I handle spaces?

CODE:

View 6 Replies

[2008] Send Linux Console Commands To A Remote Linux Server?

Jan 23, 2009

Is there a way for my program to send Linux Console Commands to a remote Linux server?

View 4 Replies

Run .net Windows Application In Linux?

Jun 11, 2011

can We run VB.Net windows Application (2.0 Framework) in Linux.

View 2 Replies

Make Linux Compatible Software With VB 2010?

Feb 5, 2012

anyone know how to make linux compatible software with Visual Basic 2010? is it possible? and how could you do this?

View 2 Replies

How To Deploy .net Windows Application In Linux

May 26, 2010

i developed a windows application in vb.net 2005 and i used ms-access as my database. i need to deploy my application in redhat linux operating system.

View 4 Replies

Porting .net Application From Windows To Linux?

Mar 21, 2011

I developed an application using VB .NET on a Windows OS. If I want to enable this application for a client who uses Linux , how do I do so? Do they need to purchase VB .NET? I am totally lost on how this works.

View 5 Replies

VS 2005 Run Windows .net Application To Linux

Jul 31, 2009

I developed a application using vb.net 2005 and sql server 2008 for windows but i want to run this application on one of the client which is linux. means : windows server 2003 on which database is install. Five client machine is Windows Xp on which application is running ok they have two machine on which linux is loaded. Now I want to run the same application on linux machine also Guide how to do this..

View 3 Replies

VS 2010 Cross Platform Application (windows & Linux)

Dec 22, 2010

am devoloping a simple program in vb.net but i wanna do it a cross platform almost (windows & linux) or if there is a vb.net to C++ code converter

View 2 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

How The Application Works

Jun 8, 2011

I am a final year computer science student and i was confronted with this topic: Design, development and implementation of an efficient Bandwidth management system. i code with Vb.net and microsoft SQL 2008 as my database engine. honestly i've not written such application before, so i need a guide how the application can be built(especially the interface).please am not asking for the source code(if there is any), i only need a detailed flow on how the application works.

View 2 Replies

Make A DLL Function That Works With GetProcAddress?

May 29, 2011

I recently created a Class just for dynamically invoking API's and it works with system libraries (kernel32, user32, etc.) Here is the code:

NotInheritable Class DynamicAPI
#Region "API"
<Runtime.InteropServices.DllImport("kernel32.dll", SetLastError:=True)> Private Shared Function LoadLibrary(ByVal lpFileName As String) As IntPtr

[code]....

View 5 Replies

.Net Windows Application - How It Works

Jul 20, 2010

We have an application(.exe), longtime back some developer wrote the code and now he is not with the company. I happend to be support this application. I have to do some modifications in the code.I have a .vb file and .Config file with me. The .VB file is calling a SSIS pkg and doing some dataload and creates some files and it formate the file names what it generates and it send emails to large group of ppl.I have opend the code in Visaulstudio but i do not have any option to debug or do some breakpoints.How can I use this config file?Do I have to add both of them in the project? To debug I need SSIS pkg as well so do I have to add all these 3 of them into my solution?I know where to change the code, after changing the code how can I create a application EXE file?

View 6 Replies

Crash - .net Application Only Works On 64-bit PC's?

Mar 29, 2011

I have had afew people test my application and all of the 32-bit users are telling me it is not working.

Problem signature: Problem Event Name:
CLR20r3 Problem Signature 02: 1.0.0.0
Problem Signature 03: 4d9235a5 Problem

[code]....

View 2 Replies

How To Make Keypress Works With Auto-complete

Nov 16, 2009

I have a code keypress that automatically input a text in a particular textbox if the text i pressed match the fields.eg. when I type 32 in the ID textbox . The name of the person whos ID is 32 will be put on the name text.it works perfectly but when I use autocomplete on the textbox it will not work anymore. is their a way or can anyone tell me why it isnt working.?eres the code for the keypress

Private Sub txtSubjectCode_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtSubjectCode.KeyPress
If e.KeyChar = Chr(Keys.Enter) And Me.txtSubjectCode.Text <> Nothing Then

[code].....

View 2 Replies

Make Keypress Works With Auto-complete?

Mar 5, 2012

I have a code keypress that automatically input a text in a particular textbox if the text i pressed match the fields.eg. when I type 32 in the ID textbox . The name of the person whos ID is 32 will be put on the name text.it works perfectly but when I use autocomplete on the textbox it will not work anymore. is their a way or can anyone tell me why it isnt working.?

heres the code for the keypress

Private Sub txtSubjectCode_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtSubjectCode.KeyPress
If e.KeyChar = Chr(Keys.Enter) And Me.txtSubjectCode.Text <> Nothing Then

[code].....

View 1 Replies

VS 2008 Make A Function That Does What This One Does But Works Faster?

Oct 27, 2009

I have a function that I use quite a bit that I wrote more than 2 years ago. It works fine but recently I saw how it can use up a good deal of time under certain condition. Here's some code that uses the function SelectValue The function works so that if you had N which you plug into the function rising continuously while SelectLimit was set to 255 then SelectValue would match N until N reached 256. SelectValue would start to descend to 0 until it reached 0 and then it would again ascend to 255 and the process would repeat. So SelectValue(255, 255) would return 255 and SelectValue(256, 255) would return 254. SelectValue(257, 255) would return 253.

Option Strict On
Public Class Form1
Dim sw As Stopwatch

[code]....

The function works exactly as I want it to but if one of you knows a way to write this so that it will process faster then you can let me know. I get a result for processing time of 6.11 seconds on my computer for the above code.

View 2 Replies

Deployment :: Application Works Properly On PC But Not Others

Mar 8, 2010

I have an application developed in VS2008 VB.net. It is a numberpad with buttons for 0 - 9.When published and installed on my local PC, everything works as expected. I open a browser window, and am able to click a number-button and have the corrosponding number sent to the active window location. When installed on other PC's, the numbers sent to the active window location are repeated many many times. If you click the "3" button, then anywhere from 10 to 50 "3"s are sent to the screen.All PC's have Windows XP Professional, Version 2002, Service Pack 3.The only differences I can detect are the many many .NET frameworks installed on my computer and not on others.[code]

View 1 Replies

Multithreading - Understanding The Way Application.Run() Works?

Nov 4, 2010

As far as I understand from the docs, it seems that Application.Run() starts a message loop on the current thread, which in turns enables it to process user input (Is that right?).The overloaded version Application.Run(Form) basically does the same, only it exists when the form closes, and it shows the form by default.timer ticks after 20mns, and has to execute say approx. 15 tasks one by one, every time creating an instance of a progress dialog, initially hidden in the taskbar.

View 1 Replies

Regex - Works On Every Regextester But Not In .net Application?

Nov 23, 2011

i got the following regex, which is working on some regex testers out there flawlessly.I want 1 item with "500", 1 with "600" and 1 with "-100".

Dim matches As MatchCollection
Dim regex As New Regex("(d+)s/s(d+)s((-?d+))")
matches = regex.Matches("500 / 600 (-100)")

My matches.count is one, with the complete string. Nothing else.

View 2 Replies

SQL Server Express Works With Application?

Jun 8, 2012

I am totally confused about the way SQL server Express works with my application, it seems like it is a hit and miss whether it works or not.In my Server Explorer if I show data, I see data in my tables.

[Code]...

View 7 Replies

IDE :: Datagridview : Make A Search Engine That Works On Isohunt?

May 9, 2011

make a search engine that works on isohunt ( This is a torrent site )Here what I need :A program to search in ( isohunt ) site View the results in a datagridview control Save the search results in any thing to load it at any time?

View 3 Replies

VS 2010 Make Keypress Works With Auto-complete?

Mar 5, 2012

I have a code keypress that automatically input a text in a particular textbox if the text i pressed match the fields.eg. when I type 32 in the ID textbox . The name of the person whos ID is 32 will be put on the name text.it works perfectly but when I use autocomplete on the textbox it will not work anymore. is their a way or can anyone tell me why it isnt working.?

Private Sub txtTicketPassengerNo_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtTicketPassengerNo.KeyPress
If e.KeyChar = Chr(Keys.Enter) And Me.txtTicketPassengerNo.Text <> Nothing Then

[code].....

View 3 Replies

Application Crashes At Run Laptop, But Works On Netbook?

Jul 2, 2010

I seem to have a problem with an application i made. I hope you can help me with this as it has puzzled me for awhile now.

[Code]...

View 7 Replies

Make A Program In Visual Studio 10 That Works On Older .net Frameworks?

Aug 30, 2009

how do i make a program in visual studio 10 that works on older .net frameworks?

View 1 Replies

.Net Application Stopped Working On XP But Works Fine On Windows 7?

Jun 23, 2010

I have VB.Net application that has worked fine for years on XP and Windows 7. For some reason the last update I put out does not run even the simplest VB commands.Simple Environ() fails.I have tried putting simple VB commands onto a MsgBox on the start of the app and everything raises an error. I have no idea what is going on! The exact same app runs fine on Windows 7 clients. All the XP machines including a fresh XP virtual machine with the .Net 3.5 framework even gives the errors. No VB commands are working. I thought maybe something happened to my vbproj files, so I copied an older one from a couple weeks ago when things worked fine and it still does not work.

View 2 Replies

Client/Server Chat Application ..Works Only On Same Network?

Mar 14, 2010

I have a client/server chat application which I made . My question is how do I make the application work not only Locally but On any other network. I tried putting my IP in the part of creation of the client socket .

View 2 Replies

VS 2008 : Make A Program That Works With Multiple Versions Of Microsoft Office?

Mar 3, 2010

What is the best way to make a program that works with multiple versions of Microsoft office? I own office 2007, so my program uses the office 2007 com objects. When I try to use my application with office 2003, I get errors related to the com objects. Does Microsoft have com objects that are compatible with multiple versions of office?

View 2 Replies

Visual Studio 2010 - .net Application Works With Files Dragged Onto The Exe But Crashes If There's A Space In The File's Path?

Jun 15, 2011

I'm developing an application in vb.net. You drag any type of file onto the exe, and a window pops up with some options for the file, then it saves the file to a different location, works some SQL magic, etc. It works great for the most part. The only issue I've found is that if the path of the file contains any spaces, the application will crash immediately with the error window:[URl]..I'm using: Private filename as String = Command$ This is located right inside my form's class declaration, not within a sub/function.Without this line, my program runs fine (although useless, without accessing the file).I've also tried (I think this was it, I don't have the code with me at the moment): Private filename as String = Environment.CommandLine So, in vb.net, is there a way to drag a file onto an exe and use that path name, even if there are spaces in the path name?

View 2 Replies







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