Calling A .cmd File?

Feb 21, 2012

The cmd file calls a web service that is used to select specific data. When I run the .cmd file manually (as in clicking on it) it runs correctly an saves the file with the information in the appropriate location. However when i try to do this with the .Net app the file is saved however there is no data in it. Why is it when I physically click this same .cmd file with my mouse it works but not when I call it from my application.

View 1 Replies


ADVERTISEMENT

VS 2008 : Calling A Fortran .exe That Calls A File - File Not Found?

Jul 6, 2010

I am trying to run a fortran .exe in VB with the Shell() command. The fortran .exe, when ran, it asks you for a file name. It works perfectly on it's own, but when I try calling it through VB Shell(), it does not work.. (i.e. I cannot get VB to get the file name in it.)

Added info:I am using VB9 but I'm writing in compatibility to .NET. As for the Fortran .exe, when you call it, it opens a command window where it asks for a file name (which I got as a string in VB and I'm trying to pass it in), then you press Enter and it's done. Basically the .exe takes a text file and creates a new text file. We've also tried adding & mystring when calling the exe, but it gives a "file not found" error.

View 3 Replies

Calling A Java Class File From VB Via A Batch File?

Mar 15, 2012

I have a VB program that writes a batch file to allow me to run a line of the following format:java <my class file> [options]I then run the batch file using the Shell() routine in VB.When I do this it says it cannot find <my class file>. However if I run the same batch file from a dos prompt it works.why it works in a dos prompt but not in the Shell function?

View 1 Replies

IDE :: App Calling For Help File

Jun 18, 2009

i have a vb net app and have created help for my app using robohelp and incorporated the help to my app, so now i would like to know if is posible to open a window on my app like students windows and if dont know how to operate the window be able to press F1 and call for my help file on page "How to operate student window" it's a wasy way to do this? im using vb net 2008 my help file was using robohelp and is htm format using Web Help Pro version.

View 11 Replies

Calling .exe File From VS2008?

Aug 8, 2011

I am programming in both Matlab (Matlab2011a) and Visual Basic (VS2008).I've created a .exe file from my matlab code. It works well when I click on it with my mouse. But I need to run it within Visual Basic. I know it's possible to call .exe files with Shell() or Process.Start(), and it works well for files such as firefox.exe or notepad.exe.

However, it doesn't work when I call my own .exe file ... It's weird because when I look to the Task Manager while trying to call it (within VB), I can see the process starting and ending, but its output doesn't appear.

View 4 Replies

Calling Colors From A .txt File

Jun 14, 2011

Beginner question of the day: I have a .txt file that is a series of color names like this-

[Code]...

View 4 Replies

Calling One Class File In Another?

Aug 5, 2010

<div sizcache="0" sizset="0">

i am having 2 class files a.vb and b.vb i have some public shared function in a.vb which i need to call in b.vb i have called it inthis way like the way i has called in normal .aspx pages in b.vb page i called the function of a.vb as

a.funcpwd("filedname") error BC30451: Name 'a' is not declared.
</div>

View 7 Replies

ActiveX Component - Calling EXE File?

Sep 23, 2009

I have created a reference to an activex com component in my project and I am wondering how I now get the program to open the active x form, I have got a GetObject function but the error is "cannot create activex component". Is there a way to call an active x .exe file so that the file opens?

View 5 Replies

Calling An Exe From An Embeded Resource File?

Apr 8, 2009

Im using Visual Studio 2008 and have an .exe file embeded in a resources called Extract.exe.How do i execute the exe file?i've tried My.Resources.EXTRACT but i just get an error saying

View 1 Replies

Import - Calling Class From Another File?

Apr 22, 2010

Lets say I have a class like this in class1.vb:

Public Class my_class
Public Sub my_sub()
Dim myvar as String
myvar = 10
Session("myvar") = myvar
End Sub
End Class

Then I have a ASP.NET page with a code-behind file, default.aspx and default.aspx.vb and I want to call my_class. I'm doing the following, but it doesn't work:

[Code]...

View 3 Replies

VS 2010 Calling Powershell File

Jun 9, 2011

I'm currently having issues calling a .ps1 file in my vb.net project. The program is supposed to provide a simple way for end users to unlock Active Directory accounts. The vb.net project is simply a text box with a button. Users will type the username of the locked account. When the button is pressed, the program writes whatever is in the text box into a CSV file. The CSV file has a samAccountName column in it. After the file is written to, the program then calls a Powershell script that reads the CSV file and unlocks the account based upon what is in the file.The program does everything it is supposed to except for calling the Powershell script to actually unlock the account. I've tried a Process.Start(filePath) which would open the file, but opened in notepad and didn't execute anything. Right now the program is calling a batch file which is supposed to run the script in Powershell but that attempt also failed.

