Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: JonathanC
  • Content: Threads
  • Order by date
  1. JonathanC

    How to save a Posted File to Text, Ntext in SQL?

    I have a problem with saving a posted file to the database as a text column. I know that array of bytes easily can be saved to an image field to the sql by using the sql parameter with type images. I tried this to a text file by just changing it to text and gives me an error... Public Sub...
  2. JonathanC

    "<INPUT TYPE=FILE>" How to assign a default file extension?

    When you use <INPUT TYPE=FILE> and open the FileOpen Dialoge Box through clicking Browse... how would you programatically set the default file type (eg. *.avi instead of All Documents)?
  3. JonathanC

    How to create a Pegasus using VB.Net

    Can VB.Net create a Pegasus based on a Bird and a Horse? Is multiple Inheritance a .Net Limitation?
  4. JonathanC

    Installing Queue Server in two Domain Controllers on Same Domain.

    Is it possible to install MSMQ 2.0 on the a new domain controller when a MSMQ server is already installed on another domain controller in the same domain? I ask because I am having a problem installing MSMQ on the the new domain controller. It has an error 0xC00E0013. Unable to establish...
  5. JonathanC

    Identifying Columns with highest value

    How would you identify the column with the highest value in a table? I have this table description matrix(name,vala,valb,valc,vald,vale,valf,valg,highestval) i need to somehow assign to highestval which among the columns has the highestvalue, like assigning 'A' if vala has the highest value.
  6. JonathanC

    xp_SendMail Error

    declare @file nvarchar(300) set @filename = ' \\'+@@servername+'\bi\acctTest\BofaPPay\' + convert(varchar(20), getdate(),12)+ substring(convert(varchar(10),getdate(),8),1,2) + substring(convert(varchar(10),getdate(),8),4,2) + substring(convert(varchar(10),getdate(),8),7,2) + '.txt' set...
  7. JonathanC

    Converting Temp Table to Flatfile inside stored proc

    How would I convert a temp table #tbl to a flatfile flatfile.txt on server MyServer at directory MyDirectory while inside a stored procedure? Thanks for help!
  8. JonathanC

    Setting Browser Properties Programmatically

    Is there a way for me to control the browser properties... I have some specific requirements: a)Set/Remove Page Headers/Footers on the File...Page Setup Menu b)Enable/Disable Background on the Tools...Internet Options Menu... How can I accomplish it? I have a book on javascript but it...
  9. JonathanC

    Setting Internet Options Programatically

    Is there a way for me to control the browser properties... I have some specific requirements: a)Set/Remove Page Headers/Footers on the File...Page Setup Menu b)Enable/Disable Background on the Tools...Internet Options Menu... How can I accomplish it? I have a book on vbscript but it didn't...
  10. JonathanC

    Problem Printing Black BackGround and White Fonts on Table Rows

    I have the following scenario.. I need to somehow print a document using HTML... The document has rows that have black backgrounds and white fonts... when I printed them out... it shows white background and grayish font... how can i fix this?
  11. JonathanC

    Role and Object Level Permissions

    Does a Role override object Level Permission? If I issue a db_denywriter and db_denyreader on on a user but also gave object level permission to a user to SELECT particular table on the database, who overrides who? I bet the the db_denywriter and db_denyreader overrides the object level...
  12. JonathanC

    Public, Db_denyreader,db_denyDataReader Permissions

    I have the following scenario: Co.A maintains a database dbA and he wants Co.B to have Select permissions on a view vwForB. Co.B is not allowed to see the structure of tables,stored procedures, views and other objects on dbA. I assigned db_denywriter,db_denyreader on Co.B and have assigned...

Part and Inventory Search

Back
Top