Showing results 1 to 40 of 57
Search took 0.01 seconds; generated 1 minute(s) ago.
Posts Made By: rrocket
Forum: ASP Aug 27th, 2008
Replies: 4
Views: 989
Posted By rrocket
Re: Operation is not allowed when the object is closed

Anyone have any ideas at all where this could be going wrong?
Forum: ASP Aug 27th, 2008
Replies: 4
Views: 989
Posted By rrocket
Re: Operation is not allowed when the object is closed

If this does not make sense or more info is needed, please let me know.

I guess what I am ultimately asking is how to open the rs connection when the command object is used.
Forum: ASP Aug 26th, 2008
Replies: 4
Views: 989
Posted By rrocket
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
Posted By rrocket
Re: Use concatenated string as varible name

If anyone has any other ideas on how to take care of this I would really appreciate it.
Forum: Visual Basic 4 / 5 / 6 Jun 3rd, 2008
Replies: 10
Views: 1,037
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
Re: Trouble using column alias

I figured it out... I mispelled something in the stored proc...
Forum: Visual Basic 4 / 5 / 6 Apr 21st, 2008
Replies: 1
Views: 328
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
Re: Find record in datagrid with partial key/string

I have a grid with all of the information that I need from the DB. The company name is the primary key. When the page with the grid comes up I would like to be able to type characters and it will...
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008
Replies: 10
Views: 1,393
Posted By rrocket
Re: Find record in datagrid with partial key/string

Does that make sense or do I need to elaborate?
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008
Replies: 10
Views: 1,393
Posted By rrocket
Re: Find record in datagrid with partial key/string

I already have every record I need in the grid... When you start typing it should go to the row that has the same characters you are typing (based off the primary key).
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008
Replies: 3
Views: 593
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008
Replies: 5
Views: 673
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
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
Posted By rrocket
Help Favicon.ico and webresource.axd Showing up in reports

I am pretty sure the favicon.ico is coming up with someone bookmarks our site, but I am not sure why webresource.axd would be listed in my traffic reports as an exit or entry page. ...
Forum: ASP.NET Feb 5th, 2008
Replies: 4
Views: 2,005
Posted By rrocket
Solution Re: Post Data from Form to webpage through HTTP

Here is what I used to get this to work...


Uri Site = new Uri("http://addressofsite");
WebRequest request = WebRequest.Create(Site);
request.Method = "POST";
...
Forum: ASP Feb 5th, 2008
Replies: 4
Views: 2,125
Posted By rrocket
Help 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
Posted By rrocket
Help 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
Posted By rrocket
Help 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
Posted By rrocket
Help Textboxs not staying disabled after browser back button clicked

I have a page with radio buttons that either enable or disable textboxes depending on the radio button selection. When the user clicks submit the they are taken to a thank you page, but if they hit...
Forum: ASP.NET Dec 27th, 2007
Replies: 4
Views: 2,005
Posted By rrocket
Help Re: Post Data from Form to webpage through HTTP

Now that I have everything writing to a XMLdocument (XMLDocument doc = new XMLDocument()... Does anyone know how to send it to the server and get a response?
Forum: ASP.NET Dec 27th, 2007
Replies: 4
Views: 2,005
Posted By rrocket
Re: Post Data from Form to webpage through HTTP

I figured that part of it out...

shipCredentials.SetAttribute("action", "RateEstimate");
Forum: ASP.NET Dec 27th, 2007
Replies: 4
Views: 2,005
Posted By rrocket
Re: Post Data from Form to webpage through HTTP

Does anyone know how to get the action and version parts into a node? Here is an example:

<Shipment action="RateEstimate" version="1.0">
Forum: ASP.NET Dec 27th, 2007
Replies: 4
Views: 2,005
Posted By rrocket
Help 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
Posted By rrocket
Help Re: Form has no properties in FireFox... Works in IE

Here is the HTML that view source gives me. It is passing everything I need to the browser...


<form name=t id=t action=ASPXTOASP.asp method=post><input type=hidden name=username id=username...
Forum: JavaScript / DHTML / AJAX Nov 6th, 2007
Replies: 5
Views: 5,476
Posted By rrocket
Help Re: Form has no properties in FireFox... Works in IE

If anyone has another other ideas I am definitely open... I am trying to pass session variables from an ASPX page to an ASP page. Like I mentioned before it works fine in IE, but not in Firefox. ...
Showing results 1 to 40 of 57

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 5:01 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC