How to make column view default?

This has been bugging me for a long time, but it's such a little thing that I've never bothered to investigate before.
I am about to give my old G4 Powerbook to my father who is still using OS9, so the change to OSX will be quite an adjustment for him. He has always had trouble dealing with folders and the hierarchy so when I set the machine up for him, I want things to be as consistent as possible and I think that using column view in Finder windows will help him to see where exactly his documents are stored.
Here is where the problem lies. Whenever I create a new folder and open it's window, I am presented with icon view even though I have "Open new windows in column view" selected in my finder prefs.
How the heck do I get all windows to always open in column view?? This seems so basic I'm embarrassed to even be asking the question!
Thanks in advance
Marion

I tried the above, and it worked in Leopard but not in Tiger. In fact in Leopard it doesn't have to be the root HD - if you open any folder, set its view the way you want and then close it, that sets up a "global" view style. All subsequently opened folders will have that same global view unless you override it, which you can do for an individual folder by checking the "Always open in XXX view" box in the View Options for that particular folder.
I don't think there is a way to set up such a "global default" view directly in Tiger. I think that the general Finder preference for "Open new windows in column view" doesn't mean "all" windows - it means just the "new" window that is generated by command-N (or Finder>File menu>New Finder Window).
I found an interesting post that describes using Automator in Tiger to go through every existing folder in the home directory, setting each folder's window to column view - see:
*10.4- Change all Finder folders to identical views - Mac OS X Hints*
http://www.macosxhints.com/article.php?story=20050502101913508
I don't know how well this works or how long it takes.

