-4
votes
2answers
71 views

How to convert c code to vb.net? [closed]

How can I convert the following into VB? What does it mean? unsigned char *s = (unsigned char *)(void *)serialNum;
-1
votes
0answers
30 views

How I can get log in time asp.net 4.5 in visual studio 2012 [closed]

How I can get log in time asp.net 4.5 in visual studio 2012 i want to store the time for example {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8} cqn u help me encrypt the array with public key (modulus AND ...
1
vote
0answers
30 views

SSRS Pull Image variable from file

I'm using Visual Studio 2008 to create a report and I have an image control that I want to link to a dynamic file name that comes from my database. Unfortunately, they need to be changed before I ...
1
vote
1answer
35 views

Passing parameter from VB .Net to C (structure)

I'm trying to pass one structure from VB to C. this structure has only 2 members. The problem is that only the first member maintain the value. I guess that's a problem with the size of each member, ...
-3
votes
1answer
74 views

How do i get started in Network Programming? [closed]

I would like to get started in Network Programming on anything like Web, Window App, Apple device, Android device but i don know where to start all these thing...and i also have a good solid ...
0
votes
2answers
104 views

Free IDE for Windows 8 app development [closed]

I am a student whose hobby is app creation. Therefore I don't have hundreds to spend on VS2012. I am looking for an IDE to create windows 8 applications. If anyone has heard of one it would be much ...
0
votes
0answers
23 views

MetaData class usage

I am trying to learn a new framework (i think) and i have got to a stage where im not sure whats going on. So i created a class and a Metadata class. My assumption was that i would have had access to ...
-8
votes
1answer
115 views

fingerprint scannaner [closed]

I have code to scan a fingerprint template from digitalpersona device . It work's for me. But it also has some more feature's, like storing templates, verification etc. I just want to extract the ...
6
votes
3answers
169 views

VB newline escape char?

In C I use "1st line 1\n2nd line" for a newline, but what about VB? I know "1st line" & VbCrLf & "2nd line" but its too verbose, what is the escape char for a newline in VB? I want to print ...
0
votes
2answers
203 views

C-style pointer in Visual Basic .NET

I have been investigating C-style pointers in Visual Basic .NET for a while now. I have come across http://support.microsoft.com/kb/199824?wa=wsignin1.0 but I have no idea if that is the right thing ...
-3
votes
1answer
99 views

which software is suitable for running the for loop for 10 lac iterations in milliseconds [closed]

I want to make a video file from given set of sequence of images. I want to set the RGB content of each pixel of HD (High Definition) Image. Usually a HD image has around 10 lac pixels. For this, I ...
2
votes
1answer
166 views

How to marshal a Byte Array with reference to a C Program?

I have a C-Function DecodePacket(BYTE* packet, int size) and i want to use it through dll import in Vb.net. Is it Possible that i give this parameter like a byref, so that the c-function uses the same ...
1
vote
1answer
227 views

pointer array to doubles in Visual Basic

I have a C DLL I wrote to create rasterized graphics which I want to use in VB.NET. At one point it uses an array of pointers to doubles double **ibuffer as a parameter for a function. So how do I ...
0
votes
1answer
102 views

Render graphics in C to VB control

I have written my own software pipeline for 3D graphics in C (just to prove to myself I could do it) and, having seen it work, I want to use it in DLL form as a library for Visual Basic .NET. I have ...
0
votes
1answer
351 views

A better approach to adding DLLs in VB.NET projects

I want to use a DLL written in C in a VB project such that the DLL will be copied to the output directory. I earlier asked this question here and got an excellent answer: VB.Net using C DLL All you ...
0
votes
1answer
83 views

windows application with web search [duplicate]

Possible Duplicate: Programmatically get screenshot of page I am working on a small desktop program in winapi What I want is that the application will have textbox with some buttons. User ...
2
votes
1answer
290 views

VB.Net using C DLL

What is the best way to put a DLL written in C into a VB.NET (Express Edition 2010) project? I have the declarations for the external functions locating absolute paths right now like so: ...
0
votes
2answers
226 views

C - DLL needs to be __stdcall and import __cdecl lib

I'm compiling a DLL which needs to use portaudio. It uses all sorts of windows libraries for sockets and such too, but the linker wouldn't recognize the portaudio library. Then I remembered portaudio ...
1
vote
1answer
95 views

How to encode more than 3 characters in an 8*8 DataMatrix?

I am working on a Datamatrix Encoding Project. We are following ISO200 standard for Datamatrix Encoding, but with an 8*8 Datamatrix we are able to encode only 3 alphabetic or 6 numeric values. Is ...
-6
votes
1answer
168 views

Calculating elapsed time [closed]

main() { clock_t start, end; double elapsed; start = clock(); /* some function */ end = clock(); elapsed = ((double) (end - start)) / CLOCKS_PER_SEC; } I have no ...
1
vote
1answer
62 views

Is it possible to make an application that docks to the top of screen?

Using (I think) Visual basic / studio I want to make a bar to go at the top of my screen which would display a webpage. Before I start trying to code it, is this concept possible (that the bar would ...
2
votes
3answers
671 views

Calling Managed Code From Unmanaged C

So after about a day and a half with this I've made zero progress. I need to write a DLL in C that is used a plugin for an existing application. The DLL has to be compiled by the Visual Studio 2008 ...
0
votes
0answers
141 views

Using a C-callback function with .NET

I'm using a C-library from within .NET This all works quite nice. But I'm having troubles with a callback function. I have this C-code: Bool someCallBack(const char *name, int reason) { //some ...
-5
votes
1answer
109 views

about voice recognizer [closed]

I want to write a program that can recognize music notes.I think i should write something that could understand notes! we give the notes to the program and then we start to play that song,if we made ...
-3
votes
1answer
234 views

Convert C Code To .net (C# Or VB.net) [closed]

I Need Convert This Code To .net (C# or VB.net) Please Help Me For Do This:I Need Convert This Code To .net (C# or VB.net) Please Help Me For Do This: word CalCRCCCITT(word val,byte data8) { byte ...
1
vote
0answers
335 views

Passing C parameters to a dll from Vb.net 2010

Im trying to call a C++ dll from Vb.net.The function which Iam calling is declared in the dll as given below extern "C" DWORD PASCAL EXPORT STDFUPRT_CreateMappingFromDevice(PCHAR szDevLink, PMAPPING ...
2
votes
2answers
341 views

EntryPointNotFoundException loading a C DLL in VB.net

I've spent hours trying to get this simple test case working, and searching the internet for clues. I have a VS 10 solution containing my VB.net project, and a VC++ DLL project. In my DLL project ...
1
vote
2answers
314 views

Generate Windows Forms from WSDL

I have set of WCF web services that I need to generate a Windows based test client. Does anyone know of a tool that will take as WSDL and auto generate some basic forms based on what is in the WSDL. ...
12
votes
6answers
1k views

Phonetic characters to speech

My purpose is that to be able to let my application to talk in less popular language (for example Hokkien, Malay, etc). My current approach is using recorded mp3. I want to know whether there is ...
0
votes
1answer
411 views

Convert Autohotkey Code To Vb.net or C !

i want help please in convert AutohotKey Codes to Vb.net Codes This is my Autohotkey Code F1:: loop, 10 { send, {F2} sleep 10 -// depends on your connection/delay send, {F3} sleep 10 // depends on ...
1
vote
2answers
3k views

Sharepoint beginner developer video tutorials

I do not know anything about SharePoint and we will be moving to SharePoint systems in a few months at work. My manager told me I will be one of the developers developing systems based on ...
0
votes
0answers
391 views

Convert legacy C code to VB.NET/C#

I know that it's not welcome here to provide snippets to convert, but I'm dead in the water. Following is a C function which is referenced once in whole big manufacturing control system. The problem ...
2
votes
2answers
291 views

Upgrading C code to VB.NET - Unioned Structures

I am trying to upgrade the btrieve code written by Jim Kyle in the early 90's to VB.NET and am running into a problem with unioned structures. The old C code is as follows: typedef struct { ...
2
votes
1answer
611 views

Convert following code from C to VB.NET

Hey guys, Can you please give me a hand to convert the following C code into VB.NET. I have a feeling it would be pretty simple... but my C knowledge is very very limited! Any help would be great! ...
1
vote
1answer
87 views

the value of second byte of a single variable

hi guys I have a variable as a single. how can I found out that, what is the value of second byte of my variable. or what is the value of third byte of my variable value in memory.? in c language we ...
0
votes
1answer
106 views

ExecutionEngineException thrown when calling native code

I have a function that is exported by a C library with the following signature: extern "C" BOOL Func() The function is declared in VB.NET code like this: <DllImport("mylib.dll", ...
20
votes
11answers
922 views

What puzzles me…Are .NET languages the mainstream languages for Windows (standalone) applications?

I'm an inquisitive .NET student without any commercial working knowledge and I have been puzzled by what exactlty are .NET languages meant for? Q1.If you look on job websites, .NET seems mainly used ...
0
votes
3answers
134 views

visual basic to c string literals “\\.\” and “\”

In visual basic I have the following 2 strings: "\\.\" & "\" How do I represent them in C? Also, & in VB is the concatenation operator?
3
votes
2answers
2k views

CRC for cross platform applications

I wish to use common CRC logic in a VB.NET or C# application as well as on a C/Linux application. I have one C/Linux application that interacts with a webservice (written in C#) and also a web ...
1
vote
1answer
952 views

Redirecting the Standard Output/Input/Error into/from a textbox

I was making a VB.NET application that can be used to edit, compile and run C programs. I used the Process.StartInfo.RedirectStandardOutput property. But I'm unable to redirect it to a textbox, since ...
0
votes
2answers
626 views

VB.NET Application which can compile and run C programs

These days I'm working on a VB.NET application which can be used to edit, compile and run C programs. Can someone tell me how I can call a cl.exe process from within my VB program and also that how do ...
1
vote
3answers
1k views

passing parameters to unmanaged C api from vb.net

I need to call a function in an unmanaged .dll written in C lang from vb.net. The function declaration looks like this LONG _stdcall ReadInfo(char *reply); Now the behavior of this function is that ...
2
votes
3answers
59 views

arrays VB.NET vs c

just a sanity check please: in VB.NET: dim myarray(5) as integer gives six elements 0 to 5 but in c? int myarray[5]; gives five elements 0 to 4 ? is this correct?
0
votes
3answers
3k views

Connecting to GMail programmatically using C or Visual Basic

I'm trying to make a small program (in either C or Visual Basic) to simply connect to a gmail email account. Then a simple if statement which will be if new mail received, label.text = "new mail" etc. ...
0
votes
1answer
119 views

Compiled C dll can't set pointer when called from ASP.NET App

I've got a 3rd party C application that's compiled to a non-.NET non-COM DLL. It has one simple function declared like so: Declare Function CapiTaxRoutine Lib "taxcommono.dll" (ByVal sInData As ...
0
votes
2answers
521 views

C function in VB.NET

I'm having some problems calling a C function from a DLL, and was hoping someone could help me out. The function is returning -101 which translates as a "bad parameter". The values I am passing have ...
1
vote
4answers
695 views

Translating C code using OpenSSL for public-key authentication to VisualBasic.NET using system.security.cryptography?

I am trying to mimic the results of some C code that uses the OpenSSL library using the system.security.crytography library in the .net 3.5 world, and I can't seem to get it right. I need some ...
0
votes
4answers
1k views

How to access Digital I/O using USB

How to access Digital I/O using USB using C or C++ or Vb.net Or C#.net?
0
votes
2answers
1k views

Enable to call C dll in VB.net Code

I am running into a problem which I am using C Dll into my VB.net code. I have .H file which shows implementation of this DLL in C language. This .H file contains many structures and unions that ...
1
vote
2answers
404 views

How to write a vb.net code to compile C/C++ programs?

I'm trying to make a vb.net application that has got 2 textboxes, 7 radio buttons and 2 buttons(one named compile and the other 'run'). How can I load the content of a C/C++(or any programming ...

1 2