Can I add a second table (high-level) of contents and show only H1 headings? When I tried to add a second TOC, it seemed to just scroll down to the bottom of my existing TOC.
I have a lot of documents in .ppt and .pptx (blame the co-workers). I would like to read them on way home or elsewhere... when I have a little time to catch up with things. One thing I could do with the documents is cutting them together into one file. But saving that one even if a smaller version of PDF (according to Office 2010) results in a huge file.
And PDF is hardly readable on a Kindle.
I would need something .epub free, easy-on-the-device way.
Is there such a thing?
(Manually I could copy all the images down into native text and whatnot and create new presentations, save those, convert them. But that would just take a lot of time.)
I created tons of figures for my thesis in PowerPoint and now I realized that when I try to save the grouped items (= one figure) as a picture (EMF), it somehow asymmetrically adds a border on the left and the bottom.
First one is original group, second is the same pasted as a picture.
Original group:
Pasted as a picture:
Does anyone have an idea how to fix that for a huge number of figures?
I think it only started happening when I used a page size of 1m x 1m in PowerPoint to be able to zoom in more for some figures. However, I cannot not simply change the page size now as it messes up font and object sizes. Also, copying it into a smaller page and then saving as EMF doesn't do the trick. Maybe it is not related to the page size after all.
Cropping every figure individually would be a lot of work, so I hope there is a different solution.
I found the origin of the problem: the text label in the left bottom corner of each image (0s, 8s, 16s). I still do not understand why it is happening though, since the text label does not expand over the edge of the image (it was aligned using the align left function). It would still be great if there was an easy way to fix this, especially as I want to keep the text where it is.
I have a list with date and quantity of items used
IE:
2009.03.18 -1
2009.06.05 -2
2009.06.22 -1
2009.06.29 -2
2009.07.14 -1
2009.07.14 -1
2009.07.14 -2
2009.07.20 -2
2009.07.30 -1
2009.07.30 -1
2009.08.06 -1
2009.08.26 -1
2009.09.15 -1
2009.09.16 -2
2009.09.22 -2
2009.09.23 -2
2009.09.30 -2
2009.10.07 -1
2009.10.08 -2
2009.10.22 -1
2009.11.06 -3
2009.11.17 -2
2009.11.20 -1
2009.11.23 -2
2009.11.23 -1
2009.11.25 -2
2009.11.27 -1
2009.12.02 -2
I need to know how much items i consumed in a determined period, ie, 15 days. I can do it in a monthly basis, basically using the month function to extract the month and work from there, but with an arbitrary time (which is the average lead time from my supplier) dont know how to get a function to split the date list in chunks of 15 (or whatever) days.
Any tips?
Thanks!
Hello:
I have a custom toolbar associated with some VBA macros in Word 2003. I want this toolbar to alway be visible, independent of the doc or template open.
Is there any way of doing it?
Thanks in advance.
Hello,
I have problem with my HyperV server, he minute after start was stopping with critical error.
Where in the system i can find more information about this error?
i'm looking to become really really good at understanding my machine. this includes hardware, software, firmware, the internet, creating my own network, troubleshooting problems, etc. I have an aerospace engineering degree so i'm technically inclined, but i want to really delve deeper in becoming a techno guru.
what literature should i start reading? books, textbooks, journals, articles, papers, etc. anything would help, thanks!
Folks/Mates,
I need some advise and assistance regarding the testing of Hyper-V.
Here is my h/ware configuration:
1) Intel i5 processor (i5-750)
2) Intel M/B DP55WB
3) 6 GB DDR3 RAM
OS = Server 2008 R2 Standart (evaluation copy).
I installed 2008 r2 on my machine and added hyper-v role to it. I created 2 VMs and installed OS. But after finishing the OS installation the VMs are not booting up.
After finishing the OS installation, the VM reboots automatically (normal behaviour) and shows "preparing your system for first time" after that it reboots and didn't come online.
Few things to notice, when I am running "securable" on my server 2008 R2 OS it shows that processor is not supporting h/ware virtulization, but (since my desktop is dual boot) when I am running "securable" on my windows 7 OS, it shows that process "does" supports hardware virtulization. VT option is already enabled in BIOS.
Any help and suggestions are highly appreciated :)
Thanks in advance.
Pradeep Rawat
I have data in a range of cells (say six columns and one hundred rows). The first four column contains data and the sixth column has a limiting value. For data in every row the limiting value is different. I have one hundred such rows. I am successfully using Conditional formatting (e.g. cells containing data less than limiting value in first five columns are made red) for 1st row. But how to copy this conditional formatting so that it is applicable for entire hundred rows with respective limiting values.
I tried with format painter. But it retains the same source cell (here limiting value) for the purpose of conditional formatting in second and subsequent rows. So, now I am required to use conditional formatting for each row separately s
I'm using Java to read a form that is in an Excel spreadsheet that the user fills in with information about geometric shape. Ex:
Shape :_________
Color :_________
Area: _________
Perimeter:________
So far the code I have can I can read what I want in the form and print out the values of Shape, Color, Area, Perimeter.
public class RangeSetter {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
FileInputStream file = new FileInputStream(new File("test2.xls"));
//C:\Users\Yo\Documents
// Setup code
String cname = "Shape";
HSSFWorkbook wb = new HSSFWorkbook(file); // retrieve workbook
// Retrieve the named range
// Will be something like "$C$10,$D$12:$D$14";
int namedCellIdx = wb.getNameIndex(cname);
Name aNamedCell = wb.getNameAt(namedCellIdx);
// Retrieve the cell at the named range and test its contents
// Will get back one AreaReference for C10, and
// another for D12 to D14
AreaReference[] arefs = AreaReference.generateContiguous(aNamedCell.getRefersToFormula());
for (int i=0; i<arefs.length; i++) {
// Only get the corners of the Area
// (use arefs[i].getAllReferencedCells() to get all cells)
CellReference[] crefs = arefs[i].getAllReferencedCells();
for (int j=0; j<crefs.length; j++) {
// Check it turns into real stuff
Sheet s = wb.getSheet(crefs[j].getSheetName());
Row r = s.getRow(crefs[j].getRow());
Cell c = r.getCell(crefs[j].getCol());
if (c!= null ){
switch(c.getCellType()){
case Cell.CELL_TYPE_STRING:
System.out.println(c.getStringCellValue());
}
}
}
}
What I want to do is to create a method that gets the that information and another that sets it.
So far I can only print to the console
I cannot sync my inbox with my WM device, the Inbox didn't show in sync settings in Windows Mobile Device Center. WMDC did show Calendar, Contacts, RSS Feeds and everything except Inbox. Using my mobile to receive emails ends with no error messages, but no email appears in the inbox of my mobile. What is wrong with Windows Mobile Device Center? Need help! Thank you!!
I need to write a macro to manage ranking and calendar for curling turnament.
The event will follow the Shenkel system
first match determined by general draw
after that every team has played one match is possible to determine the first ranking
second match determined by the rule: 1st vs. 2nd - 3rd vs. 4th - 5th vs. 6th and so on
after that every team has played two matches is possible to determine the second ranking
and so on until the end (3 to 5 matches normally).
Another rule is that from the second match is not possible to play against a team that I played before!
I was thinking to use MS-excel but also Calc (both LibreOffice/OpenOffice) should be fine. Thanks in advanced
I have a licensed instance of 2003 server standard edition on a physical server. can i also then run a third party virtual instance of the same server on the physical machine... i.e a vmware server with a cloned copy of the server for testing.
or do i need another license for the virtual copy as well?
I have auto recovery on my Excel program and I save my work several times a day. Tonight, I turned on the computer and it had shut down down for some apparent reason. When I pulled up my Excel program it only showed one auto recovery file form 8am this morning even though I worked/added onto my Excel sheet for several hours this afternoon.
Is there any way to recover my work I did this afternoon?
I'm wondering if anyone knows of a plug-in for MS Word which can handle key-presses of surrounding keys when typing at speed (rather like iPhone or Android autocorrect)?
My use case is in transcribing interviews where I need to type quickly (even with the playback at half speed) - but I don't do this often enough to become a proficient touch typist. I will also be paying close attention to the text produced in subsequent analysis so I have a reasonable expectation that I'll catch any "hilarious" autocorrect errors.
Any pointers to plug-ins which work at either a system level or within MS Word would be great. Even in an open source word processor at a pinch, though I'd miss the MS Word environment and my macros.
Thanks.
I am trying to cleanup a text and for some reason every line duplicated 3 times am i able to get ride of duplicates with regex or tricks or do you know a software which could do that , text file is like this
Party Started 10:17 (89/1/2)
Party Started 10:17 (89/1/2)
Party Started 10:17 (89/1/2)
Jessica At Dinner 17:54 (89/1/2)
Jessica At Dinner 17:54 (89/1/2)
Jessica At Dinner 17:54 (89/1/2)
How can i clean it up , and get ride of duplicated lines , it's about 69,587 lines
I want to create a hyperlink to the location of my Word document. The document is on an web server so its path is like http://myserver.com/folder/worddocument.docx.
I can use the field code "FILENAME" and the field code "HYPERLINK", but I can't figure out how to use them together.
File name:
{ FILENAME \* Lower \p \* MERGERFORMAT }
Hyperlink:
{ HYPERLINK "http://myserver.com/folder/worddocument.docx" }
After hitting F8 before startup and selecting "enable boot logging", I let windows try to start up and blue screen / restart (which I'm currently trying to troubleshoot) - I run the 'repair' function, open a command prompt, and try to find the boot log file, which I expected to be at %SystemRoot%\ntbtlog.txt - but it's not. Where is it?
PS - probably makes no difference, but this is windows 7 ultimate 64bit to be precise.
We have a remote SQL 2008 server (ServerB) that needs to keep a warm (15 minute interval is OK) copy of production data (ServerA). ServerA is also SQL 2008. Log Shipping looks like it will do the job. We can only get to the destination ServerB with remote desktop. Is there a way to set this up when we can't get to both servers from one Management Studio? We want to be able to temporarily (until a VPN is setup between our network and the ServerB network) manually export a small .trn file, copy it via remote desktop to ServerB and then manually import those transactions from the .trn file. My supervisor says he saw a post saying this is possible. We were just trying to avoid doing a full database backup and copying that every time. Thanks in advance for any suggestions on this.
Am currently using Outlook 2013.
Several times, when a mail is forwarded to me, i only see the First/Last name of the person in the forwarded mail, not the email id. Is there a way to make Outlook always display the email id.
I get these mails from people, who are also using Outlook but different versions.
One solution which we have to resort to, is to attach the mail, rather than forward, that way it retains the email address, but this is cumbersome, and I cannot ask everyone to do this.
This is similar to this question, but the answer selected does not work for me.
I have a range of long dates from Sep 2014 till Dec 2018, and for each month I have an amount. I want to sum up the data of each year in one cell.
Example:
2014 : sum of all amounts that are in 2014
2015 : sum of all amounts that are in year 2015
Sep2014 oct2014 Nov2014 Dec2014 Jan2015 Feb2015 ...
100 200 250 150 20 50
I know that 2014 = 100+200+250+150 = 700, but I need a formula to search for all cells that include that year and sum up the numbers.
Question 1) and 2) were moved into separate thread Which Windows remote connections bypass LSA? and what r definitions of login vs. logon session?
3)
Do I understand correctly that multiple remote RDP sessions are supported by Windows XP but require additional (or modified) licensing?
Which one?
Or it is always illegal to run multiple RDP sessions on Windows XP?
even through non-MS commercial software?
----------
Update1:
I already understood my error - the main questions were about definitions (important to find the common language with others) and the licensing questions were collateral - but it was already answered.
I shall try to separate these questions leaving here the questions about RDp licensing and migrating other questions into separate thread
----------
Update2:
Trying to "work around" licensing
terms is pointless and wasteful of
time
I never try "working around" and I never ask anything like this, I am not specialist in licensing. My clients/employers provide me with tools and licensing support. They have corporate lawyers, planning/accounting/purchase departments for these issues.
The questions that I ask is the matter of scalability and efficiency (saving my and others time) in my developing work.
For ex., Just because I need autentication against Windows AD it is time-saving to use ADAM instead of deploying full-fledged AD with DC + servers + whatever else?
Nobody is forcing you to use Windows
XP
I shall not rush into re-installing all my operating systems on all my development machines (at home, at client premises) just because a few guys have a lot of fun downvoting development-related questions in serverfault.com. If I do so, I make a joker from me in the eyes of my clolleagues et al
Update:
I unmarked this question as answered since it had not even adressed the question, at least mine.
Should I understand that Terminal Server PRO, allowing Windows® XP and Windows® Small Business Server 2003 to host multiple remote desktop sessions, is illegal?
Related:
My answer to question Has windows XP support multiple remote login session (RDP) at a time?
What is default sorting for excel 2010 pivot table and charts I have a "Year month Week" column in my data sheet which I am using as row label, excel pivot table renders it arbitrarily
like in data sheet I have data in the following order
2010 October Week 1
2010 September Week 1
2010 September Week 2
2010 September Week 3
2010 September Week 4
but when I use this in pivot table it generates row labels as
2010 October Week 1
2010 September Week 3
2010 September Week 2
2010 September Week 4
2010 September Week 1
I want pivot table to show row labels exactly in the same order as it is in data sheet
After trying it for a few times, I can't seem to edit the font size through Ms Word's Table - Table Autoformat. I can edit a lot of other stuff except for the font size. Are there any explanations or workaround to this?
thanks
I've created under "Static Model-Top Package" 4 different sequence diagrams. Once I tried creating the fifth it won't keep it. I try to double click and open it and it opens the 4th one. I can delete the 5th one and create a new one. I can edit this but as soon as I go to another diagram, I've lost it and can only go back to the 4th one and edit that even though I right clicked the 5th one and selected "Open Sequence".
What is going on? Has anyone else seen this Visio issue?