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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
P

Panchal Hardik

@Panchal Hardik
About
Posts
34
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • While Loop Problem in SQL
    P Panchal Hardik

    Remove "goto MainLoop" from bottom of "OutGoing:"

    Hardik Panchal

    ASP.NET help database

  • sql express
    P Panchal Hardik

    IS that Database on same server?

    Hardik Panchal

    Database database

  • How can textarea fixd with character
    P Panchal Hardik

    function textCounter(maxlimit) { var field = document.getElementById(fieldId); if (field.value.length >= maxlimit) // if too long...trim it! { field.value = field.value.substring(0, maxlimit); event.keyCode = 0; } event.cancelBubble = true; }

    Hardik Panchal

    Web Development

  • Validator for not allow PO BOX number
    P Panchal Hardik

    Thanks for ur reply. But you not understand my problem. I have one form in which user have to insert the shipping address. I have condition, we not ship at PO box number. There is a one text box where user have to insert their Address (street, Home number etc.) Now i have to validate this text box to enter the po box number by user. because some user may be enter po box number in address field. Thanks

    Hardik Panchal

    ASP.NET

  • Validator for not allow PO BOX number
    P Panchal Hardik

    Thanks, I need it at client side. I restrict to user to add po box in Address field. I try different validation but it not work. if u have then please give to me.

    Hardik Panchal

    ASP.NET

  • Validator for not allow PO BOX number
    P Panchal Hardik

    Hi, I need to Validator that not allow user to enter the PO box number in the Address field. Thanks !

    Hardik Panchal

    ASP.NET

  • Xml BulkLoad
    P Panchal Hardik

    I create the one thread and call my bulk upload method from that thread. which is work for me. before i not use the thread which is not working in my new application but working in other application. Here is the code. Public objBulkthread As System.Threading.Thread If Not IsNothing(objBulkthread) Then If Not objBulkthread.IsAlive Then objBulkthread = New System.Threading.Thread(AddressOf objGeneral.UploadXmlBulk) objBulkthread.ApartmentState = Threading.ApartmentState.STA objBulkthread.Start() End If Else objBulkthread = New System.Threading.Thread(AddressOf objGeneral.UploadXmlBulk) objBulkthread.ApartmentState = Threading.ApartmentState.STA objBulkthread.Start() End If Thanks

    Hardik Panchal

    Database xml help

  • xmlbulkload
    P Panchal Hardik

    i got the solution tx

    Hardik Panchal

    XML / XSL help

  • Xml BulkLoad
    P Panchal Hardik

    I got the solution. thanks

    Hardik Panchal

    Database xml help

  • xmlbulkload
    P Panchal Hardik

    Hi I am getting following error on connection string in xmlbulkload: "QueryInterface for interface SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed." Thanks

    Hardik Panchal

    XML / XSL help

  • Xml BulkLoad
    P Panchal Hardik

    Hi I am getting following error on connection string in xmlbulkload: "QueryInterface for interface SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed." Thanks

    Hardik Panchal

    Database xml help

  • problem on checkboxlist
    P Panchal Hardik

    For Each dr As DataRow In checkboxlist.Items if dr(columnname) = 'A' then checkboxlist.Items.checked = true end if Next

    Hardik Panchal

    ASP.NET database csharp help

  • problem on checkboxlist
    P Panchal Hardik

    first u can splite the result row with 'A,C,D' with ",". now u have the array of the all checkbox which need to select. now with checkboxlist you can find the ur checkbox by text or value and give the property selected

    Hardik Panchal

    ASP.NET database csharp help

  • Help me about DTS in SQL server2005!
    P Panchal Hardik

    try this http://www.microsoft.com/technet/prodtechnol/sql/2005/mgngssis.mspx[^]

    Database database csharp sql-server sysadmin business

  • fetch listbox with values vb .net
    P Panchal Hardik

    While (dr.Read) lstStdents .Items.Add(dr.Item("Name")) End While Panchal Hardik

    Database help csharp tutorial question

  • problem related to database
    P Panchal Hardik

    you can change the status while inseting the data in emp_detail table. Or you can create a triger on emp_detail table on insert and check the eligible column and update emp table as per value Hardik Panchal

    ASP.NET database help

  • Paypal Pro Integratin Error
    P Panchal Hardik

    i got follwing error while user Paypal API. "The underlying connection was closed: Unable to connect to the remote server" May be due to proxy setup i try this but not work Hardik Panchal

    ASP.NET sysadmin json help workspace

  • use of popup celander in asp
    P Panchal Hardik

    Try This One http://www.rainforestnet.com/datetimepicker.htm[^] Hardik

    Web Development tutorial question

  • SQL XML 3 BulkLoad Error
    P Panchal Hardik

    I have following error in window service same code is working in window Application "QueryInterface for interface SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed." Dim objbl As SQLXMLBulkLoad3 objbl = New SQLXMLBulkLoad3 objbl.ConnectionString = "Provider=SQLOLEDB.1;Data Source=pcDB;Initial Catalog=webdb;User ID=sa;pwd=sa" objbl.ErrorLogFile = "c:\error.log" objbl.BulkLoad = True objbl.KeepIdentity = False objbl.CheckConstraints = False objbl.Transaction = False objbl.Execute("c:\Items.XSD", "C:\Items.xml") Thanks Hardik Panchal

    COM database xml help

  • SQL XML 3 BulkLoad Error
    P Panchal Hardik

    I have following error in window service same code is working in window Application "QueryInterface for interface SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed." Dim objbl As SQLXMLBulkLoad3 objbl = New SQLXMLBulkLoad3 objbl.ConnectionString = "Provider=SQLOLEDB.1;Data Source=pcDB;Initial Catalog=webdb;User ID=sa;pwd=sa" objbl.ErrorLogFile = "c:\error.log" objbl.BulkLoad = True objbl.KeepIdentity = False objbl.CheckConstraints = False objbl.Transaction = False objbl.Execute("c:\Items.XSD", "C:\Items.xml") Thanks Hardik Panchal

    Database database xml help
  • Login

  • Don't have an account? Register

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