Search Result

Collapse
35 results in 0.0037 seconds.
Keywords
Members
Tags
multiple
  •  

  • How do I select multiple SPECIFIC sheets from an Excel Workbook?

    I know how to select 1 sheet or all sheets for an export command, but how would I for example, select "sheet1" and "sheet3" while ignoring "sheet2"?
    See more | Go to post

  • How to edit multiple files in several sub directories?

    I want to add particular text to multiple files in each directories

    Directories such as d1,d2,d3 so on. Each directory contains a unique file name named print.txt but contains different content. I want to add a particular text to each of the text file. How to add the text?
    See more | Go to post

  • Ivan Kartun
    started a topic Adding multiple Lines for data input

    Adding multiple Lines for data input

    Hi all

    Please help

    I need to generate multiple lines (per employee per day)

    3 tables
    Employee - Empl No 001 John, empl No 002 Mary
    Day - Day ID 12001 Jan 1 2012

    The next table needs to be generated as follows:

    Daily input Table
    Record 1
    Day No - 1201
    Empl No - 001
    Hrs in Office - 0
    Hrs at client - 0
    ...
    See more | Go to post

  • Loop a form to ask for multiple guest the same information

    Can someone give an idea or guide to do this:

    i have two forms.
    First form is used to ask from, to, departure time and how many people we want to book for.
    Second form is used to ask for each person that we book what is their name, age, title, phone number.

    i planned to use a loop to loop form 2 to ask for their info. However i woner how we can do this?? can a form be an array to loop??
    See more | Go to post

  • Skkra
    started a topic How does Windows fill multiple pagefiles?

    How does Windows fill multiple pagefiles?

    Hey everyone. I have a server with a C:\ drive for the OS, and a D:\ drive for applications and data. It's running Windows Server 2008 R2.

    Right now, we have a small pagefile on the C:\ drive and a larger one on the D:\ drive; this is how this server came set up by default. I did some monitoring over the last week, however, and found that the system is never even touching the pagefile - it has tons of RAM, and never even fills up 25%...
    See more | Go to post

  • Joe Farage
    started a topic how to join 3 tables with Full Joins

    how to join 3 tables with Full Joins

    I have three tables that I want to pull information from. All three tables have a job number field which i would use as the main connection between them all. What's the easiest way to join these three tables without having duplicate data in the report?
    See more | Go to post

  • Smoothing an image multiple times fast

    Hi,
    I need a fast way to smooth an image multiple times fast.
    The way that i am currently using works like this(written in c#)
    NOTE i am only smoothing the R value of the RGB color
    Code:
    for(int i=1;i<height-1;i++)
    {
       for(int j=1;j<width-1;j++)
       {
          int n1 = image[j,i-1].R;
          int n2 = image[j,i+1].R;
          int n3 = image[j-1,i].R;
          int n4 = image[j + 1, i].R;
    ...
    See more | Go to post

  • Multiple AJAX requests at the same time not working properly

    Hello,

    I'm encountering an AJAX problem when I try to execute multiple AJAX requests at the same time. What I want to do is delete a message and display the status (succes or failure) of that in div1, and refresh the messages on the page in div2. This needs (for as far as my knowledge reaches) two AJAX actions from which I both need the responseText.

    The problem
    What happens when I execute my script is that the second...
    See more | Go to post

  • Assigning multiple variables in an input statement

    Ok, here goes
    I was wondering if there was a better way to do this. I want my final program to run like this for the user:

    What did x get? <user input>
    What did y get? <user input>
    What did z get? <user input>

    x received <users answer>
    y received <users answer>
    z received <users answer>

    I'm aware of two ways of doing this but they both seem rather...
    See more | Go to post

  • ryangsh
    started a topic count & multiple group by

    count & multiple group by

    I'm trying to consolidate inventory records in db. (I'm displaying the result in a table form but for this post I'm putting it simple)

    table_name= PC:
    department - msoffice
    IT - 2000
    IT - 2002
    IT - 2000
    SNM - 2000
    SNM - 2003
    Finance - 2003
    -----------------------------------

    expected output:
    msoffice - dept - qty
    2000 - IT - 2
    2000 - SNM - 1
    2002 - IT...
    See more | Go to post

  • How to append multiple records using a recordset?

    I use this code to append one record at a time to a new record in a table and it works 100%. Instead of this, I would like to append all the records currently captured and filtered using the Racename field (as it is happening now), but using a button when i exit the Racesetupf form. In other words, append these records as a batch and not as single records. How do i change this code to accomplish it?

    Code:
    Dim MyDB As DAO.Database
    ...
    See more | Go to post

  • Gael Zoumof
    started a topic How to connect project to second database?

    How to connect project to second database?

    Hello,

    I have two projects, each on their own server and db.
    Say Proj1, server1, db1, and Proj2, server2, db2.
    Both are working fine on there own.

    Proj1 is a big project with multiple components. I need to add a new component (only used by 2-3 people a few days each month), that has to interract with both db1 and db2.
    It's an asp.net c# web application, SQL db, using NHibernate.

    ...
    See more | Go to post

  • How to create 300 HTML pages from a list in a document?

    I have a document with a list or roughly 300 names.
    I need to make an individual .html page with that name.

    Instead of copy paste an html page and rename it, is there a program that I can paste that 300 name list, and have it generate basic html pages?
    See more | Go to post

  • Gonzalo Gonza
    started a topic Multiple conditions in a single IF

    Multiple conditions in a single IF

    I want to know whether a number is a multiple of 2 and/or 5
    But Python doesn't let me put lots of things after the '=='

    Here's my code:
    Code:
    def asdf(n):
    	n=str(m)
    	if n==2:
    		a=True
    	elif n==5:
    		a=True
    	elif m[-1:]==2 or 4 or 6 or 8 or 0 or 5:
    		a=True
    I also tried:
    Code:
    elif m[-1:]==2, 4, 6, 8, 0, 5:
    But it doesn't make sense

    I wish...
    See more | Go to post

  • VBA DLookup with multiple criteria not functioning

    Happy Halloween all,

    I have been struggling at work with a DLookup using multiple criteria. I would like a text box to display the results of a DLookup based on the values selected in three comboboxes and the table that runs them all. Here is my code:

    Code:
     
    
    Private Sub Subverbs_GotFocus()
    'When the Subverbs gets focus it looks up proper subverbs from Authority_Lookup table
    Me.Subverbs = DLookup("[Subverbs]",
    ...
    See more | Go to post
Working...