www.tursoft.net
tursoft@tursoft.net
Atom v1.0My Yahoo! hesabına ekleMy MSN hesabına ekle
Uğur Umutluoğlu
GEZEGENIEEE
Bilen YAVUZ
Evleniyoruz...
Yazılım dünyasının yeni soluğu: turkaspx.net
Nedir?TV.com'dan bir ilk daha...
Google Codesearch
Tursoft Analytics Presenter Görücüye Çıktı
Visual Studio 2005 Typed Dataset'lerde Parametrik ...
Typed Dataset Parameterized Query Error
Internet Explorer'ın Sinir Bozucu "You are not aut...
Filistin ve Lübnan için Tek Yürek!
IEEE ODTÜ Dünyayı Aştı!
Mayıs 2005
Haziran 2005
Temmuz 2005
Ağustos 2005
Kasım 2005
Aralık 2005
Mart 2006
Nisan 2006
Ağustos 2006
Eylül 2006
Ekim 2006
Mayıs 2007
Kasım 2007
Eylül 2009
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...
20:12 0 yorum var
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


13:12 0 yorum var
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:



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...
11:32 0 yorum var
Copyright (c) 2006 Muhammet TURŞAK - Tüm hakları saklıdır.