Converting MINI-BASIC Over To .NET?
Mar 9, 2009
Would it be an easy task to convert MINI-BASIC, written using MASM, on over to VB.NET?Here is the Yahoo Groups page for MINI-BASIC: [URL] MINI-BASIC is a modern variation on the old Tiny BASIC language from 1976.
View 17 Replies
ADVERTISEMENT
Apr 24, 2011
creating a mini mp3 library and a mini mp3 player?
1. With the library, should I use a database or how would I create a file holding Title, Artiste, Filepath to MP3 file.
2. With the player, is there a built in mp3 feature in Visual Basic Express Edition 2008?
View 2 Replies
May 4, 2009
I�ve tried a verity of different things but I can�t seem to find something that works so I thought I would Ask here, if This is the wrong place then Sorry If you could point me to the correct place the I would Post there. Now I have this JavaScript code that I want to get working in a VB.Net Client side application?
function send_request() {
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
http_request = new XMLHttpRequest();
[code]....
View 1 Replies
Jan 16, 2012
I'm trying to convert an old Quick BASIC program to VB.Net. There doesn't appear to be any direct replacement for the old file statements. Building a database seems like overkill for my simple needs.
How can I do the following in VB.Net?
OPEN "test.dat" FOR RANDOM AS #1 LEN = 20
FIELD #1, 10 AS a$, 10 AS b$
LSET a$ = "One"
LSET b$ = "Two"
PUT #1, 1
GET #1, 1
PRINT a$, b$
CLOSE #1
View 1 Replies
Nov 23, 2011
I've been given this simple VB application and library which I'm told can open a door/turnstyle attached to the printer port at 0x378 base address.'Inp and Out declarations for port I/O using inpout32.dll.
Public Declare Function Inp Lib "inpout32.dll" Alias "Inp32" _
(ByVal PortAddress As Integer) _
As Integer
[code]....
how to declare the library functions and what to declare the variables as (&H378 is obviously not an integer)
View 2 Replies
May 12, 2009
I wrote a VB.NET windows service and I'd like to know if there is some library or something that will provide me with a very simple mini web server. If my service is running, I'd just like to be able to type, in my browser:
[URL]
And have a status page popup. It will only be one single page and very simple html. Anyone know an easy way to do this before I attempt it on my own and over-engineer?
View 8 Replies
Jul 30, 2009
I have created a application that I have installed on the user computer. However, I want the application to be self-updating. But I am not sure if this would really update the application.The application will download all the files from the web server, and replace the files in the directory where the program as been installed to. The user will restart the application.I am just want to be sure, because I can't replace the installed files with the updated ones. As the application will be running. So really the application cannot delete/replace itself
View 5 Replies
Nov 30, 2010
i am taking on some new program ideas! And my first one ist to make a mini vb devoloper i already have a html editor but i would like to make one like .net with the tabs solution exsplore and controls and maybe visual designer if possible. If you know of any ways of doing please let me know i am desprate.
View 1 Replies
Jan 24, 2009
I'm making a WPF form that has a large map as an Image in a ScrollViewer. It also has a mini-version of the map as another image. I want to make it possible to click the mini-version of the map to scroll the big version to a certain area of the map. So I need to do the following:
1. When moving the mouse over the mini-map change the mouse cursor to a square with the appropriate size to indicate what part of the map will be shown.
2. Scroll the big map to the appropriate section when the mini-map is clicked.
View 10 Replies
Nov 16, 2011
I tried a mini encryption with the modulus operator but now I can't DECRYPT what I encrypt.How do I use the modulus operator to decrypt this:
Public Class Encryption
Private Sub btnEncrypt_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEncrypt.Click
'Encrypt digits entered by user[code]......
View 9 Replies
May 11, 2009
I want to make a mini browser for my IT department. I want to have buttons that will load internal websites and log in. I understand how to load th epage but have no clue how to pass the log-in information.
View 3 Replies
Jan 7, 2010
How can I make a floating toolbar (like the font toolbar that appears when highlighting text in Word 2007)?
I would like it to appear at a given point when mouse is clicked.
View 9 Replies
Jul 16, 2009
I just got finished writing a mini on screen keyboard for the xp login screen.Does anyone know if this will be easily possible with Vista, or 7 ?If not, what are the hitches?
I was beta testing 7 until recently, so I don't want to waste time re-installing it for no reason.
View 14 Replies
Jun 12, 2009
i am a student of b-tech i want a ppt for my mini project i.e. web browser using vb.net .
View 4 Replies
Mar 6, 2012
I'm writing a program that will be searching files for the user and I need to find a good method to do so. Obviously it will need to filter the search to try to get the best result possible.
View 6 Replies
Sep 13, 2011
I need to read data from a GPS logger that plugs into a computer using mini USB.
I need to do this with C# but ive never used C# before so i am completely clueless.
I dont need code right now though the first thing i need to do is just recognise what processes this task consists of. What method is used what are the things i need to do.
I really need it explaining in as simple terms as possible ive tried searching the net for it for hours but terminology is so complicated and im so clueless i dont think i would recognise the correct information if it hit me in the face.
View 2 Replies
Jun 20, 2011
Bit of a long shot but does anyone know if it is possible (I said possible, not easy ) to create a file system mini filter driver in .NET? I'm assuming not but I don't really know of any technical reason why... just that every single example on the interwebs is C++.
I realise it would take me a very long time just to convert all of the functions and structures required to .NET before I even got started on the actual functionality of the filter driver itself but theoretically is it possible?
View 2 Replies
Aug 22, 2011
my goal is to
1.Take an file(exe,dll,etc)
2.Convert it into hex
3.place that hex values in a stack
4.Execute the values inside the stack to its original form(i.e. take the elements out of stack and then convert it to a compile format)
Imports System.IO
Sub Main()
Dim fileName As String = "ABC.exe"
[code]....
View 1 Replies
Jan 24, 2011
How do you extract source code from a VB.NET .EXE file?
View 3 Replies
Jun 8, 2009
I am having trouble converting this Do Until loop to a Do While loop. Sub btnCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalc.Click calculates and displays the average sales amount Const strPROMPT As String = _
[Code]...
View 5 Replies
Mar 10, 2010
I have the following in vb.net and need to convert it to c#. Seemed rather simple at first but I need to pass in the NamedObject variable as welll which is supported in vb.net but not in c#..
What are my options.
Here is the vb.net - notice the NamedObject
Public Property Datos(ByVal NamedObject As String) As T
Get
Return CType(HttpContext.Current.Session.Item(NamedObject ), T)
[Code]....
View 4 Replies
Jun 9, 2009
I am trying to convert an MP3 to a wav. The wav file is created, but I am having problems elsewhere. The label is displaying the wrong data("Cancel/Error") and the progressbar is doing nothing. I am using lame 3.98 .exe and a wrapper for the exe. I downloaded the LameShell project from codeproject. Here is a section of the wrapper class. This was originally for resampling a mp3 to mp3.
[Code]...
View 2 Replies
Nov 17, 2010
I'm developing a program to execute powershell from .net app. I found a sample but it uses c# so I'm changing the code to vb.net but I don't know how change the following line:
Collection<psobject /> results = pipeline.Invoke();
View 2 Replies
Feb 14, 2011
The C# version works but when I convert it to VB it doesn't. What am I doing wrong?Its for opening an HTML doc into a usercontrol.
VB
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
[Code]...
View 4 Replies
Apr 9, 2012
how to convert this c++ sub to vb.net?
// Create points to simulate ellipse using beziers
void EllipseToBezier(CRect& r, CPoint* cCtlPt)
{
// MAGICAL CONSTANT to map ellipse to beziers
[code]....
View 3 Replies
Sep 11, 2009
I found some code on preventing DOS attacks written by Omar Al Zabir thta I would really like to use on a website written in VB.NET.
The code is at the following link -[URL] but is in C# I tried to convert using variios different programs but there seems to be one line that keeps giving me problems.It's the line
var hit = (HitInfo)(context.Cache[key] ?? new HitInfo());
in the method -
public static bool IsValid( ActionTypeEnum actionType )
{
HttpContext context = HttpContext.Current;
if( context.Request.Browser.Crawler ) return false;
[code].....
View 5 Replies
Dec 30, 2009
I am trying to convert this code from C# to VB. Tried to use third party tools, but not successful.
[code]...
View 3 Replies
Jan 21, 2010
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code].....
View 2 Replies
Jan 21, 2010
I am converting my project from VB6 to VB.net 3.5 and at one place i have declared private variable a() as variant and i am using some place as b =a(index,0) it will work in VB but gives me error in VB.Net the error is Number of Indices exceeds the number of dimensions of the indexed array.
View 4 Replies
Jan 19, 2011
It is a program on which logic programs can be developed, compiled and downloaded into Programmable Logic Controllers. It is fairly big and complicated and the resulting .exe file is about 2Mb. I need to develop the program further now, and would like to use VB.net. When I try loading the VB6 code into VB.net, it changes all the variables of type Integer and String into type Object. It then states all through the resulting code that the default values are not defined. I assume that if defined as Integer and String variables do not need a default value, it would assume them to be 0 and empty. Any ideas why the program changes the variable types during the converstion? All forms start with 'Option Explicit', so all variables are defined.
View 3 Replies