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 strongm 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: *

  1. pmrankine

    Working in the UK

    mag007, You said you work for Citizen, part of the RBS Group? Would you be able to get a secondment to somewhere in the UK?
  2. pmrankine

    New Job - Starting off right

    BJCooperIT, When I saw the title and author of this thread I was looking forward to some great tips from you as I've been used to your great advice - didn't think you'd be looking for advice yourself! I too am about to embark on new beginnings with what I hope to be a longer term job so I've...
  3. pmrankine

    Are women paid less for IT jobs?

    Is it just me...? What if a woman takes a year off after having a baby? Please don't say that we should be penalised. I returned from maternity leave in Sept. and I've been given a pay rise as they realised how much work I actually do.
  4. pmrankine

    Type mismatch: 'Session' - works on my PC not on Server

    Thanks PHV. Posted there and then thought I should do a search! Surprise, surprise I found the answer: Thread333-747622 which points to an MS article: "Using Session Objects with Session State Disabled Returns Type Mismatch Error" - I wasn't aware of this on my own PC but when I changed it on...
  5. pmrankine

    Type mismatch: 'Session' - works on my PC not on Server

    Sorry, I think I've found the problem. Did a search in VBScript forum but not here! When I tried here, found the following: thread333-747622 which points to an MS article: "Using Session Objects with Session State Disabled Returns Type Mismatch Error" - I wasn't aware of this on my own PC but...
  6. pmrankine

    Type mismatch: 'Session' - works on my PC not on Server

    I've started to write a small intranet. Got it working on my PC. The IT section needs a login, so I look up the database for the login details, then save the username to a session variable for use elsewhere. I now want to move the intranet to a server but have come up against this error...
  7. pmrankine

    Type mismatch: 'Session' - works on my PC not on Server

    I've started to write a small intranet. Got it working on my PC. The IT section needs a login, so I look up the database for the login details, then save the username to a session variable for use elsewhere. I now want to move the intranet to a server but have come up against this error...
  8. pmrankine

    Using onChange to fill textboxes from recordset

    Do you need an equals before the array name? <%=RecSet_Array(0,x)%> pmrankine
  9. pmrankine

    Using onChange to fill textboxes from recordset

    Finally got it to work.. The data is being pulled from a Lotus Notes Database (which I know less about than asp and javascript) - one of the columns' multi-value property was set to 'new line'. After I changed this, problem solved - with a big thank you (and a star) for mbiro.
  10. pmrankine

    IT Soft Skills

    My experience is a mixture of a few of the above posts. I try to reassure users that their questions aren't stupid and encourage them to ask if they are not sure because: - it can save them time trying to get something to work - it can save problems occuring - they are not being stupid because I...
  11. pmrankine

    Using onChange to fill textboxes from recordset

    Yes - works as is. As soon as I populate the arrays from a recordset, it doesn't work. I think I'll need to push through my training - I've a huge list of new things to do/learn but the only resource I've got is the internet. Sorry, moan over.
  12. pmrankine

    Using onChange to fill textboxes from recordset

    Thanks, I've tried your code - it makes sense now as I typed it in. Only problem is it's not working.. I know the arrays contain the right information: the combo box is populated if I view the source I see the following - function setDetails(item) { If(item == 1 {...
  13. pmrankine

    Using onChange to fill textboxes from recordset

    Thanks for your response mbiro, I'm pulling 3 columns from a database: username, telephone and email The dropdown is populated with the username When a username is selected, their telephone and email details are populated in the textboxes.
  14. pmrankine

    Using onChange to fill textboxes from recordset

    Firstly, apologies if the answer to this is staring me in the face but I've been trailing Google and forums for a week now and I'm a little bamboozled... (also fairly new to asp/javascript so please be gentle!) Okay, to my problem... I have one dropdown and 2 textboxes - all info for these are...
  15. pmrankine

    Dealing with rude/inconsiderate people

    There are two approaches that we've found need to be taken: Departmental - we created a support log, nothing fancy just a little web-based db that we could enter user requests and assign priority to. Company - a new personnel manager started and brought in a system for new starts and leavers...
  16. pmrankine

    Excel formula writing in VB

    Does this help? Dim objExcelApp As Excel.Application Dim xlsExcelSheet As Excel.Worksheet ' Create the Excel application. Set objExcelApp = New Excel.Application ' Add the Excel spreadsheet. objExcelApp.Workbooks.Add ' Check for later versions. If...
  17. pmrankine

    Exporting data to Excel

    Just another suggestion, if recordset is from access .... Dim objExcelApp As Excel.Application Dim xlsExcelSheet As Excel.Worksheet ' Create the Excel application. Set objExcelApp = New Excel.Application objExcelApp.Visible = False ' Add the Excel spreadsheet...
  18. pmrankine

    Loyalty To The Company

    When I saw &quot;shoe.factory&quot; I immediately thought of a post I saw a while ago here. I can't find the post (and I'm not sure which forum it was) but here's the quote in case you haven't read it: &quot;On a visit to a foot wear factory in Japan, a gentleman was extremely suprised when...
  19. pmrankine

    Dekstop lifecycles

    lionelhill, Good point but the software that's developed should be tested on a PC that matches the users' spec. pmrankine
  20. pmrankine

    Clear TextBox

    infoReceiver, That should work. Where is the code? If not within the form code then you'll need to fully reference it: frmFormName.txtTextbox = &quot;&quot; pmrankine

Part and Inventory Search

Back
Top