I would like to make my windows form app self updating when it starts. Where can I find good information for that?
I am using Visual Studio 2008 VB.NET.
i have a winsock component made with vb.net in a class library that has events.
how do i make it appear in tool box if i reference the dll in another project.?
How do i use it in my c# program?
thanks
Hi
We have a requirement to copy a .txt file into the client machine and open the file using notepad.exe.
We develop our application using MS Visual Studio 2008 VB .Net.
Any experencied this kind of requirement?
Help required...
Thanks
Shoba Anandhan
Hi,
i need create a program in VB using OCR,
but i cant find any example of the coding.
can anyone tell me where to find the coding or anyone have the coding.please help me.
Thank you
How can I get the state of a modifier key using VB.NET on the Compact Framework, in this case Windows Mobile 6.1. I want to be able to determine if the following keys are pressed or locked:
Shift
CTRL
ALT
and for the Psion Teklogix machines
Orange
Blue
Although I may be able to work this out, if I can determine the others.
I want to create my own on-screen indicator panel and want to poll the keys, not using events.
How do you obtain the DateTime stamp of a textfile using VB 6.0? By DateTime stamp I mean the date & time the textfile was created or modified. Sample code would be appreciated.
Thanks.
I need to create a repeater section that will show 4 columns - First Name, Last Name, a link based off of stored column data that says.
All the data plus some extra not being used is in a players profile. How do I link the data on the code-behind to the repeater control with the databinders?
I am using visual studio 2008, VB.NET for the code behind.
I need to get the path (not the executable) where my application is running from:
System.AppDomain.CurrentDomain.BaseDirectory()
When I run the above statement with & "/images/image.jpg" on my local machine it works fine but when I install the application on another machine it says it cannot find the file and there is a lot of extra path information some.
I just need the directory of where the app is running. I am coding in VB.NET with Visual Studio 2008.
Thanks!
Hi There,
Does anyone have a regurlar expression available which only accepts dates in the format dd/mm/yy but also has strict checking to make sure that the date is valid, including leap year support?
I am coding in vb.net and am struggling to work this one out.
Many Thanks
Hi,
This is a related to a previous question I have asked here, see the link below for a brief description as to why I am trying to do this.
Regular expression from font to span (size and colour) and back (VB.NET)
Basically I need a regex replace function (or if this can be done in pure VB then that's fine) to convert all ul tags in a string to textindent tags, with a different attribute value for the first textindent tag.
For example:
<ul>
<li>This is some text</li>
<li>This is some more text</li>
<li>
<ul>
<li>This is some indented text</li>
<li>This is some more text</li>
</ul>
</li>
<li>More text!</li>
<li>
<ul>
<li>This is some indented text</li>
<li>This is some more text</li>
</ul>
</li>
<li>More text!</li>
</ul>
Will become:
<textformat indent="0">
<li>This is some text</li>
<li>This is some more text</li>
<li>
<textformat indent="20">
<li>This is some indented text</li>
<li>This is some more text</li>
</textformat>
</li>
<li>More text!</li>
<li>
<textformat indent="20">
<li>This is some indented text</li>
<li>This is some more text</li>
</textformat>
</li>
<li>More text!</li>
</textformat>
Basically I want the first ul tag to have no indenting, but all nested ul tags to have an indent of 20.
I appreciate this is a strange request but hopefully that makes sense, please let me know if you have any questions.
Thanks in advance.
I have a directory named reports inside my winform project in .net. My project name is AccountingReports and inside that Directory reports exists. So i need the way to access this path via code. In Asp.net we use Request.PhysicalApplicationPath property. So is there any method or property exists that will give me the root of my project
Hi All,
I have a combo box column in vb.net datagridview . i want to perform some validation like to put some values in another text column of Grid on selectionindexchanged event of a combo box in datagridview. but unable to do so. Any Help appreciated. Thanks in Advance.
It is possible to write a code that specifying the rows and column of spread sheet in terms of NUMBERS and NOT LIKE (B2:D6)
Example:
excelSheet.Range("B2:D6").Interior.Color = RGB(100, 100, 255)
instead of B2 and D6 I want to write 5 rows and 3 column..
It is posible to write in vb.net 2003 code?
I have seen plugins for VS 2005 and also for C# environment in VS2008 but not able to find for VB.NET environment in VS 2008.I want it to sort for each file, is there any addin for this?
I have downloaded and built the latest version of mono (2.6.3), on Linux box (9.10).
I have successfully built the C# compiler mcs, but it seems that the vb compiler vbnc was not built.
Are there any special instructions required to build vbnc (other than configure, make, make install)?
Has anyone managed to successfully build vbnc? - if yes, what do I need to do to build the vbnc executable?
I've been hearing these two words used in Microsoft tutorials for VB.NET. What is the difference between these two words when used in reference to variables?
I have a gridview that is bound to a datasource (Windows Forms, VB.NET). One of columns is a property of type boolean, and I want to show "yes/no" in the column instead of 0/1 or "true/false". Is this possible? Can you edit displays of columns that are bound?
how can we extract system time in vb and do calculation ie. adding or subtracing time then store change time in oracle database table in earlier format .
Has anyone implemented any effective solutions to address the numerous issues that are caused by IE8's session sharing functionality? We've gotten very close by writing a custom http module that compares session and view state values, but our efforts are thwarted by things such as accelerator keys and unaccceptable copying of session objects.
This is a VB.Net web app.
Please tell me how to save and show Richtextbox's data in database and retrive it in saved format and which datatype should be used to save that data. i am using vb.net and MY SQL
i have this querystring that shall open up my page.
http://www.a1-one.com/[email protected]&stuid=123456
Now when this page loads, on page_load, I want to pick up email and stuid in two different variables. So I can use them to insert into my database (sql server)
how can this be done in vb.net
I have a VB.NET Project, and would like to, as with C# Projects, build and have dll files generated and dumped in the Bin/debug folder.
Currently, I have the project configured for ANY CONFIGURATION and ALL CPUS but when I do a build, I still do not have a bin folder or a debug folder containing a DLL. What am I missing here please? Thanks in advance.
I'm very interested in languages and their underpinnings, and I'd like to pose this question to the community. Are the following analagous to eachother in these languages?
C#
Foo bar = default(Foo); //alloc
bar = new Foo(); //init
VB.NET
Dim bar As Foo = Nothing 'alloc
bar = New Foo() 'init
Objective-C
Foo* bar = [Foo alloc]; //alloc
bar = [bar init]; //init