Hi, Can I Create Template columns in VB .NET Datagrid just like ASP .NET Datagrid ? If yes then plz mention the procedure else give me the alternate solution. Thanks n regards :confused: Pankaj Kulkarni
Pankaj Kulkarni
Posts
-
I want to create a Datagrid column having DropDownList control just like ASP .NET. -
use of style sheet in asp.netHi, 1. Include this tag where styles.css is your stylesheet. 2. create css classes in styles.css like for button .btn { background-color:orange; color:black; } 3. Now add attribute to the button I. if it is server control then the attribute shoul be cssclass="btn" II. if it is HTML control then the attribute should be class="btn" Follow the steps which I have given. regards ,:) Pankaj Kulkarni
-
Javascript in web user controlHi, It's really cool man. I also tried. Thanks minhpc_bk and Lex Luthor Pankaj Kulkarni
-
How to add relations with more than one primary keysHi, Will u plz explain ur question with example? Pankaj Kulkarni
-
Extra space added to a records data fieldsHi,
Jlawrnce wrote:
strSQLEditCustomer = "UPDATE Customers SET ContactFirstName = ' " & txtFName.Text & " ' , ContactLastName = ' " & txtLName.Text & " ' , BillingAddress = ' " & txtAddress.Text & " ' , City = ' " & txtCity.Text & " ' , State = ' " & CboState.Text & " ' , PostalCode = ' " & CboZip.Text & " ' , PhoneNumber= ' " & txtPhone.Text & " ' , EmailAddress = ' " & txtEmailAddress.Text & " ' WHERE CustomerID = " & SearchCustID & " "
Use "Trim" method to supress the extra space from the controls like "UPDATE Customers SET ContactFirstName = '"& Trim(txtFName.Text) &"'" This will also help you. Pankaj Kulkarni
-
Javascript in web user controlHi there,
Lex Luthor wrote:
asp:CheckBox ID="CheckBox1" runat="server" onclick="javascriptCheckBoxChecked()"
I think you have missed the colon ":" and control in above line i.e. you should write asp:CheckBox ID="CheckBox1" runat="server" onclick="javascript:CheckBoxChecked(this)" Pankaj Kulkarni
-
Is it required to install the dababase server in client system, while we are working on client-server application?Also install MDAC 2.7 on client machine. It will definatly work. Pankaj Kulkarni
-
How to Show XML File data in a HTML File?Hello I don't remember the exact code. But some guideline 1) You have to create - XMLDocument Object - XSLTransformation Object. For data presentation you must create XSLT file (assuming your Dynamic XML file's attributes are fixed) Using XSLTransform Object's Transform Method you can transform your XML data into HTML Format You have to Import 2 namespaces - System.Xml - System.Xml.Xsl Pankaj Kulkarni -- modified at 3:34 Thursday 9th February, 2006
-
Textbox in asp.net URGENTHi,
kirthikirthi wrote:
example : i entered "123456" it will prient a=123 b=456
If the number is "1234567" i.e. odd in size then what should be the criteria? Pankaj Kulkarni
-
How to apply Style Sheet to PushButton in asp:ButtonColumn in datagrid?Hi, Add the attribute (to that button tag in HTML) "cssclass='btn'" if your stylesheet has ".btn" class Pankaj Kulkarni -- modified at 2:18 Thursday 2nd February, 2006
-
Please, we really need help with this.Hi,
alexvw wrote:
can start the apps in debug mode, but it does not stop in any breakpoints.
when you will run the application, attach the Worker process i.e. aspnet_wp.exe to the "IExplorer.exe" through Debug menu. This technique will worked only at runtime not design time. It will definately work. have a cooooool day Reply, Thanx Pankaj Kulkarni
-
Must declare the variable '@TheYear'Hello
sasire18 wrote:
SELECT o.customerid, od.orderid, SUM(od.quantity*od.unitprice) AS price FROM Orders o, [Order Details] od WHERE Year(o.orderdate) = @TheYear AND od.orderid=o.orderid GROUP BY o.customerid, od.orderid ORDER BY o.customerid DECLARE @TheYear int SET @TheYear = 1998
you have to declare "@TheYear" before the query but you declared it after the query. Pankaj Kulkarni
-
Is there any help available for SPRIN .NET Framework ?Hello, Is there any help available for SPRIN .NET Framework ? Pankaj Kulkarni
-
Please, we really need help with this.Hi, Run the Command "aspnet_regiis -i" on SDK Command Prompt Pankaj Kulkarni
-
Autonumber in MS AccessHi, If you don't want Randomly Generated Number then The primary key i.e. CustomerID Datatype should be Long Integer/Double. Having "Increment" property set to 'Yes' with Increment Seed '1'. Pankaj Kulkarni -- modified at 0:50 Tuesday 31st January, 2006
-
Help me to develop a Worlflow Management software for my collegeHello Ashish, I am giving you a way of thinking. Apply Divide and Rule Policy i.e. Divide the complete ERP Into Modules. But according to College, there are Departments. So take depts as a module and take down activities of each department. Bye Pankaj Kulkarni
-
SelectedIndexChanged with data bound DropDownList[Message Deleted]
-
Developing IDEhi James, Thanx for the Steps you have suggested. Pankaj Kulkarni
-
Developing IDEHello All, I want to develop an IDE like Visual Studio IDE. My development Environment is Visual Studio .NET 2005. Language may get differ as per the requirement i.e VB or C# What will be the steps ? What things I have to consider at the time of Development? How should I start ? Thanx for the help Pankaj Kulkarni
-
Not Able to connect to Sql server(urgent)Hi Pankaj, This problem may occur, 1) if u will register your computer to another workgroup or Domain. 2) Your Server Name will get changed 3) Your Network cable may get disconnected. 4) You don't have rights to access that Server. regards, Pankaj Kulkarni