Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 35
Search took 0.30 seconds.
Search: Posts Made By: tib
Forum: ASP.NET 09-14-2005, 05:44 PM
Replies: 3
Views: 1,194
Posted By tib
I am using a datagrid with the oneditcommand and...

I am using a datagrid with the oneditcommand and onupdatecommand, it was giving me an error where there was a ', so what i did was i replaced the ' with '' (2 single quotes) and then the sql stmt ran...
Forum: ASP.NET 09-13-2005, 06:21 PM
Replies: 3
Views: 1,194
Posted By tib
updating filed with ' in it

Hi I have a field that may have a ' in it and seeing as though it is a text field in the update statement that I am building i have

update table set field = ' " & str & " ' "

if the str...
Forum: ASP.NET 08-26-2005, 05:39 PM
Replies: 1
Views: 2,839
Posted By tib
scratch that I just put the code for the button...

scratch that I just put the code for the button in a procedure and called that procedure where i needed it
Forum: ASP.NET 08-26-2005, 05:17 PM
Replies: 1
Views: 2,839
Posted By tib
button click through code (VB)

Hi I wanted to fire a button click event in code, is there a way i can do this? thanks for any input
Forum: ASP 08-10-2005, 03:26 PM
Replies: 4
Views: 827
Posted By tib
thanks for the reply... but will this return the...

thanks for the reply... but will this return the value of the option instead of the text? thanks
Forum: ASP 08-10-2005, 01:20 PM
Replies: 4
Views: 827
Posted By tib
listbox text

Hi I wanted to get the text from the selected items in a list box, the value of the list box item is already being used to obtain the key of the value selected. I know in asp.net you can get the...
Forum: ASP 07-25-2005, 02:03 PM
Replies: 1
Views: 577
Posted By tib
if the comma is always there then str =...

if the comma is always there then

str = left(str,len(str)-1)
Forum: ASP 07-25-2005, 01:43 PM
Replies: 1
Views: 622
Posted By tib
dividing a string

Hi I have a string that looks like this

text1,text2,text3,text4

I want to be able to split it up based on the width of my table.

so it would appwar like this

text1, text2,
text3, text4
Forum: ASP 07-25-2005, 01:39 PM
Replies: 1
Views: 656
Posted By tib
if you know that this .txt (or any extension)...

if you know that this .txt (or any extension) will be present at all times then you could use

left(filename,len(filename)-4)


or if your not sure that the .txt will be there all the time then...
Forum: HTML & CSS 06-28-2005, 06:37 PM
Replies: 2
Views: 2,543
Posted By tib
Hey thanks!!! it worked, I never even thought of...

Hey thanks!!! it worked, I never even thought of that
Forum: HTML & CSS 06-28-2005, 04:52 PM
Replies: 2
Views: 2,543
Posted By tib
Indenting in html select

Hi I want to be able to indent some of my entries in my html select like the following

Top1
sub
sub2
top2
sub1
sub2
.
.
Forum: HTML & CSS 06-23-2005, 05:16 PM
Replies: 6
Views: 782
Posted By tib
Select equivalent to alt

Hi I have a select that I want to limit to 200 px and it is working fine but now I want to show what's in the box if the text goes beyon the width of the select. (Simular to an alt for an image i...
Forum: ASP 06-23-2005, 12:27 PM
Replies: 1
Views: 745
Posted By tib
Spaces in select value

Sorry there was a single quote missing arround my text...sorry for the waisted space
Forum: ASP 06-13-2005, 12:20 PM
Replies: 4
Views: 1,061
Posted By tib
.net isn't installing

Hi I am trying to install the .net framework 1.1 on my windows xp machine. I seems like it installs (or atleast it starts to run ) then after the dialog that says "windows is preparing for...
Forum: Graphics and Multimedia discussions 06-08-2005, 04:50 PM
Replies: 1
Views: 768
Posted By tib
publish settings

Hi I wanted to limit the options for the user when they right click on my flash movie. Where do I go in flash to accomplish this. Thanks for any help
Forum: HTML & CSS 06-03-2005, 02:29 PM
Replies: 4
Views: 852
Posted By tib
here is the code to my page <html> <head> ...

here is the code to my page

<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />

<script type="text/javascript"...
Forum: HTML & CSS 06-03-2005, 02:20 PM
Replies: 4
Views: 852
Posted By tib
inside the div i guess here is a sketch (I would...

inside the div i guess here is a sketch (I would post the site but I can't at this time). I want my text to be placed inside the div1 area (lBar in my script)

Thanks for the help.
Forum: HTML & CSS 06-03-2005, 01:00 PM
Replies: 4
Views: 852
Posted By tib
oh yeah and I want to place it relative to a div ...

oh yeah and I want to place it relative to a div the code for the div is as follows


#lBar
{
PADDING-RIGHT: 0px;
BACKGROUND-POSITION: 50% bottom;
FLOAT: left;
...
Forum: HTML & CSS 06-03-2005, 12:48 PM
Replies: 4
Views: 852
Posted By tib
positioning text

Hi I want to put links on the side of my page and have them displayed in the same spot regardless of the resolution (I am new at css) How can I accomplish this?
Forum: Other server side languages/ issues 05-12-2005, 06:38 PM
Replies: 3
Views: 1,066
Posted By tib
Converting from Coldfusion to regular asp

Hi I don't know how many Coldfusion experts there are in here but I figured I'd ask this anyway. How hard is it to convert a coldfusion site to just regular asp? Is it replacing the coldfusion tags...
Forum: ASP 05-09-2005, 05:12 PM
Replies: 1
Views: 601
Posted By tib
multiple select (displayed text)

Hi is there a property for the select multiple where i can get the text displayed

ie I'm looking for something like request.form("selectobject")(1).text

I want the displayed text not the...
Forum: ASP 05-09-2005, 12:50 PM
Replies: 3
Views: 669
Posted By tib
stupid me i found the conn.execute command

stupid me i found the conn.execute command
Forum: ASP 05-09-2005, 12:15 PM
Replies: 3
Views: 669
Posted By tib
yeah I guess your right, although I am keeping...

yeah I guess your right, although I am keeping the connection open and opening and closing the recordsets here what i'm thinking of in rough form, the bar & i variable stores the selection for the...
Forum: ASP 05-06-2005, 07:09 PM
Replies: 3
Views: 669
Posted By tib
Question open and close of a recordset

Hi I have to get the sum of a population for different values (i am looping through selections in a mulitselect) based on the individual items in the multiselect. I am opening and closing a...
Forum: ASP 05-06-2005, 06:53 PM
Replies: 5
Views: 876
Posted By tib
yeah is what i wanted, thanks for your help!!

yeah is what i wanted, thanks for your help!!
Showing results 1 to 25 of 35

 
Forum Jump

All times are GMT +1. The time now is 08:59 AM.