Forum: VB.NET May 9th, 2008 |
| Replies: 5 Views: 2,534 I figured it out with the help from this guide:
No major customization needed.
http://en.csharp-online.net/TabControl#Render_Right-Aligned_or_Left-Aligned_Tabs_horizontally |
Forum: VB.NET May 8th, 2008 |
| Replies: 5 Views: 2,534 I believe it can be done, I just don't know how.
I do know that it requires some major customazation.
So I was wondering if anyone could provide with some intel or links as to where one might... |
Forum: VB.NET May 8th, 2008 |
| Replies: 5 Views: 2,534 I know how to use the TabControl as it is. I've used it many times.
And I know that you can align the actual tabs in any orientation, Top/Left/Bottom/Right.
However, when aligning them either... |
Forum: VB.NET May 7th, 2008 |
| Replies: 7 Views: 1,787 First off, you don't need to use the statement With Me because it's redundant.
Second, in an If statement there's only need for (in my oppinion) one Else.
As the If statement is for checking... |
Forum: VB.NET May 7th, 2008 |
| Replies: 5 Views: 2,534 Hi, it's me agin.
I would like to know if it's possible to customize a tabcontrol, so that I can have the tabpages shown horizontally when alignment is set to left or right.
If so, could... |
Forum: VB.NET May 6th, 2008 |
| Replies: 1 Views: 864 I would try to limit the amount of data for each query.
Using the reader in order to populate some kind of repository do take a long time.
The way the reader works is that it only reads one line of... |
Forum: VB.NET May 6th, 2008 |
| Replies: 2 Views: 1,104 The code looks valid and it's gonna do what it's supposed to.
You don't need a Do While.
This snippet extracts the first and last character of the string which is then used in the IF statement... |
Forum: VB.NET May 6th, 2008 |
| Replies: 7 Views: 1,902 Thanks!
It works perfectly!!
This problem has now been solved... |
Forum: VB.NET May 6th, 2008 |
| Replies: 7 Views: 1,902 I tried your solution bwKeller. It works! Thanks a bunch!! :-D
The next part is tricky, because within a nested For loop I need to set 3 colors for each pixel.
For y As Integer = 0 To... |
Forum: VB.NET May 5th, 2008 |
| Replies: 7 Views: 1,902 I'm wondering if you have tried this yourself? And it works?
For me, it doesn't work in VB = I've tried before posting.
This gives the error: End of statement expected.
Dim pDest As Byte* =... |
Forum: VB.NET May 5th, 2008 |
| Replies: 7 Views: 1,902 Hi!
It's been a while since i last posted, and now I'm in need of some expert assistance.
I've found this Control written in C# with .NET 1.0 on vbAccelerator and wanted to use it with my... |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 0 Views: 1,395 Hi, all!
I'm trying to send a HttpWebRequest to an url that, other than %20, does not take escaped characters.
But for some reason, when I do:
_HttpWebRequest =... |
Forum: VB.NET Dec 5th, 2007 |
| Replies: 1 Views: 7,141 Problem solved.
I simply added a funktion that returns the string containing the values.
By calling the funktion like this:
values = DataValues(row, dt.Columns.Count - 1)
The information is... |
Forum: VB.NET Dec 5th, 2007 |
| Replies: 7 Views: 11,392 Why not just extract the HTML part from the XML file, display it in a hidden WebBrowser control and then print it from there?
That would be the same as printing a normal webpage from, say Internet... |
Forum: VB.NET Dec 4th, 2007 |
| Replies: 1 Views: 7,141 Hi!
Sorry about my bad grammer and/or spelling. English is not my native language.
I don't know if this already have been asked and answered, however...
I'm currently developing a program in... |
Forum: VB.NET Jan 18th, 2007 |
| Replies: 1 Views: 1,054 For buttons, take a look at the PerformClick() event.
Otherwise, have a look at the function Focus(). |
Forum: VB.NET Jan 18th, 2007 |
| Replies: 1 Views: 2,175 Address book
ID3 tag editor
Inventory
Chat
FTP client
Image viewer
Calendar
Cook book |
Forum: VB.NET Jan 17th, 2007 |
| Replies: 0 Views: 1,993 Hi.
I'm having some difficulty here. Perhaps someone here has some ideas.
I would like to implement some kind of P2P functionality in an existing application that is designed to work within a... |
Forum: VB.NET Nov 10th, 2006 |
| Replies: 1 Views: 4,442 I solved it myself using the dataview class.
Dim dbView As DataView
dbView = new DataView(DataSet1.Tables("<tablename>"))
dbView.Sort = "id DESC"
cmbRegID.DisplayMember = "column2"... |
Forum: VB.NET Nov 9th, 2006 |
| Replies: 1 Views: 4,442 Hi, guys!
Got a problem here. :)
I have a form that when it loads spawns a thread which in turn fills a publicly declared dataset with a table by a dataadapter and then binds a field from... |