Search Results

Showing results 1 to 30 of 30
Search took 0.01 seconds.
Search: Posts Made By: Paladine ; Forum: ASP.NET and child forums
Forum: ASP.NET Sep 17th, 2006
Replies: 6
Views: 8,640
Posted By Paladine
pseudo_code:

Dim strSQL as String

strSQL = "SELECT Field1, Field2 FROM tbltemp WHERE Field1 = '" & TextBox1.Text & "'"



Hope this helps.
Forum: ASP.NET May 18th, 2006
Replies: 5
Views: 2,129
Posted By Paladine
Have you verified that the Server is running in ASP.NET 2.0 code level? This is a problem if you are running a 2.0 application in 1.1 code level, and vice versa.

Just another thing to check.
Forum: ASP.NET May 18th, 2006
Replies: 3
Views: 4,441
Posted By Paladine
Question for you:

This bar code scanner how does it hook up to your system? USB? PS/2 via Y-Connection with Keyboard ?

Have you tried using the scanner on a barcode with notepad?

The...
Forum: ASP.NET Sep 6th, 2005
Replies: 3
Views: 8,156
Posted By Paladine
Do a count of the number of ListItems, and then store that in a variable and add 1 and then add your last value = Other

example:
nCount = {count of the number of item entries in the dropdownlist}...
Forum: ASP.NET Aug 29th, 2005
Replies: 3
Views: 4,957
Posted By Paladine
What is the data_type you have set for the column storing this hashed password? char, varchar?
Forum: ASP.NET Aug 2nd, 2005
Replies: 15
Views: 31,596
Posted By Paladine
Glad to hear it.

But it is a new one on me that you have an SQL WHERE clause without an "equals" sign. Your method is a pretty niffty way of doing it, I applaud you on that. :cool:
Forum: ASP.NET Jul 30th, 2005
Replies: 15
Views: 31,596
Posted By Paladine
Have you step through it with the debugger?

IListsource (original error) is still bothering me... I would read up on that, as you seem to implementing it at somepoint.

Here is what microsoft...
Forum: ASP.NET Jul 28th, 2005
Replies: 15
Views: 31,596
Posted By Paladine
Well that is your opinion Letscode, I appreciate you calling me on it, and I respect that. I am not trying to flame you or anyone else for that matter, so please don't take it as that.

Now...
Forum: ASP.NET Jul 27th, 2005
Replies: 15
Views: 31,596
Posted By Paladine
Well I am no tired thanks for the suggestion though.

My point was the logic you say you know about is not being conveyed with your question. I was not trying to offend you! But I was trying to...
Forum: ASP.NET Jul 26th, 2005
Replies: 15
Views: 31,596
Posted By Paladine
Search Results don't go to another page, but rather the current page is refreshed (on postback) to display the filtered results.

Of course this line would do just what you say it does:
...
Forum: ASP.NET Jul 14th, 2005
Replies: 7
Views: 4,457
Posted By Paladine
Hmmm, I see the issue now. I never use Visual C++ .Net windows forms before. It is something I am sorry to say I can't say where to visually see that?

This is all I can offer you at the moment. ...
Forum: ASP.NET Jul 14th, 2005
Replies: 7
Views: 4,457
Posted By Paladine
Opps... my fault, lost my brain there.

Here is the location of the Declarations (events)

http://www3.telus.net/public/tmlohnes/Location.jpg
Forum: ASP.NET Jul 6th, 2005
Replies: 7
Views: 4,457
Posted By Paladine
That would be the in the properties window when you have clicked on the button object in the design view.
Forum: ASP.NET Jul 31st, 2004
Replies: 3
Views: 3,815
Posted By Paladine
And to add to that just set the following from your connection to the DB:

' ||||| Set the DataValueField to the Primary Key
DropDownList1.DataValueField = "ID"
' ' ||||| Set the...
Forum: ASP.NET Jul 5th, 2004
Replies: 7
Solved: Drop Down Menu
Views: 33,735
Posted By Paladine
Forces.....Forces...hmmm, why do I find that hard to believe? Although Dani being forceful does have some interesting connotations to it. :cool:
Forum: ASP.NET Jul 3rd, 2004
Replies: 7
Solved: Drop Down Menu
Views: 33,735
Posted By Paladine
Hope this helps dude!


//**************************************
// Name: Menu pagelet for ASP.NET
// Description:Simple server-side menu control - kind of - for ASP.NET pages. It's best...
Forum: ASP.NET Jun 1st, 2004
Replies: 8
Views: 6,887
Posted By Paladine
Nice work Slade, I may actually put that to some use!
Forum: ASP.NET May 23rd, 2004
Replies: 3
Views: 14,147
Posted By Paladine
From what you have said, Yes it is possible, as you stated. You provide the choices from which the user can pick from, and from the selections (essential just variables given the value by the...
Forum: ASP.NET May 23rd, 2004
Replies: 10
Views: 6,533
Posted By Paladine
Look forward to seeing that article.
Forum: ASP.NET May 18th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Yup, just like using the session object.
Forum: ASP.NET May 18th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Ah, no worries dude!

Basically the same way.


Response.Cookies("MyColor") = Listbox1.SelectedItem.Text


You can even set them with Keys (Key values that is)
Forum: ASP.NET May 18th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Slade - If I am still following things (getting older you know...so I could be loosing it :mrgreen: ), then here is some sample code that I am thinking will point you in the right direction. As...
Forum: ASP.NET May 17th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Well sort of. You have a "template" page that will be loaded, but the controls are customized by passed values/variables from the user selection (via session objects).


i.e. Allowing the user...
Forum: ASP.NET May 17th, 2004
Replies: 10
Views: 6,533
Posted By Paladine
Forum: ASP.NET May 17th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Hey man, I looked into it, and there is no way to do it aside from the means we have been tossing around.

Sorry...let you know if things change!
Forum: ASP.NET May 16th, 2004
Replies: 10
Views: 6,533
Posted By Paladine
Code looks good Slade, but it is 2:30am and I am not following it as well as I should. I want go through your discovery and see what it is all about tomorrow.

Good post!
Forum: ASP.NET May 14th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
It is 1:30 am right now, and my mind is mush! But I will see what I can come up with by the end of the weekend dude! But I am sure I have some source code somewhere in my IT Library Drive that may...
Forum: ASP.NET May 14th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
You mean modify it on the fly? Hmm, not that I am aware of, but .NET is pretty powerful, I wouldn't doubt there is a way!
Forum: ASP.NET May 9th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Yeah that is what I had figured. Glad I could help. ASP.Net is something I am learning right now as well.

Happy coding!!!
Forum: ASP.NET May 8th, 2004
Replies: 23
Views: 14,784
Posted By Paladine
Maybe I am just tried, but what I have read of your question has left me confused? What are you saying with regards to header and inputs are confusing?



You are talking here about Display...
Showing results 1 to 30 of 30

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC