Forum: VB.NET May 9th, 2008 |
| Replies: 5 Views: 2,355 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,355 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,355 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,690 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,355 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: 829 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: 958 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,832 Thanks!
It works perfectly!!
This problem has now been solved... |
Forum: VB.NET May 6th, 2008 |
| Replies: 7 Views: 1,832 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,832 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,832 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,317 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: JavaScript / DHTML / AJAX Jan 21st, 2008 |
| Replies: 22 Views: 10,153 Problem solved.
Instead of using a JSON string I used a DataTable.
Appearantly AjaxPro supports using .NET objects as arguments and converts them into appropriate javascript objects.
Thank you... |
Forum: ASP.NET Jan 21st, 2008 |
| Replies: 1 Views: 1,219 Nevermind.
I solved the problem using a DataTable to send the information back and forth between client and server. |
Forum: ASP.NET Jan 18th, 2008 |
| Replies: 1 Views: 1,219 Hi.
As suggested by ~s.o.s~ in another thread, I'm posting this question here in the high hopes that someone might be able to help me.
I have a JSON string coming in from a javascript that I... |
Forum: JavaScript / DHTML / AJAX Jan 18th, 2008 |
| Replies: 22 Views: 10,153 Perhaps that is the case.
But on the other hand. The fact that this forum also is about Ajax may be of relevance since that, for me, includes both client-side and server-side coding. |
Forum: JavaScript / DHTML / AJAX Jan 17th, 2008 |
| Replies: 22 Views: 10,153 I tried LitJSON only to find out that it's probably compiled using .NET 2.0. I'm working in 1.1.
In my latest attempt I used Jayrock.
And i've also been ripping my hair out trying to get the method... |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2008 |
| Replies: 22 Views: 10,153 Ok. So it works. I now get a correct json string.
Now I'll have to figure out how to Deserialize(?) it in server code-behind into a a use-able .NET object/class/structure.
Any suggestions? |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2008 |
| Replies: 22 Views: 10,153 Sorry about that. Won't happen again.
I'll try your solution by adding the name element.
But I was just thinking. If that's the reason why it won't work, then why does the code capture and hold... |
Forum: JavaScript / DHTML / AJAX Jan 14th, 2008 |
| Replies: 22 Views: 10,153 |
Forum: JavaScript / DHTML / AJAX Jan 7th, 2008 |
| Replies: 22 Views: 10,153 Ok. Now I'm back from the holidays and could check my code. I found that I missed a quote-mark. Now there are no errors, but there still seem to be something odd happening.
In the screenshot, in... |
Forum: JavaScript / DHTML / AJAX Dec 18th, 2007 |
| Replies: 22 Views: 10,153 I'm sorry. I haven't had the chance to try anything today.
But as soon as I do, I'll post my findings. |
Forum: JavaScript / DHTML / AJAX Dec 18th, 2007 |
| Replies: 22 Views: 10,153 Yes, actually I did. But I'll have to look it over again.
The weird part is that when I debug using Firebug you can choose what js-script to debug and step through and I can clearly see the file... |
Forum: JavaScript / DHTML / AJAX Dec 17th, 2007 |
| Replies: 22 Views: 10,153 Ok. So i managed to use the code snippet you gave me which resulted in a javascript object. It gave me a happy.
This is what i came up with:
function somename() {
var o =... |
Forum: JavaScript / DHTML / AJAX Dec 14th, 2007 |
| Replies: 22 Views: 10,153 Everything about JSON looks interesting and workable.
But I'm new to JSON and used to passing information between functions using arguments. So, I'm gonna need a little hand-holding and guidance... |
Forum: JavaScript / DHTML / AJAX Dec 13th, 2007 |
| Replies: 22 Views: 10,153 JSON look promising. I like the fact that it can contain an array.
But how to create a dynamic JSON object containing multiples.
My guess would be that the object needs to have the form:
var... |
Forum: JavaScript / DHTML / AJAX Dec 13th, 2007 |
| Replies: 22 Views: 10,153 I'll look into it. Thanks. |
Forum: JavaScript / DHTML / AJAX Dec 12th, 2007 |
| Replies: 10 Views: 5,374 If the database was to be openly accessible *shudder*, albeit with a username and password.
Then you can most likely access the database with javascript and odbc (jdbc?).
If that is the case then... |
Forum: JavaScript / DHTML / AJAX Dec 12th, 2007 |
| Replies: 22 Views: 10,153 Hi, all!
Here's another one that's starting to boggle my mind.
I have a form that, with a button, adds a bunch of text-fields in a tablerow.
For every press of the button another row is added.... |
Forum: JavaScript / DHTML / AJAX Dec 12th, 2007 |
| Replies: 6 Views: 2,822 Well. FireFox showed a few errors, like "error in string" (or something like that).
But when I added a check for browser type to solve the DOM differences between IE and FF, the errors vanished.
... |
Forum: JavaScript / DHTML / AJAX Dec 11th, 2007 |
| Replies: 6 Views: 2,822 Actually, I don't. I'm using IE6.
And it's not the security popup.
What I get is the yellow triangle with a black exclamationpoint, in the statusbar of the browser, stating that this-or-that is... |
Forum: JavaScript / DHTML / AJAX Dec 10th, 2007 |
| Replies: 6 Views: 2,822 Hi!
I don't know if this has been answered already and a search gave to many results.
I have a website that is built with ASP.NET and that uses some javascript.
When I run a debug on localhost... |
Forum: VB.NET Dec 5th, 2007 |
| Replies: 1 Views: 6,971 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,166 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: 6,971 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,041 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,076 Address book
ID3 tag editor
Inventory
Chat
FTP client
Image viewer
Calendar
Cook book |
Forum: VB.NET Jan 17th, 2007 |
| Replies: 0 Views: 1,924 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: IT Professionals' Lounge Dec 6th, 2006 |
| Replies: 0 Views: 1,561 Hi!
I've come across an interesting, and annoying, bug(?) in Visual Studio 2005.
I don't know if anyone else has been experiencing this bug, and I don't know if this is something that exists in... |
Forum: VB.NET Nov 10th, 2006 |
| Replies: 1 Views: 4,301 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"... |