Forum: ASP Aug 27th, 2008 |
| Replies: 4 Views: 989 |
Forum: ASP Aug 27th, 2008 |
| Replies: 4 Views: 989 |
Forum: ASP Aug 26th, 2008 |
| Replies: 4 Views: 989 Operation is not allowed when the object is closed I am trying send information to the DB and the SP will return a recordset. The problem is that I keep getting this error (ADODB.Recordset error '800a0e78' Operation is not allowed when the object is... |
Forum: Visual Basic 4 / 5 / 6 Jun 6th, 2008 |
| Replies: 10 Views: 1,037 |
Forum: Visual Basic 4 / 5 / 6 Jun 3rd, 2008 |
| Replies: 10 Views: 1,037 Re: Use concatenated string as varible name Any clue on what I am doing wrong or an explanation on how to get the ScriptControl to work? I have checked online, but have only found examples of how to use it, not getting it to work.... |
Forum: Visual Basic 4 / 5 / 6 May 30th, 2008 |
| Replies: 10 Views: 1,037 Re: Use concatenated string as varible name I am currently getting the same output you got (param1, param2...). That is the issue I am having. I need something like strTemp = eval(param1) so that strTemp hold the value of param1. So if... |
Forum: Visual Basic 4 / 5 / 6 May 29th, 2008 |
| Replies: 10 Views: 1,037 Re: Use concatenated string as varible name Generally I would agree with you, but in my current case (modding a second hand app) I would have to change a ton of code in a ton of other places to pull it off.
If it is at all possible I would... |
Forum: Visual Basic 4 / 5 / 6 May 29th, 2008 |
| Replies: 10 Views: 1,037 Re: Use concatenated string as varible name All the params are retrieved through a function...
Something like this:
Public Function RunSP(Param1, Param2, etc...)
'All of the stuff I have to do...
end function
Unless you have a better idea... |
Forum: Visual Basic 4 / 5 / 6 May 29th, 2008 |
| Replies: 10 Views: 1,037 Use concatenated string as varible name I have a bunch of params:
InputParam1, InputParam2, InputParam3, etc...
I would like to loop through them instead of writing out code for each one, but am having some issues getting it to work... |
Forum: ASP.NET May 15th, 2008 |
| Replies: 3 Views: 650 Verify Email Address I am trying to verify that the email addresses entered into our site are valid. Basically are they fake addresses or not and if I send them an email there will be an inbox associated with that... |
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2008 |
| Replies: 2 Views: 3,166 Re: Firing Ajax Modal Popup with javascript I am using components from the Ajax toolkit from the asp.net site... $find(), $object(), show() are used with javascript to find controls on the page. The C# was actually just a control placed on... |
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2008 |
| Replies: 2 Views: 3,166 Firing Ajax Modal Popup with javascript I am trying to get a modal popup to display on an onblur event, but I keep getting a "'null' or is null or not an object" js error.
I have seen many examples using
var _popup;
_popup =... |
Forum: Visual Basic 4 / 5 / 6 Apr 22nd, 2008 |
| Replies: 1 Views: 328 |
Forum: Visual Basic 4 / 5 / 6 Apr 21st, 2008 |
| Replies: 1 Views: 328 Trouble using column alias I have a count set up in a SQL view set to '*' with the alias set to 'Cn'. I can get the column name with:
grd.columns("columnName")
But it does not work when I use the alias... How can I pull... |
Forum: ASP Apr 15th, 2008 |
| Replies: 1 Views: 952 Re: Recordset object will not support properties. I finally figured it out...
Here is the problem section:
Set x1 = server.CreateObject("ADODB.Command")
'Set RS = server.CreateObject("ADODB.Recordset") 'commented out and made change below
With... |
Forum: ASP Apr 15th, 2008 |
| Replies: 1 Views: 952 Recordset object will not support properties. I am trying to display the results of a store procedure, but cannot seem to get the Move Next to work for me. Without it I am currently only getting the first row. Here is what I have so far:
Set... |
Forum: Visual Basic 4 / 5 / 6 Apr 10th, 2008 |
| Replies: 10 Views: 1,393 |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 10 Views: 1,393 |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 10 Views: 1,393 |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 3 Views: 593 Re: Capture SQL Print Ouput Thanks for the suggestion. I actually found this http://support.microsoft.com/kb/294178, but never got everything to work correctly. We actually are switching to output params so life will get much... |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 10 Views: 1,393 Find record in datagrid with partial key/string Is it possible to find a record in a datagrid by typing characters into the grid? Bascially if I have the following records:
Anne
Bob
Bill
Bud
Carl
Carlos
Curt
And type "C" it will got to the... |
Forum: Visual Basic 4 / 5 / 6 Apr 7th, 2008 |
| Replies: 3 Views: 593 Capture SQL Print Ouput I have a bunch of print statements in a SP that tell me exactly what went wrong in the SP (if anything), but I cannot figure out how to capture the text in the
PRINT 'Receiver and Customer don''t... |
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2008 |
| Replies: 3 Views: 560 Re: Binding to TDBList I tried only that and it did not work out for me... Here is what I have so far code wise that should populate the list. Hopefully something will stand out. Currently I am getting the headers, but... |
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008 |
| Replies: 3 Views: 560 Binding to TDBList Does anyone know of a tutorial/site that explains how to bind to a tdblist clearly? If anyone could explain it, I would also appreciate it.
So far I have this and must be missing something. It has... |
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008 |
| Replies: 5 Views: 673 |
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008 |
| Replies: 5 Views: 673 Error Handling: Blank Error Description Is there something else I have to do to get a message with an error occurs other than this:
On Error GoTo Handler
'Code that will cause an error
Handler:
msgBox(Err.Description)
The Handler gets... |
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2008 |
| Replies: 3 Views: 2,028 Re: Display today's Date in textbox Figure out why it is not working. :)
Currently I have something in the properties text field and that is what is showing up... It will not allow me to leave it blank... Is there anything else in... |
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2008 |
| Replies: 3 Views: 2,028 Display today's Date in textbox I am trying to get the current date in a tdbdate textbox and am having no luck. I am currently using:
TDBDate1.Text = Now()
But it is still only showing what is in the Properties Text box. Is... |
Forum: Search Engine Optimization Mar 4th, 2008 |
| Replies: 0 Views: 378 |
Forum: ASP.NET Feb 5th, 2008 |
| Replies: 4 Views: 2,005 |
Forum: ASP Feb 5th, 2008 |
| Replies: 4 Views: 2,125 Re: Object required Error Here is what I ended up with... I ended up creating another connection instead of calling another function that should have opened the connection (it works on a few other functions).
Function... |
Forum: ASP Feb 4th, 2008 |
| Replies: 4 Views: 2,125 Re: Object required Error After messing around with it and hardcoding some numbers in and it looks like it is not getting the value out of this:
Session("PPercent") = rsRegx("PROFIT_PERCENT") & ""
If I replace... |
Forum: ASP Feb 1st, 2008 |
| Replies: 4 Views: 2,125 Object required Error Anyone have a clue what I am doing wrong here?
I have tried to call this function a bunch of different ways, but here is the latest:
mProfitPercent = GetProfitPercent
Here is the function that I... |
Forum: JavaScript / DHTML / AJAX Jan 29th, 2008 |
| Replies: 3 Views: 2,081 |
Forum: ASP.NET Dec 27th, 2007 |
| Replies: 4 Views: 2,005 |
Forum: ASP.NET Dec 27th, 2007 |
| Replies: 4 Views: 2,005 |
Forum: ASP.NET Dec 27th, 2007 |
| Replies: 4 Views: 2,005 |
Forum: ASP.NET Dec 27th, 2007 |
| Replies: 4 Views: 2,005 Post Data from Form to webpage through HTTP I have been looking all over trying to find a simple example of how this is done... Basically I want to send info from a form to another website API via XML and get the information they send back to... |
Forum: JavaScript / DHTML / AJAX Nov 7th, 2007 |
| Replies: 5 Views: 5,476 |
Forum: JavaScript / DHTML / AJAX Nov 6th, 2007 |
| Replies: 5 Views: 5,476 |