4
votes
1answer
33 views
Is it possible that C# has problems calling VB6 methods that have optional parameters?
I added 3 optional boolean parameters to a method found within a VB6 DLL. The class that houses it is MultiUse (public), and the method itself is Private. The class implements a sp …
0
votes
2answers
50 views
Rename PC To Serial Number
I'm trying to make a script to rename PC's to their serial number. I'm not great with VB, but I've been able to put together enough code to READ the serial number, but I'm not sure …
0
votes
2answers
11 views
How can i access and manipulate a mdb file available online (on web) using VB
I have a mdb file hosted on my site http://www.simplyfy.co.in/db/dbfile.mdb. I am developing an application which will be running on multiple machines and will contact the mdb file …
0
votes
0answers
15 views
Checkbox within a datagrid, findcontrol issue
Keep in mind that for this I am limited to using ASP .NET 1.1, as for this environment I cannot upgrade to 2.0 or beyond
Essentially, I have a very simple datagrid that has a chec …
0
votes
2answers
42 views
Dynamic dropdown based on Radio selection
Good morning all! Myself and a co-worker are tasked with a system-wide scripting solution but neither of us are .NET programmers so we need your help.
We have a GUI that displays …
-2
votes
6answers
131 views
What is the different of abstract class and interface in .NET?
abstract class can inherits by other class , and force people to override the abstract function, abstract property etc..
interface also can implements by other class, also force p …
1
vote
2answers
34 views
How can I get the RGB color of the pixel at the cursor location using VB.NET?
How can I get the color of a pixel at the location of the cursor? I know how to get the mouses position using MousePosition but I can not figure out how to get the pixel color at t …
0
votes
0answers
13 views
Error in PDFCreator setuplog.txt Port and Print Monitor
I am trying to create a setup for SourceForge PDFCreator using Inno Setup and getting following error in Setuplog.txt:
Printerdriver-Directory (Environment: Windows 4.0):
Result …
1
vote
1answer
40 views
VB.Net command line (console) program with parameters for SharePoint
Hi,
I would like to create a console program in VB.net that would allow parameters. What i would like to do is in the code below add parameters so the webpart page can be created …
1
vote
2answers
29 views
get local IPv4 of computer using VB.net
I'm trying to get the ip address of my local PC, and one one of my other PCs it gets the v4 address fine, but on this one the code:
Dns.GetHostEntry(Dns.GetHostName).AddressList(0 …
0
votes
1answer
21 views
In VB, How do you force an inherited class to use an attribute on the class?
I'm trying to force an inherited class to use a custom attribute. I'm creating a class library where the user who wants to create an item will do so, but be forced to add an attri …
0
votes
2answers
44 views
Why LINQ to SQL does not work with silverlight vb, but if successful c #?
Why LINQ to SQL does not work with silverlight vb, but if successful c #?
0
votes
1answer
21 views
Visual Basic Application Help
I want to make an application witch involves logging into google. It is basically a small application to always have your gmail with you without always having to go to the web brow …
0
votes
1answer
49 views
KeyDown event not firing with .NET WinForms?
I already have KeyPreview set to true in the form properties
I'm working on a small program, and I'm having a problem where it seems that some of the controls on it inside groupbo …
0
votes
1answer
33 views
Constructors calling other constructors in vb.net a la c#
In c# you can have
public class Foo
{
public Foo(string name)
{
//do something
}
public Foo(string name, int bar) : this(name)
{
//do somethin …
