CodeGuru Forums -
CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic Newsletters VB Forums Developer.com


Newest CodeGuru.com Articles:

  • Installing SQL Server 2008
  • Writing UDFs for Firebird Embedded SQL Server
  • [Updated] Shutdown Manager
  • Building Windows Azure Cloud Service Applications with Azure Storage and the Azure SDK

  • Search CodeGuru:
     



    Go Back   CodeGuru Forums > Visual Basic Programming > Visual Basic 6.0 Programming
    FAQ Members List Calendar Search Today's Posts Mark Forums Read

    Visual Basic 6.0 Programming Ask questions about VB 6.0 (or earlier versions) or help others by answering their question.

    Reply
     
    Thread Tools Search this Thread Rate Thread Display Modes
      #1    
    Old November 4th, 2009, 07:29 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    [RESOLVED] Changing Font of Excel Cell value Using vb code

    can anybody tell me .How should i change the font of the Particular Cell Value.Kindly let me know
    the idea.Any help would be highly appreciated.i simple want ExlSheet.Cells(2, 1).Value should be
    in Bold.But all the text comming in Regular Format.Kindly let me know the idea.
    Code:
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
    '  Set excl = CreateObject(Excel.Application)
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
    
    
    
            Set excl = Nothing
    End Sub
    Reply With Quote
      #2    
    Old November 4th, 2009, 07:46 AM
    HanneSThEGreaT's Avatar
    HanneSThEGreaT HanneSThEGreaT is offline
    The Moody Mod
    Power Poster
     
    Join Date: Jul 2001
    Location: Vereeniging, South Africa
    Posts: 7,685
    HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)
    Re: Changing Font of Excel Cell value Using vb code

    Simple :

    Code:
    Option Explicit
    
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
    '  Set excl = CreateObject(Excel.Application)
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
    
    ExlSheet.Range("A2").Font.Bold = True 'Only Cell A2 Bold
    ExlSheet.Range("A3:A5").Font.Italic = True 'A3 To A5 Italics
    ExlSheet.Range("A6, A2").Font.Underline = True 'A2 and A6 Underline 
           Set excl = Nothing
    End Sub
    Note, I just added the Italics and Underline options as well, so that you can see how they also work
    __________________
    My Latest Articles :
    VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005
    Find All My Articles : Here

    FAQs :
    .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs

    Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1

    Read This Before You Post || Acceptable Use Policy

    Last edited by HanneSThEGreaT; November 4th, 2009 at 07:49 AM.
    Reply With Quote
      #3    
    Old November 5th, 2009, 03:23 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    Question Re: Changing Font of Excel Cell value Using vb code

    Can you tell me .How should i insert the the logo means *.jpeg/Gif file in excelsheet.Here is the
    Following Code .What i have written.Kindly let me know the idea.
    Code:
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
    '  Set excl = CreateObject(Excel.Application)
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
             ExlSheet.Range("A1:A2").Font.Bold = True
           
              Set ExlSheet = Nothing
             Set wBook = Nothing
            Set excl = Nothing
    End Sub
    Reply With Quote
      #4    
    Old November 5th, 2009, 03:52 AM
    HanneSThEGreaT's Avatar
    HanneSThEGreaT HanneSThEGreaT is offline
    The Moody Mod
    Power Poster
     
    Join Date: Jul 2001
    Location: Vereeniging, South Africa
    Posts: 7,685
    HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)
    Re: Changing Font of Excel Cell value Using vb code

    You could use :
    Code:
    ActiveSheet.Pictures.Insert(FileName)
    To get more complicated, you could even resize the picture, as shown here :

    Code:
    Option Explicit
    
    Sub AddPicture(FileName As String, Target As Range)
    
    Dim Pic As Object, PicTop As Double, PicLeft As Double, PicWidth As Double, PicHeight As Double
       
       'Determine If We Are On A WorkSheet
        If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
        
       'If Picture Source Doesn't Exist
        If Dir(FileName) = "" Then Exit Sub
        
        'Get Picture
        Set Pic = ActiveSheet.Pictures.Insert(FileName)
        
        ' Get Positions
        With Target
            PicTop = .Top
            PicLeft = .Left
            PicWidth = .Offset(0, .Columns.Count).Left - .Left
            PicHeight = .Offset(.Rows.Count, 0).Top - .Top
        End With
        
        ' Place Picture
        With Pic
            .Top = PicTop
            .Left = PicLeft
            .Width = PicWidth
            .Height = PicHeight
        End With
        
        'Release Memory
        Set Pic = Nothing
    End Sub
    
    Sub PlaceMyPicture()
    'Get Picture And Place It In B5:B10
        AddPicture "C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg", _
        Range("B5:D10")
    End Sub
    
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
    
    ExlSheet.Range("A1:A2").Font.Bold = True 'Only Cell A1 & Cell A2 Bold
    
    
    PlaceMyPicture
     
     Set ExlSheet = Nothing
     Set wBook = Nothing
     Set excl = Nothing
    End Sub
    __________________
    My Latest Articles :
    VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005
    Find All My Articles : Here

    FAQs :
    .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs

    Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1

    Read This Before You Post || Acceptable Use Policy
    Reply With Quote
      #5    
    Old November 5th, 2009, 04:19 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    Question Re: Changing Font of Excel Cell value Using vb code

    Still Not Working .i am getting errror Insert Method of Pictures Class is failed .Kindly let me know
    the idea.Any help would be highly appreciated.here is the following Code .What i have written.
    Code:
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
    '  Set excl = CreateObject(Excel.Application)
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
             ExlSheet.Range("A1:A2").Font.Bold = True
             ExlSheet.Range("A1:A2").Font.Italic = True
             ExlSheet.Range("A1:A5").Font.Underline = True
             ActiveSheet.Pictures.Insert (App.path & "FirmSignation.jpg")
           
              Set ExlSheet = Nothing
             Set wBook = Nothing
            Set excl = Nothing
    End Sub
    Reply With Quote
      #6    
    Old November 5th, 2009, 04:49 AM
    HanneSThEGreaT's Avatar
    HanneSThEGreaT HanneSThEGreaT is offline
    The Moody Mod
    Power Poster
     
    Join Date: Jul 2001
    Location: Vereeniging, South Africa
    Posts: 7,685
    HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)
    Re: Changing Font of Excel Cell value Using vb code

    Mine Works....
    Attached Files
    File Type: zip InsertPictureInExcel.zip (2.1 KB, 8 views)
    __________________
    My Latest Articles :
    VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005
    Find All My Articles : Here

    FAQs :
    .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs

    Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1

    Read This Before You Post || Acceptable Use Policy
    Reply With Quote
      #7    
    Old November 7th, 2009, 03:52 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    Question Re: Changing Font of Excel Cell value Using vb code

    But i am getting Type Mismatch Error .Here is the following Code what i have written.Kindly let me
    Know the idea.
    Code:
    Public Sub PlacePicture()
    AddPicture App.path & "\FirmSignation.jpg", _
        Range("B5:D10")
    
    End Sub
    
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
    
    ExlSheet.Range("A1:A2").Font.Bold = True 'Only Cell A1 & Cell A2 Bold
    
    
    PlaceMyPicture
     
     Set ExlSheet = Nothing
     Set wBook = Nothing
     Set excl = Nothing
    End Sub
    
    Sub AddPicture(FileName As String, Target As Range)
    
    Dim Pic As Object, PicTop As Double, PicLeft As Double, PicWidth As Double, PicHeight As Double
       
       'Determine If We Are On A WorkSheet
        If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
        
       'If Picture Source Doesn't Exist
        If Dir(FileName) = "" Then Exit Sub
        
        'Get Picture
        Set Pic = ActiveSheet.Pictures.Insert(FileName)
        
        ' Get Positions
        With Target
            PicTop = .Top
            PicLeft = .Left
            PicWidth = .Offset(0, .Columns.Count).Left - .Left
            PicHeight = .Offset(.Rows.Count, 0).Top - .Top
        End With
        
        ' Place Picture
        With Pic
            .Top = PicTop
            .Left = PicLeft
            .Width = PicWidth
            .Height = PicHeight
        End With
        
        'Release Memory
        Set Pic = Nothing
    End Sub
    error genertation at this Following Line.
    Code:
    Public Sub PlacePicture()
    AddPicture App.path & "\FirmSignation.jpg", _
        Range("B5:D10")
    
    End Sub
    Reply With Quote
      #8    
    Old November 7th, 2009, 04:50 AM
    HanneSThEGreaT's Avatar
    HanneSThEGreaT HanneSThEGreaT is offline
    The Moody Mod
    Power Poster
     
    Join Date: Jul 2001
    Location: Vereeniging, South Africa
    Posts: 7,685
    HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)
    Re: Changing Font of Excel Cell value Using vb code

    What version of Excel are you using ¿
    __________________
    My Latest Articles :
    VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005
    Find All My Articles : Here

    FAQs :
    .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs

    Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1

    Read This Before You Post || Acceptable Use Policy
    Reply With Quote
      #9    
    Old November 7th, 2009, 04:56 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    Question Re: Changing Font of Excel Cell value Using vb code

    i am Using Excel 2003.Kindly let me know the idea.
    Reply With Quote
      #10    
    Old November 7th, 2009, 05:15 AM
    HanneSThEGreaT's Avatar
    HanneSThEGreaT HanneSThEGreaT is offline
    The Moody Mod
    Power Poster
     
    Join Date: Jul 2001
    Location: Vereeniging, South Africa
    Posts: 7,685
    HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)HanneSThEGreaT has a reputation beyond repute (3000+)
    Re: Changing Font of Excel Cell value Using vb code

    Then, honestly, frankly, I am clueless as to what your problem is

    My version works in Excel 2003.

    Suggestion :

    Add your VB Project here, in Zip Format, and add your picture here as well.

    We could then have a look and possibly suggest further.
    __________________
    My Latest Articles :
    VB and Internet Explorer Browsing History || The TaskBar and VB.NET || Changing Mouse Settings with VB.NET || Creating Your Own Encryption / Decryption Program Using VB.NET 2005
    Find All My Articles : Here

    FAQs :
    .NET FrameWork FAQs || Visual Basic.NET FAQs || C# FAQs

    Be The Change That You Want To See In The World - Michael Scofield, Prison Break; Season 1 Episode 1

    Read This Before You Post || Acceptable Use Policy
    Reply With Quote
      #11    
    Old November 7th, 2009, 06:12 AM
    firoz.raj firoz.raj is offline
    Member
     
    Join Date: Dec 2008
    Location: Saudi Arabia
    Posts: 190
    firoz.raj is an unknown quantity at this point (<10)
    Question Re: Changing Font of Excel Cell value Using vb code

    Thank You very much .Now it is Working .here is the following code what i have written.
    Code:
    Private Sub btPrint_Click()
    Dim excl As Excel.Application
    Dim wBook As Excel.Workbook
    Dim ExlSheet As Excel.Worksheet
    Dim m_SCompanyName As String
     m_SCompanyName = "AL ARABI FACTORY FOR STEEL WORKS      "
                    
    
      Set excl = New Excel.Application
    '  Set excl = CreateObject(Excel.Application)
      Set wBook = excl.Workbooks.Add
      Set ExlSheet = wBook.Worksheets(1)
             excl.Visible = True
             ExlSheet.Cells(2, 1).Value = m_SCompanyName
             ExlSheet.Cells(3, 1).Value = "P.O. BOX 14044 DAMMAM 31424  "
             ExlSheet.Cells(4, 1).Value = "KINGDOM OF SAUDI ARABIA      "
             ExlSheet.Cells(5, 1).Value = "PHONE :  (+9663) 812-3070    "
             ExlSheet.Cells(6, 1).Value = "FAX     :   (+9663) 812-3339 "
             ExlSheet.Range("A1:A2").Font.Bold = True
             ExlSheet.Range("A1:A2").Font.Italic = True
             ExlSheet.Range("A1:A5").Font.Underline = True
            ' ActiveSheet.Pictures.Insert (App.path & "FirmSignation.jpg"), Range("B5:D10")
           '  Call PlacePicture
           wBook.SaveAs App.path & "PurchaseOrder.Xls"
          ' wBook.Close savechanges:=True
              Set ExlSheet = Nothing
              Set wBook = Nothing
           '   excl.Quit
              Set excl = Nothing
    End Sub
    Public Sub PlacePicture()
    AddPicture App.path & "\FirmSignation.jpg", _
        Range("B5:D10")
    
    End Sub
    Sub AddPicture(FileName As String, Target As Range)
    
    Dim Pic As Object, PicTop As Double, PicLeft As Double, PicWidth As Double, PicHeight As Double
       
       'Determine If We Are On A WorkSheet
        If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
        
       'If Picture Source Doesn't Exist
        If Dir(FileName) = "" Then Exit Sub
        
        'Get Picture
        Set Pic = ActiveSheet.Pictures.Insert(FileName)
        
        ' Get Positions
        With Target
            PicTop = .Top
            PicLeft = .Left
            PicWidth = .Offset(0, .Columns.Count).Left - .Left
            PicHeight = .Offset(.Rows.Count, 0).Top - .Top
        End With
        
        ' Place Picture
        With Pic
            .Top = PicTop
            .Left = PicLeft
            .Width = PicWidth
            .Height = PicHeight
        End With
        
        'Release Memory
        Set Pic = Nothing
    End Sub
    Reply With Quote
    Reply

    Bookmarks
    Go Back   CodeGuru Forums > Visual Basic Programming > Visual Basic 6.0 Programming


    Thread Tools Search this Thread
    Search this Thread:

    Advanced Search
    Display Modes Rate This Thread
    Rate This Thread:

    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is On
    HTML code is Off
    Forum Jump


    All times are GMT -5. The time now is 02:34 PM.



    Acceptable Use Policy

    internet.comMediabistrojusttechjobs.comGraphics.com

    WebMediaBrands Corporate Info


    Advertise | Newsletters | Feedback | Submit News

    Legal Notices | Licensing | Permissions | Privacy Policy


    Powered by vBulletin® Version 3.7.3
    Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
    Copyright WebMediaBrands Inc. 2002-2009