Skip to main content

Posts

Picassa doesn't show all the images imported

When I imported pictures into a folder in Picassa I couldn't see all the pics... All the smaller pics were hidden from display...this link helped me alot: Step 1: Make sure your file type is being detected In Picasa, click the Tools menu. Select Options . Click the File Types tab. Verify that you've selected the checkboxes for all the formats you'd like Picasa to display. See our list of supported file types . Click OK . Step 3: Look for hidden files or folders Picasa won't show any files or folders that have been marked hidden in Windows. To see if a folder is hidden, follow these steps: Navigate to the folder in question on your computer. Right-click the folder or file. Select Properties . The 'Hidden' checkbox must be deselected in order for Picasa to access content in the folder or file. Repeat the above steps for every folder in the file path. For example, if your photo is stored at C:\Documents and Settings\fredflintstone\My Documents\My Pictures, yo...

How to align text in InDesign

Many different ways to do it...But one simple way - Step 1: Hit Alt+Ctrl+I - This will show us all the hidden characters Step 2: To align a paragraph into one single justified para - Hit Ctrl + \ (Back Slash) Now whenever you want to add a line in the same para graph hit - Shift + Enter (Soft Return) This will keep the text aligned. Also refer to this link: HowTo Write back if you still have issues aligning the text!

Accessing a windows form controls from another class

Answer is in this page: http://www.c-sharpcorner.com/Forums/ShowMessages.aspx?ThreadID=34453 In case its not accessible If we have two classes like these testclass.cs: using System; using System.Collections.Generic; using System.Text; namespace clTestProg { public class testClass { public void InitControls(System.Windows.Forms.GroupBox gbx) { System.Windows.Forms.Button buttonODelete = new System.Windows.Forms.Button(); System.Windows.Forms.Button buttonOUpdate = new System.Windows.Forms.Button(); System.Windows.Forms.Button buttonOAdd = new System.Windows.Forms.Button(); // // buttonODelete // buttonODelete.Location = new System.Drawing.Point(251, 324); buttonODelete.Name = "buttonODelete"; buttonODelete.Size = new System.Drawing.Size(75, 23); buttonODelete.TabIndex = 0; buttonODelete.Text = "&Delete"; ...

Attempted a bean operation on a null object

We might get this error when we try to use a bean somewhere in our JSP! In such a case you can: You could have such error when using jsp:setProperty or jsp:getProperty on a bean which does not exist. For example, if the "name" attribute does not match the "id" attribute of Thus check the bean name and id you are using in different places...may be you are not using the same name everywhere!