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
J

JustChiragPatel

@JustChiragPatel
About
Posts
25
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .net framework installation problem
    J JustChiragPatel

    hi, ok, i got what you want to tell. thanks.

    Chirag Patel Programmer Analyst India

    C# help csharp dotnet question workspace

  • .net framework installation problem
    J JustChiragPatel

    hi, i have replied with answer that you have to user third party installer to do that, there is no way to configure installer project in VS 2005. but still you can find the solution in installer, if not find then try NSIS. Regards.

    Chirag Patel Programmer Analyst India

    C# help csharp dotnet question workspace

  • .net framework installation problem
    J JustChiragPatel

    hi, N a v a n e e t h supplying framework package is not a solution for corporate application. user want one click installation packages, is you solution need to click on framework package installation? if yes then your setup is not for corporate users. we have to give as much as comfort to our user. Bye

    Chirag Patel Programmer Analyst India

    C# help csharp dotnet question workspace

  • Hidding a tab page
    J JustChiragPatel

    hi, ok, i think building custom tab control will solve your problem. i can give you logic for custom control. logic of "HideTabPage" method is, take array of tabpages control which are in custome tabcontrol. and remove that tabpage from tabcontrol which you want to hide. and when you want to show/display that removed tabpage then add taht tab page from tabpages array into tabpage control. you can also modify this logic according to your requirement. you can make some browseable properties also, so you can hide/show tabpages by setting property values. Bye :-D.

    Chirag Patel Programmer Analyst India

    C# com tools question

  • .net framework installation problem
    J JustChiragPatel

    Hi, yes by default it will ask user to download framework from the internet. but we can put .net framework redistributable packages in our setup files and we can write NSIS script for installing our application such way that it will install framework from given location in setup package, and will not ask for download. for that you have to write NSIS script. you can find resources to write that from this line. http://nsis.sourceforge.net/DotNET[^] Bye Have a nice day :-D.

    Chirag Patel Programmer Analyst India

    C# help csharp dotnet question workspace

  • Hidding a tab page
    J JustChiragPatel

    hi, yes i have also faced this problem. we can not hide tab page in tab control. but i have find a solution by making one custom tab control which has "HideTabPage" property which allow me to hide tab page. but you can also disable all controls on that tabpage, if you don't want to allow users to use controls on that tab page. you ca use this code... For Each ctl As TabPage In myTabControl.TabPages If ctl.Name.Equals(tPageToRemove.Name) Then For Each ctlchild As Control In ctl.Controls ctlchild.Enabled = False Next End If Next by this code you can disable all controls on given tab page. Bye :-D .

    Chirag Patel Programmer Analyst India

    C# com tools question

  • sorting
    J JustChiragPatel

    Hi, yes, if we use ready made sorting function in .NET library then it will sort based on ASCII characters, but here i think your sorting includes numbers and characters and zero based numbers also, so i think you should make your own sorting function which will use Comparer class to compare values and then will sort based on your requirement. Bye :-D .

    Chirag Patel Programmer Analyst India

    C# database sql-server com sysadmin algorithms

  • Client Server Application in C#
    J JustChiragPatel

    Hi, in client server application, we have to use common Connection String, so that all the client installation can connect with centralized database at Server. so, have you used connection string in your single user application ? if yes then use the connection string of Central server in App.config file so all client installation will point central server database. use the connection string in App.config like, Source=local/(central Server instance name);Initial Catalog=Database Name;User ID=sa;Password=sa" providerName="System.Data.SqlClient" /> then use this connection string in your Connection object. so your all database related code will point this central server. try this. :-D

    Chirag Patel Programmer Analyst

    C# csharp database sysadmin help tutorial

  • Http to Https Redirection Problem [modified]
    J JustChiragPatel

    Hi friends, I got problem when i redirects from one http page to other https page then , my page from which i am redirecting is reloads first time. can any one tell me why this is happening ? i have simple anchor tag like[](https://....>Registration</a>
    when i click on that my page which contains that anchor tag is reloaded.

    is it necessary to set )

    ASP.NET help question

  • http to https redirecting problem...
    J JustChiragPatel

    hi friends, i have a problem like when i am redirecting from one page to other page in my site but with "https" instead of "http" then protocol is changed but home page is reloaded instead of opening that page referenced by Thanks.

    Chirag Patel

    ASP.NET help

  • http to https redirection problem
    J JustChiragPatel

    hi friends, i have a problem, like when i redirects from http to https from my current page to my other page, then my request is going into loop i am not able to reach at redirected page. i have just replace "http" to "https" and reform the url and redirected to that https url. can anyone please help me.

    Chirag Patel

    ASP.NET help

  • retiveig columns
    J JustChiragPatel

    Hi, how are you..? you should try this... use this for loop for getting names of all columns in table... DataTable dt = new DataTable(); string[] columnsNames = new string[dt.Columns.Count]; for (int i = 0; i < dt.Columns.Count; i++) { columnsNames[i] = dt.Columns[i].ColumnName.ToString(); } Bye ...

    Chirag Patel

    ASP.NET sharepoint help tutorial

  • Please Help Me Soon
    J JustChiragPatel

    Hi, how are you..? you are trying to run a class library project which has no forms, so you will not be able to run it and you will get this type of error. you should create one simple form application and link your class library with it and then, try to run that form application ...you will be able to debug your class library project through this path.... Bye.

    Chirag Patel

    ASP.NET csharp debugging help workspace

  • Not getting Image url which i have uploaded in my article at modification of article
    J JustChiragPatel

    i have writen one article. at that time i have uploaded two images, but i am not able to use those images in article at writing time...

    Chirag Patel

    Site Bugs / Suggestions help question

  • Not getting Image url which i have uploaded in my article at modification of article
    J JustChiragPatel

    hi, i have problem like, i am Not getting Image url which i have uploaded in my article at modification of article, Can you please help me ?

    Chirag Patel

    Site Bugs / Suggestions help question

  • i want to display all the countries in the world
    J JustChiragPatel

    then you can create user control and use it in databinding...i think you will not find any third party control exactly same as your requirement.. bye Chirag Patel

    ASP.NET

  • DataView and its DataSource
    J JustChiragPatel

    just declare your DataTable as static , and get data in DataTable like.. public Static DataTable dt = new DataTable(); if(!IsPostBack) { dt = //some binding code... } now you will not lost data from datatable.. bye have a nice day. Chirag Patel

    ASP.NET

  • i want to display all the countries in the world
    J JustChiragPatel

    hi anujose, if you want to fetch any data then you have to read any database or file... here you dont want to fetch data from database thenyou can fetch data from XML file.. prepare some structure in XML like.. INDIA IN St1 St2 . . . and then read this XML and bind that datatable with your controls... Bye have a nice day... Chirag Patel

    ASP.NET

  • i want to display all the countries in the world
    J JustChiragPatel

    hi anujose, if you want to fetch any data then you have to read any database or file... here you dont want to fetch data from database thenyou can fetch data from XML file.. prepare some structure in XML like.. INDIA IN St1 St2 . . . and then read this XML and bind that datatable with your controls... Bye have a nice day...

    Chirag Patel

    ASP.NET

  • Paging in Data Grid
    J JustChiragPatel

    hi ... your problem is like ...your code is loading datagrid with total result..because ithink you have not write that "Public Sub DgBound()" function in "Page_Load" event... you should wirite page_load(...) { if(!Page.IsPostBack) { //then here you can call "Public Sub DgBound()" function... } } amd in search button click event write your search code... do remember use Dataset and datatable static and declare them public and globally...and use only one dataset or datatable to bing in "Public Sub DgBound()" function as well as in "Search" code... try this.. bye..

    Chirag Patel

    ASP.NET
  • Login

  • Don't have an account? Register

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