View 3 Replies

.net - File Remains Locked Even After Calling Filestream.close?

Feb 10, 2010

In my application, i am downloading file from DMS system to my server. Once the file gets downloaded, on some environment, the iis keeps lock of the file and when the application tries to redownload the file and put the file on same location, an error is generated that file is being used by another process. Following is the code :

[Code]...

View 1 Replies

Asp.net - Calling Browse File Window Of Fileupload Control?

Oct 5, 2010

I have an ImageButton and a FileUpload controls in a child page of a master page. I would like to achieve something like when user click on the ImageButton, the browse file window will pop-up like what we did when we click on the Browse button of the FileUpload control.How can call the browse file window of the FileUpload control when i click on the ImageButton?

View 1 Replies

.NET Multithreading / Calling Invoke On A UI Control From A Class In A Separate Class File?

May 13, 2011

Example:

Two files - TestClass.vb, myForm.vb

TestClass.vb looks as follows:

Imports System.Threading
Public Class TestClass
Private myClassThread As New Thread(AddressOf StartMyClassThread)

[code]....

The result:Application runs, no errors or exceptions.Displayed is the listbox and the Start button.I press the start button and a msgbox says "Not Invoked" as expected and upon clicking OK to that msgbox "Start Button Pressed" is added to the Output listbox control.Immediately following that the msgbox pops up again and says "Not Invoked". I was expecting "Invoked" as a separate thread is trying to use the Output listbox control.Of course this results in the Output.Items.Add being attempted which results in no visible result as the thread is not allowed to directly update the UI control.

View 1 Replies

Calling .NET Dll From C++?

Aug 3, 2010

I have a C++ application exe that uses a C++ dll. I don't have the source of this C++ application and cannot rebuild it. But I know that it uses the traditional LoadLibrary and GetProcAddress to access individual functions in the dll.For some reasons, I want to replace the C++ dll with a VB.NET dll. The dll is not and ActiveX and is therefore not registered.I think I cannot use a class but a module since the C++ exe application does not expect any class in the dll. In all my attempts, I could not have the inner functions of the VB.NET to be called by the C++ exe.How should I write the VB.NET dll?

View 2 Replies

Calling C++ DLL From .net?

Sep 16, 2011

I do realize that a number of questions regarding calling a DLL from vb.net have been raised. I have implemented the DLL from vb.net. I would like to know if the calling procedure is correct or should I be calling the DLL in a different way?

C++ DLL prototype

extern "C" int FitCurve(int solid_or_fluid, int prop_id, int fit_id, int N_points, int N_terms, char *file, double *x_data, double *y_data)

View 3 Replies

Calling C++ DLL From VB?

Sep 1, 2010

I'm not sure whether this is a VB forum question or a C++ question, but I'll try here first. I have an API library written in C++ (including source) which compiles to several DLLs. I want to call the functions in the library from VB but I can't get the parameter passing right.

[Code]...

The above example runs but returns nothing. If I change DeviceName to ByRef, I get protected memory errors.

The full library and documentation is available on the internet if anyone would like to download it and I've successfully compiled it with VS2010.

View 2 Replies

Calling C++ Dll In VB?

Dec 28, 2010

I have a dll which has one function and I want to call this function from Visual Basic 2008. I tried every solution, but I couln't get it to work,

The original declaration is the following in C++

