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: saadabc
  • Content: Threads
  • Order by date
  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 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...
  3. 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.
  4. 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.
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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>...
  10. 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?
  11. 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 ....
  12. saadabc

    Print Scrollable form in .NET

    Hi I'm using the following code to print the contents of a form in a Visual Basic .NET application. Public SRCCOPY As Integer = &HCC0020 ' BitBlt dwRop parameter <DllImport("gdi32.dll")> _ Public Shared Function BitBlt(ByVal hObject As IntPtr, ByVal nXDest As Integer, ByVal...
  13. saadabc

    Priority Property when creating Task Item in Exchange mailbox in WebDa

    Does anyone know how to set the Priority Property for a Task when creating a New Task in Exchange mailbox using WebDav. Like what the hexadecimal code for that is. Here's the code that I'm using - and so far here're the codes that I've found. strXMLNSInfo = "xmlns:d=""DAV:"" " & _...
  14. saadabc

    Problem with Creating Task Item in Exchange mailbox using WebDAV .NET

    Hi - I'm using WebDAV to try and create a Task Item in an Exchange Mailbox when I run this code: Imports System.Net Dim strExchSvrName As String Dim strMailbox As String Dim strTaskUri As String Dim strTaskItem As String Dim strDomain As String Dim...
  15. saadabc

    Last Modified Date of Stored Procedure

    Is there a way in SQL Server to get the Last Modified Date for a stored procedure through query?
  16. saadabc

    Error when creating Task Item in Exchange Mailbox

    Hi - I'm using WebDAV to try and create a Task Item in an Exchange Mailbox - when I run this code: Dim strExchSvrName As String Dim strMailbox As String Dim strTaskUri As String Dim strTaskItem As String Dim strDomain As String Dim strUserName As String...
  17. saadabc

    Problem reading burnt cds with hl-dt-st rw gcc-4241N CDR-DVD combo

    hi, I have a hl-dt-st rw gcc-4241N CD-WRiter\DVD-ROM combo with my HP Pavilion ze4400 laptop . only since recently - I cannot read cd's that I've burned from this writer - or a different writer. It reads original cd's such as AOL etc. When I put in a burned cd (with like data and stuff) -...
  18. saadabc

    Help with Wierd Query

    Hi, I have a database table as follows: Product Date Price ------- ---- ----- productA 07/05/05 100 productB 07/08/05 54 productB 07/10/05 51 productA 07/14/05 97 productB 07/16/05 49 productA 07/19/05 97...
  19. saadabc

    Help with wierd query

    Hi, I have a database table as follows: Product Date Price ------- ---- ----- productA 07/05/05 100 productB 07/08/05 54 productB 07/10/05 51 productA 07/14/05 97 productB 07/16/05 49 productA 07/19/05 97...
  20. saadabc

    LogonUser failing in Impersonation

    I have a VB .net application. Have a module that contains the following code: Imports System.Web Imports System.Security.Principal Imports System.Data.SqlClient Module ImpersonateAdminLogin Dim LOGON32_LOGON_INTERACTIVE As Integer = 2 Dim LOGON32_PROVIDER_DEFAULT As Integer...

Part and Inventory Search

Back
Top