Similar Messages

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make column range based on a column in Oracle BI 11g

    Hello everyone!
    I want to know, how to make column range from a column in oracle bi 11g.
    for example!
    I have a column amounts and I want to build on this with other values of quantity, other column range 1-9,10-49,50-99,100-249, 249 o more.
    regards!
    when I try to make the range I have error.
    Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: SELECT CASE WHEN "CUBO_DEEE_TAB"."CANTIDAD" BETWEEN 1 AND 9 THEN 1 a 9 ELSE "CUBO_DEEE_TAB"."CANTIDAD" END FROM "DM_DEEE"
    Edited by: 964157 on 09-oct-2012 11:50

    You cannot add columns dynamically. But you can define a maximum number of numbers and then hide unused columns in your form useing SET_ITEM_PROPERTY(..,VISIBLE, PROPERTY_FALSE);

  • How to make apple maps default on my mac?

    I want apple maps to default on my map, e.g.., when I need to send meeting location address in calendar.

    Hi ajjacoby14,
    To make iTunes the default application to use for playing music, use the steps found in this article -
    iTunes for Windows: How to make iTunes the default application for music and audio files
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How to make Firefox the Default search engine on Android Kitkat

    HTC Desire 816 with Google set as Default

    Here's how to [[Make Firefox the default browser on Android]] .
    [https://support.mozilla.org/en-US/kb/make-firefox-default-browser-android]
    Did this help you? We will love to hear from you.
    Thanks.

  • How to make QuickTime the default player again?

    How to make QuickTime the default player again?

    Two finger Click on the file and then select get info.
    It will open a window.
    Srcoll down to open with.
    Select Quicktime.
    Then select change all.
    After that, all MPEG 4 or the type of file that video is, will be defaultly opened by quicktime.
    Hope this helped!

  • How to make changes in default toolbar

    hi
    i m using oracle forms 6 and i want to know either it is possible to change in the default toolbar or not if so plz let me know how to make changes in default toolbar and re-adjust according to my need.i know how to create new toolbar and connect with form but i don't know whether this is possible to re-arrenge and change the default toolbar attached with forms.
    thnx in advance

    thnks for ur reply. i worte that i m using forms 6i so that ur reply do not fullfill my query.
    i posted my query because i have seen an application developed in oracle form 6 and he designed exactly the same iconic toolbar as we see normal while running the forms and i tried but could not able designed accordingly as button don't have "bevel" property and button we use .ico extension if we want to use icon buttons.now i m astonised if there is not any way make changes then how he did.

  • How to make utf-8 default encoding firefox 4.0

    how to make utf-8 default encoding firefox 4.0

    The default encoding that you set in Firefox/Tools > Options > Content is only used if a server doesn't send an encoding via the HTTP response header and if there is also no meta tag or other indication in the file.

  • How to make iTunes the default on my MacBook Pro

    I recently updated iTunes and now I'm having trouble making it my default music player. Any ideas?

    Hi ajjacoby14,
    To make iTunes the default application to use for playing music, use the steps found in this article -
    iTunes for Windows: How to make iTunes the default application for music and audio files
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How to make Scroll viewer zoom disable

    how to make Scroll viewer zoom disable in windows store app

    Hi Imtiyazk,
    Thanks for sharing the solution, should help others have the same issue.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make all settings default?

    how to make all settings default?

    What specific settings are you alluding to?  More details please.
    Ciao.

  • How to make list view the default in finder?

    Is there a way to make "List view" be the default view for all folders opened?
    I know that with a window open, you can hit CMD-1, 2, 3 or 4 for icon, list, column, or cover view, but I want "list view" to be the default.
    I know that in some windows I can set the list view the way I want it and then close the folder, knowing the next time it opens, it will remember it, but that doesn't seem to work for encrypted sparse-bundle drives. They ALWAYS come up in icon view, regardless of the previous view it was in.
    So hopefully, setting the overall default will help me solve this problem.
    TIA for any advice/tips!
    Steve

    I could swear that I've done this before, in exactly this way, and it worked fine on my internal HD, but not on my encrypted sparse-bundles. But now it's working.
    Sorry to have created chaff in the group. I should have tried again just before I posted....
    Steve

  • How to make a field default in mm01 while coping from other material

    hi all,
    i want to make a field default in mm01 ....mara-mstae -
    say value 'A', when
    i am coping from other material.
    normally a T.variant is working in the scenario when im creating a material
    but not when i am coping from other material.
    Any field exits would work on that .if so  how?
    thanks in advance,\
    sg

    i have to make the x-plant material status as 'BE' in mm01 basic view 1 ,when the material is created or copied from .<b>but it should be only default for the user might change it</b> 
    now when the material was created its workin---- coz a transaction variant has been created.
    but when im coping it from other material its picking the properties of the old material ( from which im coping) ..not the field value which i want to display as default.
    field exit only validates. can we give default value by it ,before saving a material??????
    thanks,
    sg

  • How to make it a default for all received messages to not preview the attachment but instead show the icon? (mac mail.app)

    Hi
    I am having trouble with large incoming mail attachments.
    When I receive a large attachment (pDf) the useful mail preview feature attempts to show a preview of the attachment.  Unfortunately this is causing a lot of trouble as some PDFs are extremely large and therefore take time to open/preview.   If I right click the attachment and select view as icon, the problem with that specific message ceases as the attachment is no longer previewed.
    How can I make it the default for all attachments in received messages to only be shown as a icon and not previewed?

    In Terminal,
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool Yes

  • How to make column editbale

    Hi,
    I have a doubt in Table UI Element.Can we made columns editable in Table through programatically.When i am trying in  using this code.it  is giving the error saying that you cann't create instance of CL_WD_INPUT_FILED in the same class or its sub classes.if it is so then how do i get instance of input field to make column editable. Please give me the solution ASAP.
    method wddomodifyview .
    data: obj_table type ref to cl_wd_table,
          lr_column type ref to cl_wd_table_column,
          lr_input type ref to cl_wd_input_field.
    obj_table ?= view->get_element( 'TABLE1'  ).
    obj_table->set_visible_row_count( value = 50  ).
    lr_column = obj_table->get_column(
                   id         = 'PRICE'
    *              INDEX      = INDEX
    lr_column->set_table_cell_editor( the_table_cell_editor = lr_input  ).
    endmethod.
    Thanks in Advance,
    Suman.

    Hi
    Change your coding like this it will work
    data: obj_table type ref to cl_wd_table,
          lr_column type ref to cl_wd_table_column,
          lr_input type ref to cl_wd_input_field.
    obj_table ?= view->get_element( 'TABLE1'  ).
    obj_table->set_visible_row_count( value = 50  ).
    lr_column = obj_table->get_column(
                   id         = 'PRICE'
    *              INDEX      = INDEX
    lr_input = cl_wd_input_field=>new_input_field(
    id = 'IPFIELD'
    bind_value = 'NODE.PRICE' ).
    lr_input->SET_READ_ONLY(  '  '  ).
    lr_column->set_table_cell_editor( lr_input  ).
    Hope this helps U
    Regards
    Tamil

Maybe you are looking for

  • Navigation with portlets

    Hi, I'm new to portlets and i'm trying to understand how they work. I'd like to know how to build a web-app. I know how to build an app with servlets/JSPs but not with portlets. Are the views implemented by JSPs or by portlets. And what about servlet

  • FB70: User exit when the save button (for posting) has been click

    Hi ABAP Gurus, With regard to FB70, can anyone provide me the name of the user exit that will be triggered when the save button (for posting) has been clicked? Thanks! <b> Best Regards. Brando</b>

  • Joining two fileds to single field

    Hi I am bit new to DB Side. I have Condition like if (B6.series IS NULL then B6.width ELSE B6.width+'/'+B6.series) I want to achieve this in Oracle select Statement. I had written something like this Case      When SERIES IS NULL Then WIDTH      Else

  • Activating locks using TestStand API

    Hello, I have a question... how do I lock and unlock a lock, created in TestStand, in Visual Basic (by using the teststand API)? Greetz Jan Toebes

  • Sequence  generation problem

    hi, Sequence values are not generated properly if the session is changed . thank you