User Profile

Collapse

Profile Sidebar

Collapse
sibusiso
sibusiso
Last Activity: Jan 14 '09, 07:30 AM
Joined: Aug 13 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • sibusiso
    replied to ASP.NET C# Error
    Application Error

    HI there

    I am using MS Visual Studio I am develop a web Application using a C# language,
    where I am running the application I get this error

    Error 1 Could not write to output file 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5072 7\Tem porary ASP.NET Files\asp\433ec f6f\ee511ff2\Ap p_Code.g3xan_7a .dll' -- 'Access is denied. '

    can anyone help what might cause this error...
    See more | Go to post

    Leave a comment:


  • sibusiso
    started a topic ASP.NET C# Error

    ASP.NET C# Error

    HI there

    I am using MS Visual Studio I am develop a web Application using a C# language,
    where I am running the application I get this error

    Error 1 Could not write to output file 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5072 7\Temporary ASP.NET Files\asp\433ec f6f\ee511ff2\Ap p_Code.g3xan_7a .dll' -- 'Access is denied. '

    can anyone help what might cause this error

    Thanks
    McDonald
    See more | Go to post
    Last edited by jhardman; Dec 18 '08, 06:02 PM. Reason: posted in the wrong forum. moved to ASP.NET forum

  • sibusiso
    started a topic Refreshing JTable
    in Java

    Refreshing JTable

    HI there

    Can anyone help

    I am using netbeans and I populated a Jtable with some data, I have a search button and TextField allowing a user to search for a specific records, but know I want to know how do I then filter the JTable and display records from the results of a user search option

    In short a user has to view records of a specific date on the JTable

    Thanks
    See more | Go to post

  • sibusiso
    started a topic JFrame problem
    in Java

    JFrame problem

    HI

    Can anyone help How to Call and show a JFrame while disposing the Current JFrame
    See more | Go to post

  • sibusiso
    started a topic Passing Data From JFrame to JFrame Or to JDialog
    in Java

    Passing Data From JFrame to JFrame Or to JDialog

    HI

    Can anyone help with the scenario where where you have to pass a certain data from one JFrame to another.

    For example, suppose you have a JFrame is your main window you disabled your Jmenu and have an option of Login button and the login button calls another JDialog Class, say if Login() is true in Jdialog then enable JMenu on JFrame(Main window) exit the JDialog class.
    I am using NetBeans.

    Because...
    See more | Go to post
    Last edited by sibusiso; Nov 26 '08, 10:04 AM. Reason: Add some text

  • sibusiso
    started a topic Saving To Database(Net Beans)
    in Java

    Saving To Database(Net Beans)

    Can Anyone help on how to Post Data to the database like I need the SQL statement to insert into a table using values from the form.

    And how to save a value from a Combobox
    See more | Go to post

  • sibusiso
    started a topic Help with SQL Server

    Help with SQL Server

    HI
    Can anyone help I am having problem with SQL Server in my Computer

    I want to Use
    Microsoft OLE DB Provider fo SQL Server instead of ODBC

    Surprisingly I cant find Microsoft OLE DB Provider for SQL Server in Data link Properties

    Can anyone help on what might be the problem
    See more | Go to post

  • sibusiso
    started a topic SQL OLE DB Problems

    SQL OLE DB Problems

    HI
    Can Any one help.

    I installed MS SQL Sever 2005 but I cannot find the Microsoft OLE DB Provider in the DataLink Properties for OLE DB Providers the only options are options like ODBC,SQL Native Client that I don't want to use.

    Can anyone help on what might be the problem
    See more | Go to post

  • sibusiso
    started a topic SQL Installation

    SQL Installation

    Can Anyone help I m want to install sql server 2000, when I run the setup I get the error "Windows cannot find x86\setup\setup sql" but the 'setupsql' is there in the folder x86
    See more | Go to post

  • sibusiso
    replied to Other Language
    But if maybe Delphi can be in the Forum list, that can allow us to start asking about delphi...
    See more | Go to post

    Leave a comment:


  • sibusiso
    replied to Learning Java
    in Java
    Thanks to you opinion I think is a good I dea....
    See more | Go to post

    Leave a comment:


  • sibusiso
    started a topic Other Language

    Other Language

    HI

    Don't you think Guyz tha we need Delphi here.
    See more | Go to post

  • sibusiso
    started a topic Learning Java
    in Java

    Learning Java

    HI

    I realy want to must java but I only know few basics everytime I start an application I wil strugle with errors

    Can any one help with a good Netbeans user manual that can give steps to creating a project.
    See more | Go to post

  • sibusiso
    started a topic Update date In MS SQL

    Update date In MS SQL

    HI

    Can Any one help

    I have extra field on a table like
    FDate, FYear, FMonth, FDay, FDatename

    I have a triger that I will update this field every time transaction hapened, this field must be updated to the curent date, year, month, date name

    I wrote something like.

    CREATE TRIGGER tr_Test3
    ON dbo.TTest3
    FOR INSERT,UPDATE
    AS
    BEGIN
    SET...
    See more | Go to post

  • sibusiso
    started a topic SQL Problem

    SQL Problem

    Can any one help.

    I have a table the table have data I want to insert data from another table plus the data of some field on the very same table where I want to insert data.

    TTest1(10 field having data)
    TTest 2(5 fields having data)

    I want to Insert in TTest1 by selecting 4 fields from TTest2 the other field from TTest1 I want them to remain with the same data.

    but I am inserting...
    See more | Go to post

  • sibusiso
    replied to MS SQL Problem
    Thanx I think that Examples will help
    See more | Go to post

    Leave a comment:


  • sibusiso
    started a topic MS SQL Problem

    MS SQL Problem

    HI
    er
    Can Any one help on how do we create sequnce in ms sql, I can only do in Oracle but not in ms sql

    I want to create a sequence and use a sequence in a trigger,
    in oracle look like

    you have a trigger(before insert new.field 1 := 'FD' || LPAD(CAST(uence name.nextval),n um_field,Leadin g);

    Can any one help how to do this.
    See more | Go to post

  • sibusiso
    started a topic Problem With MS SQL

    Problem With MS SQL

    HI

    Can Any one help I am having a problem with SQL triggers.

    I am having this table

    create table TTest(
    id bigint identity(100000 01,1),
    UID varchar(10),
    Fdesplayname varchar(50),
    primary key(id,UID)
    );

    On my triger I want to say
    FOR INSERT let the trigger take id and 'UID' and put it in field UID out...
    See more | Go to post
No activity results to display
Show More
Working...