Home

Advertisement

Customize
Microsoft Access Blog Below are the 20 most recent journal entries recorded in the "accessblog" journal:

[<< Previous 20 entries]

January 28th, 2010
02:15 pm

[Link]

Про отъем земли на поле чудес в стране дураков

Наметился отличный прецедент по отъему земли у граждан в ситуации с Речником:

  • подается иск в суд о снесении дома\дачи
  • заочно выносится решение о сносе
  • сносится дом, убирается мусор
  • землю забирает истец в счет сноса и уборки мусора

Таким образом честный гражданин совершенно безвозмездно отдает свою землю в доход государства, даже и не подозревая об этом!

(Leave a comment)

December 31st, 2009
12:48 pm

[Link]

Про работу

Find a job you love and you'll never work a day in your life. 
Confucius

С наступающими праздниками!

(Leave a comment)

December 17th, 2009
05:32 pm

[Link]

Кто сосет вашу батарею?

В Window 7 теперь можно определить источник быстрого разряда батареи ноутбука. Для этого надо в командной строке набрать powercfg –energy и после завершения работы посмотреть сгенерированный файл energy-report.html. Подробности на howtogeek.com.

(Leave a comment)

December 15th, 2009
09:20 pm

[Link]

Качество госуслуг
Только что в программе Время министр связи показал работающий сайт госуслуги.ру. На самом деле нифига он не работает, похоже средств хватило только на иконку, все остальное ушло в откаты? :)


Хмм, на самом деле - а чего я ждал? Странно, если бы работал.

(Leave a comment)

December 10th, 2009
05:35 pm

[Link]

Подробности трагедии в «Хромой лошади» из уст очевидца

Шок! Подробности трагедии в «Хромой лошади» из первых уст!

А бывший сотрудник ФСБ обвиняет в трагедии путина.

(Leave a comment)

December 9th, 2009
10:02 am

[Link]

Актуальный логотип правящей партии

(Leave a comment)

December 1st, 2009
10:29 am

[Link]

Как нам реорганизовать жесткий диск

Сколько-то лет назад была, по-моему, только одна программа – PartitionMagic. Она и сейчас есть, но появились альтернативы. Я одно время пользовался Acronis Disk Director. Кроме того есть:

(Leave a comment)

November 13th, 2009
01:56 pm

[Link]

Office 10 on Skydrive

Misha Birman from MSN have showed me today amazing Skydrive feature – now you can edit Word, Excel, PowerPoint and OneNote documents directly in browser. Same way like Office 2010 web services will do. I think... I tried to make a screenshot – but “We can't show you that page. Our server is having a problem.”… So try by yourself – go to Skydrive, My Documents, switch to “edit” feature, then use New menu to create document.

Hmm, maybe we will get Access there one day???

(Leave a comment)

October 29th, 2009
04:10 pm

[Link]

How to relink Access tables faster

When you run relink procedure at application startup, and backend file is located on the network – the process can be much slower then relinking local file, even with very fast network. The trick is to open backend file before relink process and close it after. Sample code:

Dim dbData  As DAO.Database
Set dbData = DBEngine.OpenDatabase(strFileName)
'Relink proc follows
...
 
dbData.Close
Set dbData = Nothing

(Leave a comment)

01:43 pm

[Link]

Access 2010 in action

Check out this great video - Access 2010 and Outlook style calendar running in a browser by Albert D. Kallal, Access MVP. Application was developed in Access and running in web browser using SharePoint Access services. Well done, Albert!

(Leave a comment)

October 8th, 2009
08:52 am

[Link]

Управление компьютером по Твиттеру

Twitter набирает популярность. Теперь с помощью программы TweetMyPC можно управлять компьютером дистанционно. Шлете команду, он вам отвечает, можно его перегрузить, посмотреть использование памяти, убить процесс, и т.д.

(Leave a comment)

October 1st, 2009
06:37 pm

[Link]

MVP 2009 x 2

Только что получил очередную награду - Microsoft MVP 2009. Ура! Правда Microsoft MVP 2009 я уже был год назад, похоже поменяли принцип нумерации. Но сути это не меняет, I FEEL GREAT!

(Leave a comment)

06:32 pm

[Link]

MVP 2009

Just got my MVP award:

Congratulations! We are pleased to present you with the 2009 Microsoft® MVP Award

This is my 12th year on MVP, first was in 1998. I feel great!

(Leave a comment)

September 29th, 2009
09:17 pm

[Link]

Хороша ли служба поддержки в Microsoft?

Сегодня покупатель нашего решения написал: «Yes, thank you very kindly /…/ Saves me hours of coding and your customer service is even better than Microsoft». А был ли у кого опыт обращения в службу поддержки Microsoft по поводу установки новой программы и насколько быстро и эффективно она сработала? Интересно было бы сравнить. Я пока только обращался по поводу получения хотфикса.

(Leave a comment)

August 31st, 2009
11:48 pm

[Link]

How to get rid of ADMIN - 00 tables in database

If you are running pass-through queries in your database – you can suddenly get a lot of ADMIN – 00, ADMIN – 01, etc. tables. Office Online article Create tables from the results of a pass-through query (MDB) explains why this happens:

Some pass-through queries can return messages in addition to data. If you set the query's LogMessages property to Yes, Access creates a table that contains any returned messages. The table name is the user name concatenated with a hyphen (-) and a sequential number starting at 00. For example, the default user name is ADMIN so the tables returned would be named "ADMIN - 00," "ADMIN - 01," and so on.

Even you set LogMessages property to No – you can get such messages. For example - in one application I am continuously getting message like:

01003 - 8153 - [Microsoft][ODBC SQL Server Driver][SQL Server]Warning: Null value is eliminated by an aggregate or other SET operation.

To get rid of it – you have to find query, which produce this message and fix it. In my case it was a query with SQL:

Select ProductID, Sum(Qty) as Shipped from tblOrder

Qty field had some null values and is was a source of this message. So I fixed it like this:

Select ProductID, Sum(Qty) as Shipped from tblOrder where not Qty is null

(Leave a comment)

May 14th, 2009
12:09 pm

[Link]

Office 2010

Here the movie. No control or no Ctrl+Alt+Delete?

(Leave a comment)

April 17th, 2009
03:44 pm

[Link]

Access will export reports to Excel … again!

Service Pack 2 for the 2007 Microsoft Office System will bring back export to Excel feature for Access reports, finally! Thanks to Bob Larson, Access MVP, who pointed me to this link! Check out other SP2 improvements.

(Leave a comment)

February 26th, 2009
09:00 pm

[Link]

Quote from Duane

Grandchildren are the reward for not killing your children when they were teenagers

(Leave a comment)

08:59 pm

[Link]

Бритва в мобильном телефоне?

А кофе машина? Возможно ли это? Смотрите

:)

(Leave a comment)

February 19th, 2009
05:17 pm

[Link]

SQL Formatter

A nice tool SQL and PL/SQL Formatter (actually a web page) to format SQL language (Access, T-SQL, etc) to a number of useful formats – html, VBA, XML, whatever you can imagine. Here how html output looks like for T-SQL:

SELECT tblBill.BillID,
       --tblBill.BillNum,
       tblBill.BillDate
FROM   tblBill
WHERE  Datediff(d,tblBill.BillDate,Getdate()) > @intDays

(Leave a comment)

[<< Previous 20 entries]

My Website Powered by LiveJournal.com

Advertisement

Customize