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 strongm 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: *

  1. saadabc

    Visual Studio .NET has detected .. not running ASP .NET 1.1

    I've installed Visual Studio .NET 2003 on my work computer. The computer is running Windows XP Professional and IIS 5 . I installed it 2 days ago. Initially, I was able to start a VB .NET ASP .NET project. I developed some .aspx pages and tested the pages on the webserver. They worked fine...
  2. saadabc

    Getting insufficient security privileges when logged in as Administrat

    I already fixed the problems that AVG AntiSpyware gave me, then forgot to save the report. So, now it just gives me a clean report as follows: --------------------------------------------------------- AVG Anti-Spyware - Scan Report --------------------------------------------------------- +...
  3. saadabc

    Getting insufficient security privileges when logged in as Administrat

    My 3 log files are copied below: HijackThis, PandaActiveScan and AVG AntiSpyware respectively. Logfile of HijackThis v1.99.1 Scan saved at 6:01:18 PM, on 11/19/2006 Platform: Windows 2000 SP4 (WinNT 5.00.2195) MSIE: Internet Explorer v6.00 SP1 (6.00.2800.1106) Running processes...
  4. saadabc

    Getting insufficient security privileges when logged in as Administrat

    I am trying to update my video driver from the Windows Update site - and I get this message when i try to install the file. " You do not have sufficient security privileges to install hardware on this computer. Please contact your site Administrator, or logout and log in again as an...
  5. saadabc

    UNIX - create a system user

    How do I create a system user in UNIX. is it done using the useradd command. how do I specify that it is to be a system account.
  6. saadabc

    Compare two images in Java

    Thanks - this works!!! One more question. Do you know where in the data buffer for the image is the information for the background color of the image stored.
  7. saadabc

    Compare two images in Java

    How do I initialize BufferedImage from a pre-existing image saved on the computer hardrive. e.g, C:\test.jpg . There doesn't seem to be a filename or path parameter in any of the constructors, or other methods. Thanks. Waseem
  8. saadabc

    Compare two images in Java

    Hi, I'm trying to compare 2 images to see if they are the exact same or not .... I'm assuming I would have to compare the bytes representation of the 2 images. I cannot find any methods in the Image, BufferedImage etc classes to get the bytes of the image. Can anyone help? Thanks-in-advance.
  9. saadabc

    Writing to a specific line in a file

    Thanks. I've ended up reading everything from the file into an array, adding the changes for the file into the array, and then writing everything from the array into the file. I make sure that when I write the first line, I'm overwriting the content of the file - and then appending the content...
  10. saadabc

    Writing to a specific line in a file

    Is it possible in Java to write to a specific line in a file. I've been using the FileOutputStream object to write to files.... but i don't know how i can write to, say, the 20th line in a file using this. Waseem
  11. saadabc

    query question

    I have a table in sql server as follows: table ----- c_id unique_id text issue_type ---- --------- ---- ------ 4 1 service changed ... servicechange 4 2 validation for service change validation 5...
  12. saadabc

    SaveFileDialog breaking up

    sfdRMSecurity is declared by Form Designer in the Windows Form Designer declaration area. It is then initialized in the InitializeComponent() routine. when i run the code in the development environment hitting F5... the dialog box appears... but then i run on a test machine - and it gives me...
  13. saadabc

    accessing crystal report parameter

    i have a crystal report that is running off a SQL Server stored procedure. The stored procedure takes 3 parameters. when i add the stored procedure in the crystal report - the parameters automatically appear in the report (under Parameter fields) .... as @database @fromdate @todate now...
  14. saadabc

    SaveFileDialog breaking up

    Hi - I have the following code to get a FileDialog box... the code is working in the development environment but when i build the solution and install it on another machine - it gives an error at the line If .ShowDialog = DialogResult.OK Then The error says 'Object reference not set to an...
  15. saadabc

    xquery

    I don't know if i should post an xquery related question here .... let's say my xml document is called abc.xml and looks like this: <root> <parent> <childA>stuff</childA> <childB>stuff</childB> <childC>stuff</childC> </parent> <parent> <childA>stuff 2</childA>...
  16. saadabc

    replacing xth character on each line in text file

    i got it. used Dim instr as streamreader Dim infile as file instr = infile.readtext("c:\infile.txt") Dim ostr as streamwriter Dim outfile as file ostr = outfile.createtext("c:\outfile.txt") Dim line as string = "" while ostr.peek <> -1 line = instr.readline ..... 'code to replace...
  17. saadabc

    replacing xth character on each line in text file

    I want to open a text file using VB .NET and replace the 20th character on each line with 0. how can i do this?
  18. saadabc

    Last Modified Date of Stored Procedure

    jbenson's USE <data base> Select * from sysobjects Where xtype = 'FN' works. however, i need to get the routine_definition from syscomments. how do i do the join with syscomments....
  19. saadabc

    Last Modified Date of Stored Procedure

    Hi Information_schema.Routines has worked for me as far as getting information about stored procedures - now how do i get the same information for User-Defined Functions....
  20. saadabc

    Size of a Tooltip control

    is it possible to control the size of a System.Windows.Forms.ToolTip object .... I want the text in the tooltip box to wrap up - otherwise it is getting too wide - it is filling up the entire screen ....

Part and Inventory Search

Back
Top