BÖTEBOnline v2.0 Beta Yayında
|
|
Sevgili Prof.Dr. M.Yaşar ÖZDEN'in hazırlayıp sunduğu ODTÜ'nün ilk video portalı olan BÖTEBOnline, yeni arayüzüyle demo yayına bugün başladı. Adres: http://ideas.ceit.metu.edu.tr/botebonline_vs2005/
İçerisinde ODTÜ tanıtım video'ları, NTV test canlı yayını ve Video destekli birçok eğitim içeriği bulunan portalın günlük hit'i 10.000 'i buluyor.
Yeni arayüzü sayesinde, portal farklı dillerde yayına olacak sağlayacak esnekliğe sahip olmuştur. Ayrıca, kullanıcılarında portal içeriği hakkında yorumlarını paylaşmalarına olanak verecek yorumlar modülü sistemdeki ziyaretçilerin etkileşimini arttırmayı amaçlamaktadır.
Hepinize tavsiye ederim... |
Pazar, Mart 26, 2006 @ 20:26 |
0 yorum var |
|
Nedir?TV Bugün İtibariyle Yayına Girmiş Bulunmakta
|
|
Sevgili arkadaşım Uğur UMUTLUOĞLU'nun uykusuz geceler pahasına yılmadan hazırladığı yeni .NET Video Portalı Nedir?TV (http://www.nedirtv.com/) yayına girmiş bulunmakta.
Portal, tamamen video tabanlı olup içerikler Microsoft .NET teknolojileri alanında başarılı ve bilgi paylaşımına önem veren teknik bir ekip tarafından sağlanacaktır.
Başarılı olacağından hiç süphe duymadığım bu portalı bir ziyaret etmenizi tavsiye ederim. Hatta .NET platformundaki herhangibir konuda iyi olduğunuzu düşünüyor, kendinize güveniyor ve "bilgi paylaştıkça ve izledikçe büyür" diyorsanız bu portalda editör olmanızı tavsiye ediyorum.
Uğur'u burdan tekrar tebrik ediyorum azminden ve kararlılığından ötürü... Başarılı olman dileğiyle... |
|
VBA Code for Listing Document Comments in Microsoft Word
|
|
Blow code is a VBA macro for listing comments placed in a document. Insert below code as a macro in MS Word and then run it when your document is opened.
Code will find all the comments in your document and list them in a new document with their page number.
Code:
Sub ListCommentsWithPageNumbers() ' ' ListCommentsWithPageNumbers Macro ' Macro created 20.03.2006 by Muhammet TURŞAK '
Dim count As Integer count = ActiveDocument.Comments.count Dim str As String str ="" str = str & "=================================" & vbCrLf str = str & "DOCUMENT COMMENT LIST" & vbCrLf str = str & "-----------------------------------------------" & vbCrLf str = str & "File Path : " & ActiveDocument.Path & vbCrLf str = str & "List Date : " & Now & vbCrLf str = str & "Username : " & Application.UserName & vbCrLf str = str & "===================================" & vbCrLf & vbCrLf & vbCrLf
For i = 1 To count Dim pageNo As Integer pageNo = ActiveDocument.Comments(i).Reference.Information(wdActiveEndAdjustedPageNumber) str = str & ActiveDocument.Comments.Item(i).range.Text & vbCrLf str = str & "Page : " & pageNo & vbCrLf str = str & "______________________________ " & vbCrLf & vbCrLf Next Dim d As Document Set d = Application.Documents.Add() d.range.Font.Name = "Arial" d.range.Font.Size = 10 d.range.Text = ActiveDocument.range.Text & str
End Sub
|
Çarşamba, Mart 22, 2006 @ 13:26 |
0 yorum var |
|
Microsoft Word'de belge içerisindeki yorumların listelenmesi
|
|
Aşağıdaki kodu Macro olarak word'e ekleyin ve çalıştırın. Kod, dökümanınızdaki tüm yorumları bulup sayfa numaraları ile birlikte yeni bir dökümanda listeleyecektir.
Kod:
Sub ListCommentsWithPageNumbers() ' ' ListCommentsWithPageNumbers Macro ' Macro created 20.03.2006 by Muhammet TURŞAK ' Dim count As Integer count = ActiveDocument.Comments.count Dim str As String str ="" str = str & "=================================" & vbCrLf str = str & "BELGE YORUM LİSTESİ" & vbCrLf str = str & "-----------------------------------------------" & vbCrLf str = str & "Dosya : " & ActiveDocument.Path & vbCrLf str = str & "Listeleme Tarihi : " & Now & vbCrLf str = str & "Kullanıcı : " & Application.UserName & vbCrLf str = str & "===================================" & vbCrLf & vbCrLf & vbCrLf For i = 1 To count Dim pageNo As Integer pageNo = ActiveDocument.Comments(i).Reference.Information(wdActiveEndAdjustedPageNumber) str = str & ActiveDocument.Comments.Item(i).range.Text & vbCrLf str = str & "Sayfa : " & pageNo & vbCrLf str = str & "______________________________ " & vbCrLf & vbCrLf Next Dim d As Document Set d = Application.Documents.Add() d.range.Font.Name = "Arial" d.range.Font.Size = 10 d.range.Text = ActiveDocument.range.Text & str End Sub
|
|
During Team Foundation Server Setup I get one of the following errors: 26201, 26204 or 26205. What's wrong?
|
|
26201, 26204, 26205 are all SQL-related failures. Verify the following:
Connectivity - Verify the Database Tier computer can be accessed from the Application Tier computer.
Common Domain - Both Database Tier and Application Tier computers need to be in the same Windows domain (not workgroup).
Application Pool Identity - The Application Pool Identity must be a Windows domain account.
Setup Account - The Windows domain account that is used to run Team Foundation Server setup on the Application Tier computer is an Administrator on the Database Tier computer.
Clean Database Tier - If you previously ran the Team Foundation Server setup, you must remove the databases added by setup and delete the Work Item Attachments share (WorkItemAttachments) and folder (C:\VSTS\WorkItemTracking\Attachments) on the Database Tier computer. Even if setup does a rollback, it does not clean-up the Database Tier computer.
SQL Server Running - Verify SQL Server restarted after completing SQL Server installation.
Applicability: Visual Studio 2005 Beta 1 Refresh with Visual Studio 2005 Team System; Visual Studio 2005 Team System December 2004 CTP Published Friday, September 03, 2004 1:01 PM by AskBurton Filed Under: Team System FAQ
NOTE: I have also face this problem because of the Server Collation difference. I have installed SQL Server 2005 DB with Default Server Collation as Turkish_CI_AS. Since in Turkish alphabeth, small "i" turns to "İ" instead of "I" when it converted to upper case, "i" and "I" are not same. For this difference, some sql scripts cannot find target tables or other sql objects.
To solve this problem, reinstall the SQL Server with Latin1_General_CI_AS Collation... |
|
|
|