Forum: VB.NET Oct 14th, 2008 |
| Replies: 3 Views: 652 Thank you for your help. I have found out that I might use it like this:
System.Web.HttpContext.Current.Request.Cookies.Item("Role").Value()
instead of
My.Request.Cookies("Role").Value()
I... |
Forum: VB.NET Oct 14th, 2008 |
| Replies: 3 Views: 652 Hi,
I have an old web-application in production which works fine. Now I want to make some changes and loads it into MS web developer express with the newest .NET framework installed. The problem... |
Forum: VB.NET Sep 2nd, 2008 |
| Replies: 3 Views: 1,039 Same same..
But I found the problem/issue. The compiler debugs into the Then but does not do the actions. Two same if sentences and it will enter the last one (but not do anything in it, just... |
Forum: VB.NET Sep 2nd, 2008 |
| Replies: 3 Views: 1,039 Very interesting.. No matter what I feed to the if it gets into the then If I say:
dim mBool as boolean = true
if mBool Then
..
it gets into it. If I say
dim mBool as boolean = false
if... |
Forum: VB.NET Sep 1st, 2008 |
| Replies: 3 Views: 1,039 I have an if sentence in my vb.net windows form
'If StrComp(WindowState.ToString, FormWindowState.Minimized.ToString) = 0 Then
If Me.WindowState <> System.Windows.Forms.FormWindowState.Normal... |
Forum: VB.NET Aug 11th, 2008 |
| Replies: 1 Views: 2,054 I'm experimenting currently with notification in VB.net and working with baloons in the system tray succesfully. My problem is that I would like the baloon to display an ok/cancel dialog with the... |
Forum: VB.NET Jul 11th, 2008 |
| Replies: 2 Views: 368 Thanks, I'll try this later and get back to you.. The idea seems great.. :) |
Forum: VB.NET Jul 9th, 2008 |
| Replies: 2 Views: 368 Hi,
I would like to know how to get the width of a textstring and/or how to substring a string to a given width (not length), if possible. The reason is that i use a multicolumn listbox and... |
Forum: VB.NET Jul 9th, 2008 |
| Replies: 4 Views: 696 Wayne, thanks but it was not what I was looking for..
Selvaganapathy, that was exactly what I wanted.. Nice, thanks a lot.. I just wanted the current selected one so I replaced The iInd with... |
Forum: VB.NET Jul 8th, 2008 |
| Replies: 4 Views: 696 Hi,
I have a simple question about hovering in a checklistbox. How can I get the value(object ) the hovered item..?
I have tried something like this:
Private Sub CheckboxHover(ByVal sender As... |
Forum: VB.NET Dec 13th, 2007 |
| Replies: 0 Views: 5,262 Hi..
I'm having a little trouble using a webservice from vb classic. I have tried to access other webservices on the net successfully but cannot access my own the right way. After some time of... |
Forum: VB.NET Dec 10th, 2007 |
| Replies: 1 Views: 1,113 Hi..
I have to use a webservice on my current vb-classic page, and have some code (a webservice) written in vb.net which does match my requests. My question is wether I can use this .net... |
Forum: VB.NET Nov 20th, 2007 |
| Replies: 0 Views: 3,331 Hi..
Sorry if this post is misplaced but thourght that it would fit in best here.
What I want to do is call a function, maybe by postback, when a dynamic constructed linkbutton is pushed. This... |