Search Results

Showing results 1 to 40 of 58
Search took 0.03 seconds.
Search: Posts Made By: rrocket
Forum: JavaScript / DHTML / AJAX Jun 8th, 2009
Replies: 11
Views: 21,400
Posted By rrocket
I am not clear on what you mean. The id is a parameter of the textbox and you can call it from javascript with document.getElementById('id')...

If you copy over what you have so far it might make...
Forum: ASP Aug 27th, 2008
Replies: 4
Views: 1,908
Posted By rrocket
Anyone have any ideas at all where this could be going wrong?
Forum: ASP Aug 27th, 2008
Replies: 4
Views: 1,908
Posted By rrocket
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: 1,908
Posted By rrocket
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,869
Posted By rrocket
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,869
Posted By rrocket
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,869
Posted By rrocket
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,869
Posted By rrocket
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,869
Posted By rrocket
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...
Forum: Visual Basic 4 / 5 / 6 May 29th, 2008
Replies: 10
Views: 1,869
Posted By rrocket
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: 2,174
Posted By rrocket
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: 8,790
Posted By rrocket
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: 8,790
Posted By rrocket
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: 540
Posted By rrocket
I figured it out... I mispelled something in the stored proc...
Forum: Visual Basic 4 / 5 / 6 Apr 21st, 2008
Replies: 1
Views: 540
Posted By rrocket
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...
Forum: ASP Apr 15th, 2008
Replies: 1
Views: 1,684
Posted By rrocket
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...
Forum: ASP Apr 15th, 2008
Replies: 1
Views: 1,684
Posted By rrocket
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:
...
Forum: Visual Basic 4 / 5 / 6 Apr 10th, 2008
Replies: 10
Views: 2,551
Posted By rrocket
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: 2,551
Posted By rrocket
Does that make sense or do I need to elaborate?
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008
Replies: 10
Views: 2,551
Posted By rrocket
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: 1,109
Posted By rrocket
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: 2,551
Posted By rrocket
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...
Forum: Visual Basic 4 / 5 / 6 Apr 7th, 2008
Replies: 3
Views: 1,109
Posted By rrocket
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: 906
Posted By rrocket
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: 906
Posted By rrocket
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...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 5
Views: 1,342
Posted By rrocket
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008
Replies: 5
Views: 1,342
Posted By rrocket
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...
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2008
Replies: 3
Views: 7,520
Posted By rrocket
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: 7,520
Posted By rrocket
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: 604
Posted By rrocket
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: 3,174
Posted By rrocket
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: 4,681
Posted By rrocket
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: 4,681
Posted By rrocket
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: 4,681
Posted By rrocket
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...
Forum: JavaScript / DHTML / AJAX Jan 29th, 2008
Replies: 3
Views: 3,196
Posted By rrocket
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: 3,174
Posted By rrocket
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: 3,174
Posted By rrocket
I figured that part of it out...

shipCredentials.SetAttribute("action", "RateEstimate");
Forum: ASP.NET Dec 27th, 2007
Replies: 4
Views: 3,174
Posted By rrocket
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: 3,174
Posted By rrocket
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: 7,667
Posted By rrocket
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...
Showing results 1 to 40 of 58

 


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

©2003 - 2009 DaniWeb® LLC