Implement IMessageFilter In Program?
Jul 7, 2009I use VB.NET 2005 i need to implemente IMessageFilter for MSWord object.
View 8 RepliesI use VB.NET 2005 i need to implemente IMessageFilter for MSWord object.
View 8 RepliesI am trying to implement a timer in my program and i am unable to do so till now.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Static intCount As Integer
intCount = 10
While intCount <> 0
Dim fileReader As String
[Code] .....
How do I implement a timer that will close the IE after every 5 seconds till the count runs out?
I'm trying to implement a timer into my program, because I want to take a capture from a webcamdevice every x seconds.I've wandered around google all day and tried to implement all kind of timer classes (with system.threading because I can't use system.windows.forms.timer) but I won't figure it out!
View 14 RepliesI have an existing program, and it uses DLL files to do things I wish to implement a DLL in VB.NET the DLL's are not COM, they are standard call the method or function type DLL's
How would I implement the following in a VB.NET DLL extern "C" void __Export_TYPE HelloWorld(char *path)
I have the following function that loops through a directory and checks for a specified folder and file[code]...
View 1 RepliesI have an interface program written in VB .Net (VS2008xxx.dll). Is it possible to implement the Interface in a VB6 program (VB6xxx.exe)?
View 8 RepliesI'm looking to implement a sort function in my program however I am new to VB and don't know how to. Basically I have 6 objects in my program racing across the screen and what I would like is a leaderboard showing the current top 3.
View 13 RepliesI am trying to implement a service object class for the POS for .NET library using VB9. Specifically, the BillDispenser class. I define my class and inherit from Microsoft.PointOfService.BillDispenser. As normal, it creates stubs for all the MustOverride (abstract) properties and methods that I need to override (I love that), EXCEPT for the events. Apparently thare two events defined as abstract (MustOverride) in the POSCommon base class, but VB doesn't generate stubs for them.[code]...
View 8 RepliesI try to implement undo in drawing program I want to save the bitmap after every drawing and push it to stack then when the user click the button it will change the image to the last bitmap saved in the stack here is my code
Private Sub PictureBox1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseUp
Xend = e.X
Yend = e.Y
[code]....
I'd like to implement some very simple validation into a program I'm writing, but I have no experience in this area, so I'm not sure how to implement it.I'd like one to have one make sure that text entered in to a text box has only regular characters (A-Z, a-z), but I'm not sure how to go about it!
View 3 RepliesI want to implement copy, cut and paste in my drawing program (copy part of an image that is selected)I don't know how to start?
View 10 RepliesI want to implement drag and drop functionality in my program, but it isn't working. Here's the
vb.net
'I removed the code because it wasn't needed anymore ;)
I've set the AllowDrop property to true, and when I drag a file onto a program, the cursor changes to Unavailable, and I can't drop my file.
I'm trying to implement printing functionality into a simple program for my company. It's not necessary, but it would be a nice finishing touch for everyone. And really, in practice, my printing feature works. My problem is that each line is printed on a separate page of paper and I can't find a way to just like, print a page.
It doesn't have to be fancy. I know that I won't need word wrap, nor will anyone ever print more than one page. Here's my ginked & modified code thus far:
Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
Dim linesPerPage As Single = 0
[Code].....
I want to implement the TCP KeepAlive in order to check dropped connections by running a timer.
In my case, I have a TCP Client (using socket class) and a third party server (i have no control on it).
How can i use the TCP KeepAlive on my TCP Client in order to check the connection state?[code]...
I want to write a program that can control port communication in a PC by blocking certain port based on the admins request and also monitor incoming and outgoing network traffic. Can i achieve this using vb.net winsock?
View 1 RepliesI'm a newbie in visual basic. We have a project in our school in implementing queue using circular array.
View 5 RepliesI am trying to implement a BGW and want to report progress to a progress bar for my TextFieldParser program, sometimes if your opening very large files it takes a while and I would like the user to be able to see the progress and have some interaction so they know the program is still running I am a little hung up on what to in the reportprogress
I have:
worker.ReportProgress(0, myReader.ReadFields())
and its not doing anything, I didnt expect it too since ReadFields is an array
parser
Private Sub BackgroundWorker1_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
Dim worker As System.ComponentModel.BackgroundWorker = DirectCast(sender, System.ComponentModel.BackgroundWorker)
[code]....
I have a application that will prompt the user to enter a serial key in after 30 days...and how do I get the application to know the key is valid?Also i would also like to make a keygen that will work with this program.Where I will enter the company name and generate the key from the Name enter.
View 4 RepliesHow to implement such a feature in vb.net??
View 3 RepliesWe have a vb.net application where we have implemented multithreading. We determined that we need to either implement .net remoting or WCF. After researching remoting in .NET on MSDN, Microsoft considers remoting legacy for .NET framework 4.0 and recommends using WCF instead. My question is: can we implement WCF functionality into our VB.NET application or do we need to rewrite the app from the ground up in WCF?
View 1 RepliesI have a program that I would like to implement using Threading.I wand to load a form that takes a couple of minutes to open using threading.Here is my code
Imports System.Threading
Public Class frmAdjustments
Function LaunchForm() As Integer[code].....
I am new to .net programming and could use any suggestions you may have. I'm trying to grasp the concept of multithreading apps and would like to have both my main form (Adjustments) and the (frmNewAdjustments) form to load concurrently.Here is the error I receive with the code above: Overload resolution failed because no accessible 'New' can be called with these arguments:
How would you create an extension method which enables me to do the following (warning: exteme pseudo-code)...
class FooBar
{
Int32 Foo { get; set; }
String Bar { get; set; }
}
new FooBar().With(fb => new Func<FooBar, Object>(instance =>
[Code]...
This is just a Translation question. But how do you write a the following C# code in vb.net My problem is that i don't know how to rewrite the this part of the generic T. C# code i want to translate
public static void ShouldEqual<T>(this T actualValue, T expectedValue) {Assert.AreEqual(expectedValue, actualValue); }
[Code]...
I am implementing a tracing mechanism myself. Now what I'd like to know is what is the best way to implement this mechanism(I mean, the architecture).[code]But then I saw there is an TraceListener class that let's me implement Write and WriteLine methods. The big drawback is that both those methods allow only strings as arguments, and I'd want to be able to send a lot more info than strings. What should I do? Maybe my first ideia is the best?I do know there are a lot of tracing mechanisms like PostSharp and so, I'm just doing this for learning purposes!
View 1 RepliesMy Questions are: Is is possible to implement a bitboard in vb.net? Tutorial/Reference to do bitboard in VB?
C# answers are acceptable because it's not that hard to translate.
In .net (c# or vb) expressions, how would you implement SQL's handy IN() functionality?i.e. value in (1, 2, 4, 7)rather than:
value = 1 or value = 2 or value = 4 or value = 7
There are obviously many ways, I'm looking for the most clean and simple!
What is the best practice for when to implement IDisposable? Is the best rule of thumb to implement it if you have one managed object in the class, or does it depend if the object was created in the class or just passed in? Should I also do it for classes with no managed objects at all?
View 6 RepliesI am trying to implement an interface defined in IDL, in a vb.net class here is the idl
interface IEmissaryRoot : IDispatch {
id(0x68030000), propget]
out, retval] IActivityCol** );
[code]....
i am using code to the value textbox2.text in the report and using the code like below [code]the textbox2 take various values in run time but when i run the code it display only the final value intermediated values are not displayed the whole situation is as follows.[code]
View 1 RepliesI would like to use regex for a txt file as follows. What I want to do is to get the whole text if CRC is other than 00000000. The content of the file below has 2 blocks of data below. And I should get the second one after the regex operation.
[Code]...