extern "C" CSSM_API void GetOptimalCSSMShaderParams(
float* outProjMatrixArray
,float* outCtrlMatrixArray

[Code].....

View 1 Replies

Calling SAP RFC Using .Net?

Jun 9, 2010

I want to connect to SAP and call RFC from VB.Net 2008.I have done it with VB 6.0 But not getting success in VB.Net I used following code in VB 6.0

Set ctlLogon = CreateObject("SAP.LogonControl.1")
Set oConnection = ctlLogon.NewConnection
oConnection.User = "SIILRFC"

[code].....

View 8 Replies

Calling VB DLL From C++?

Jun 21, 2012

I have followed instructions on Best way to use a VB.NET class library from a C++ DLL? but being new to VB I don't know if I've got the VB part right let alone the C++. here I'll correct the code below for posterity's sake!

Here they are: VB first; the project is a Class Library, all settings default except that "Register for COM interop" is switched on in the project properties.

Public Class Class1
Public Sub New()
'do stuff

[Code]....

is the VB correct? Do I need to add anything like an interface to it? Assuming I want to call it over COM not C++/CLI, how do I do that. (This seems like the logical choice as the client already calls other stuff over COM; however, I'm not sure where to get the IDispatch pointer from, in my other code it's passed to me by the client). If I went the C++/CLI route, when moving up from toy project to actual implementation, that would mean changing my existing C++ code from "no clr support" to "/clr" - is that likely to break it?

View 1 Replies

Calling VB.NET From C++?

Aug 3, 2010

I have a C++ application exe that uses a C++ dll. For some rasons, I want to replace the C++ dll with a VB.NET dll. The dll is not and ActiveX and is therefore not registered.I cannot use a class but a module since the C++ application does not expect any class in the dll. In all my attempts, I could not have the inner functions of the VB.NET to be called by the C++ exe.How should I write the VB.NET dll?

View 4 Replies

.net - Calling A Sub And Returning A Value?

Mar 15, 2012

This might seem like an insanely easy question, but I cant seem to find an answer anywhere to it. I'd like to think that I am decent at VB but while I was learning javascript the other day I found something that seemed awesome and now I cant figure out how to do it in VB.in javascript it looks like this

var someValue = getThatValue()Its both calling and setting the value from the getThatValue() sub. what is the VB equivalent?

[Code]...

View 2 Replies

.net 2.0 - .Net Calling New Without Assigning Value?

Jun 10, 2010

In C# I can do this:new SomeObjectType("abc", 10);

In other words, I can call new without assigning the created instance to any variable. However, in VB.Net it seems I cannot do the same thing.New SomeObjectType("abc", 10) ' syntax error

Is there a way to do this in VB.Net?

View 3 Replies

A Calling Error With SAP And .NET

May 14, 2012

I was using .NET for development an SAP application but recently, it always shows me the message below:

failed to call remote function module

I didn't change any setting or source code. But it still has the problem.

View 1 Replies

C# - Calling Web Service From C++ V6

Nov 17, 2009

i have been deploy webservice in vb.net .

is there will be any problem if i will cal the webservice from c++ (version 6) or Microsoft Access VBA?

View 3 Replies

C# - Run.Cs Or.Vb Files Without Calling The In Asp.net

Oct 13, 2009

By security reason I ask this... Can .cs or .vb files to run in any way without calling those in asp.net?

View 2 Replies

C++ - Tcl Extension Calling A .NET DLL?

Feb 8, 2012

I have a need to create a Tcl extension that calls a managed .NET DLL/Class Library. Currently, the structure of my application is Tcl > DLL Wrapper (C++ CLR) > .NET Class Library (VB.NET), where ">" represents a function call.

My VB.NET DLL just takes a value and returns it back, keeping it simple for now. In the end, this will do some more advanced stuff that makes use of some .NET functionality.

Public Class TestClass
Public Function TestFunction(ByVal param As Integer) As Integer
Return param
End Function
End Class

My Tcl Extension (C++ CLR) creates an object of the type above

int TestCmd(ClientData data, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])
{
// Check the number of arguments

[code].....

If my VB.NET DLL is in the same directory as my extension DLL, the extension crashes when it instantiates a TestClass object. I've noticed if the VB.NET DLL is relocated to C:Tclin, the extension will find it, and TestCmd can be called just fine. The problem is that this will eventually need to be deployed across a number of PCs, and it's preferred not to mingle my application's files with another application's.

View 2 Replies

Calling 16 Bit Executable On 64 Bit OS?

Jul 20, 2009

Is there any way to execute older 16 bit executables on 64 bit OS?

my code does a lot of runs of old 16 bit .EXEs inherithed from DOS era, but it does not work on 64 bit.

View 8 Replies

Calling A C DLL Function?

Oct 3, 2011

I have used the PInvoke Signature Toolkit to create VB.NET function definitions for three fairly simple C functions contained in an external DLL. The problem is that two of the parameters are structures so pointers need to be sent and one structure (fileview) is undefined.

OpenFileView(filename, &fileview_ptr)
ReadFileInfo(fileview_ptr, &fileinfo_ptr)

The structure of fileinfo is defined so I can create a structure definition in VB.NET and create an IntPtr to that structure with Marshall.AllocHGlobal. And then I can use Marshall.StructureToPtr to copy the data and do the inverse when the data is returned.

[Code]...

View 1 Replies

Calling A C Function From A DLL?

Dec 7, 2009

I'm having some problems calling a C function from a DLL. The function is returning -101 which translates as a "bad parameter". The values I am passing have been returned from another, successful function call, so my current assumption is that I've built the structure incorrectly.The function definition is:

int sm_switch_channel_input(struct sm_switch_channel_parms *switchp)
Parameters
*switchp (a structure of the following type):
typedef struct sm_switch_channel_parms {

[code].....

View 2 Replies







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