Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: RAxel
  • Content: Threads
  • Order by date
  1. RAxel

    getElementById Table Row Problem

    Hey all, I'm trying to give this function some automation instead of hard coding everything. I have 2 functions Function 1 function isdefined(variable) { return (typeof(window[variable]) == "undefined")? false: true; } Function 2 function reconfig(obj,start,end) { var...
  2. RAxel

    Uncheck checkboxes under Radio Buttons

    Hey all, I'm new when it comes to javascript so please bear with me (but I think this is a simple answer anyway) :) This is the layout I have on a website using ColdFusion: RadioButton1 name=Q01 id=Q01A Checkbox1 name=Q01A01 id=Q01A01 Checkbox2 name=Q01A02 id=Q01A02...
  3. RAxel

    Uncheck checkboxes dynamically

    Hey all, I have a setup like this: Radio Button1 name = Q01 value = Q01A Checkbox1 name = Q01A01A Checkbox2 name = Q01A01B Radio Button2 name = Q01 value = Q01B Checkbox1 name = Q01B01A etc... I have Radio Buttons that belong to the same group, and most of the radio buttons have checkboxes...
  4. RAxel

    Force Items to Appear

    Hey all, this is what a page of mine looks like: Question1: RadioButton Checkbox Checkbox Checkbox RadioButton RadioButton RadioButton Checkbox Checkbox . . . I can make the checkboxes appear when the respective radio button is clicked (using onClick), but, what I've...
  5. RAxel

    Preload Checkbox\Radio Button Value

    Hi all, I'm new to coldfusion mx so bear with me. :) This is the scenario. A user takes a survey, when completed the answers are sent to a database. The user can then review their answers, edit anything and resubmit. What I want to do is when they review their answers, is to display the same...
  6. RAxel

    Connect to Work Computer Using Remote Desktop Connection

    Hey all, hopefully this is the right place. I'm obviously trying to connect to a computer at work from home. This is the scenario. I'm home, on my laptop, going through a netgear router and connecting to the company's VPN- then using remote desktop connection (just the plain ole software that...
  7. RAxel

    Connect to Work Computer with Remote Desktop Connection

    Hey all, hopefully this is the right place. I'm obviously trying to connect to a computer at work from home. This is the scenario. I'm home, on my laptop, going through a netgear router and connecting to the company's VPN- then using remote desktop connection (just the plain ole software that...
  8. RAxel

    Windows Server 2003 Bootable CD with RAID drivers

    We have a Dell PowerEdge 2800 with 4 harddrives in it setup in RAID5. There is no floppy drive attached to the server. We're trying to wipe everything and install Windows Server 2003. After putting in the OS CD and hitting 'F6' to add SCSI or RAID drivers, there's a message saying I need to...
  9. RAxel

    Excel: Create own subtotal

    Hello everyone. I wrote a script that takes all the information regarding payroll and formatted it the way the end user wants. Every individual on the sheet is identified by a code number, and are therefore grouped by their code number. My question is this; after each group I created a...
  10. RAxel

    Excel Move ActiveCell Down

    Ok, basically I have a column that contains numbers. I was able to get to the bottom of the column by using the End(xlDown).Select property. All I want to do is to make the ActiveCell two cells below. So I'm staying in the same column, but move down two rows so I can sum the total. Beginner...
  11. RAxel

    Off-site data backup

    Hello everyone, not sure if this is the correct forum, but I figured it's the best one to post this question. Anyways, I'm with a small business and we're currently looking for off-site backup to be done out of state, Kentucky to be exact. I assume the best for us would be to have it all done...
  12. RAxel

    Outlook 2003 Calendar

    This question relates to creating a meeting in a calendar that is located in the Public Folders. We're on an Exchange 2000 Server. Basically, for every meeting created that is in the calendar, there has to be a meeting organizer correct? I'm guessing this isn't always true because if I double...
  13. RAxel

    Social Security Formatting Excel Cells

    I receive files that have social securities for people and they're saved as type general and don't have the dashes written. The problem with this are social securities who have leading 0's. So, a social like 001-11-1111, is saved as 1111111. How can I format the cells so that there are nine...
  14. RAxel

    Design of Database

    Hey all, I'm throwing ideas around for the design of this database and I just wanted to see what people thought here. I should keep track of clients (cities), their employees, and their quarterly payroll information. I was thinking of 3 to 4 tables. Table1 Clients ClientID ClientName Table2...
  15. RAxel

    Export Contacts

    I'm exporting my contacts from outlook 2003 to a file (possibly excel or just a txt file) that I want to use as a data source for a mail merge in word 2003. First off, I'm curious if it is even possible to automate the entire process. I'm able to export my contacts to any file, but I can't seem...
  16. RAxel

    Mail Merge Macro

    I'm curious as to how complex a macro can get. I'm making a macro for a mail merge (from the contacts in my mailbox in Outlook 2003) and getting an error. These are the steps I'm doing: 1. Tools -> Letters and Mailings -> Mail Merge 2. Click Envelope radio button 3. Click Next: Starting...
  17. RAxel

    Macro Mail Merge

    I'm curious as to how complex a macro can get. I'm making a macro for a mail merge and getting an error. These are the steps I'm doing: 1. Tools -> Letters and Mailings -> Mail Merge 2. Click Envelope radio button 3. Click Next: Starting Document 4. Click Change document layout radio button 5...
  18. RAxel

    Delete Excel File- Possible?

    I'm using VBA to export a make-table query to excel, always to the same location (say C:\). Before I export the table to excel, can I first delete the file that's already there (always the same name)? I thought I read somewhere about a 'Kill' statement but I haven't had any luck finding that...
  19. RAxel

    Compare Combo Box In SQL

    I have a form where the user can select the Year for something and I want that Year to be used in a SQL statement. Like so: strSQL = strSQL + " WHERE ((" & tblEmployees & ".EmployeeID = " & tblQuarterlyInformation & ".EmployeeID)" & _ " AND (" &...
  20. RAxel

    Consolidating Tables In A Query

    I have four tables that keep track of payroll information for each respective quarter (1st through 4th). What I want to do, is be able to let the user select which quarters to consolidate. For example, the user wants to see the payroll information for the 4th through 2nd quarter. I want them...

Part and Inventory Search

Back
Top