Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

Tushar Kothari

@Tushar Kothari
About
Posts
21
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • About maximizing the forms into the task bar.
    T Tushar Kothari

    Hi If you are using the borderstype = none means VB disable the maximised and minimised property so you have to make it enable

    Tushar kothari

    Visual Basic csharp tutorial

  • crystal reports 8.5 continues
    T Tushar Kothari

    Hi If you remove the line .ActiveConnection = Nothing then you problem may get solved

    Tushar kothari

    Visual Basic database help

  • Making a Setup.exe installer for my project..
    T Tushar Kothari

    Hi You have to add the project output in the Application folder. Then if you want to set some shortcuts then you can use user desktop folder or user program menu folder If you want any other help with installation please wrtie . Regards :)

    Tushar kothari

    Visual Studio sysadmin tutorial question workspace

  • Creating project from existing files
    T Tushar Kothari

    Hi First you have to create new solution then you have to add blank project in it. Then you have to add all the files in the project. After adding the file You have to change the namespace of each file as well as if it is asp.net project then you have to edit the aspx page to setting the .class name regards Tushar kothari :)

    Tushar kothari

    Visual Studio help question

  • version mismatch
    T Tushar Kothari

    Hi First you have to create new solution then you have to add blank project in it. Then you have to add all the files in the project. After adding the file You have to change the namespace of each file as well as if it is asp.net project then you have to edit the aspx page to setting the .class name regards :)

    Tushar kothari

    Visual Studio csharp dotnet visual-studio sysadmin help

  • Unbind project
    T Tushar Kothari

    Hi Since the sourcesafe is add his code in the .sln and .vbproj file. so you have to remove that code as well as you have to delete files with extension .vssscc and .vspscc. Then your solutions as well as project is free from sourcesafe.. Regards :)

    Tushar kothari

    Visual Studio csharp visual-studio debugging question

  • How to register an assembly in asp.net web app?
    T Tushar Kothari

    HI Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.Just use reflection for loading the assembly runtime in thke ASP.net.;););););););););););););););););)

    Tushar kothari

    Web Development csharp asp-net tutorial question

  • classic ASP
    T Tushar Kothari

    Hi Just replace '*' with '%' This will solve your problem Regards

    Tushar kothari

    Web Development question database

  • VB6-Data Report [modified]
    T Tushar Kothari

    Hi Can you please explain in brief so that I can help out to sort your issue Regards

    Tushar kothari

    Visual Basic help question

  • How can I set the output format of "FOR XML"?
    T Tushar Kothari

    Hi If you are using .Net then you can create XSD file for that and then you can store the output in dataset created by XSD. Regards

    Tushar kothari

    Database xml question database help tutorial

  • xmlHttp + web services + help needed
    T Tushar Kothari

    Hi You can return XML node from the Web Method and then on other end you have to store that XML node and after parsing you will get the values. Following is the sample code for that public function A() as XMLNode dim XND as new XMLNode .....your code.... .....Store the output in the XML Node return XND On ASPX page dim XNDC as XMLNode XNDc = .A() Then you can parse the xml node for you outout Regards

    Tushar kothari

    Web Development help csharp asp-net wcf data-structures

  • Cannot edit the existing record
    T Tushar Kothari

    Hi This is the tested code so please use it Private Sub Form_Load() Dim db As ADODB.Connection Dim rs As ADODB.Recordset Dim sql As String Set db = New ADODB.Connection db.Provider = "SQLOLEDB" db.ConnectionString = "Provider=SQLOLEDB.1;Password=thk;Persist Security Info=True;User ID=thk;Initial Catalog=Dhanavantari;Data Source=TUSHAR" db.Open Set rs = New ADODB.Recordset sql = "Select * from WardMaster" Set rs.ActiveConnection = db rs.CursorLocation = adUseServer rs.CursorType = adOpenDynamic rs.LockType = adLockPessimistic rs.Open sql, , , , adCmdText End Sub on Save client button rs.Fields(1) = trim(txtwardname.text) rs.Fields(2) = val(txtrate.text) rs.Update So now you can edit the recordset and then update it ADO is the connected type of recordset so you can update one record at a time. If you have some other problem which i had not understand the please brief it regards :)

    Tushar kothari

    Database database sql-server sysadmin help

  • Cannot edit the existing record
    T Tushar Kothari

    Hi If you want just to update the record in recordset then you have to set the fileds values of rs then call rs.update If this method is not wirking the please relpy back then I will try some odd solution for you. Regards

    Tushar kothari

    Database database sql-server sysadmin help

  • xmlHttp + web services + help needed
    T Tushar Kothari

    Hi Can you please use XML for output so that you can parse the XML in the asp or asp.net pages and store you output in variables Regards

    Tushar kothari

    Web Development help csharp asp-net wcf data-structures

  • Cannot edit the existing record
    T Tushar Kothari

    Hi Dear please concentrate on your following code rs.CursorType = adOpenStatic As you had open the cursor in Static mode there is no edit permission for this record set. You gave to open the recordset in non static mode. Regards

    Tushar kothari

    Database database sql-server sysadmin help

  • Catching errors raised by SP
    T Tushar Kothari

    Hi you can catch exception by following Catch ex As SqlClient.SqlException

    Tushar kothari

    Database csharp asp-net sharepoint database help

  • Navigation buttons
    T Tushar Kothari

    Hi Dear Please first check where you write the code for recordset and connection. Then try following code for your record movement **Next record **if not rs.eof then rs.movenext() .... end if **previous record **if not rs.bof then rs.moveprevious() ..... end if If the problem is there then please post new message with you complete form code so I can sort your issue. Regards :)

    Tushar kothari********

    Database database sql-server sysadmin

  • Asynchronous webservice call
    T Tushar Kothari

    I have to call Web Method from ASP Pages. But I don’t want to wait for output of the web method. So I had tried to call it Asynchronous call using begin and end. But still it is waiting. What methodology should I apply so that I can get my goal.

    Tushar kothari

    Web Development

  • is there any way i can update only some fields in the database excluding primary key ? please help
    T Tushar Kothari

    Hi Thsi is posible only when you PK Field is Identity or some before insert trigger is taking the responsibility of updating the PK filed. Regards :)

    Tushar kothari

    Web Development database help sysadmin data-structures question

  • Cellphone Dilemma [modified]
    T Tushar Kothari

    Hi If you want to activate this using the SMS then You have to take a device by which you can connect SIM card to your Irrigation system's server. Then you can send SMS to that SIM number. As soon as the SMS is came to SIM that device has some interface which read that SMS from SIM and transfer it to the Server's port, then You have to write a bridge program which reads the SIM message from the interface given by the device and Pass certain command to your Irrigation system. Let me knoe if you want any more help. Regards :)

    Tushar kothari

    C# csharp java help lounge
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups