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

jigneshDPatel

@jigneshDPatel
About
Posts
30
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Imports Problem in Crystal Report
    J jigneshDPatel

    I am working in vb.net 2008 c# My application work in two languages (English and Hindi) In My application I use same font for both languages (Microsoft Sans serif) Because in my application when I use Hindi font for Hindi in my Design are Disturb that’s I use same font. My problem in Crystal Reports when I Exports the Reports in word the Hindi font are cut in the word file and when I imports in .pdf file that’s not show the Hindi font . If anybody have solution please give me please it’s urgent And if anybody know that which font are use in both please that’s tell me also

    C# csharp design help

  • How to save Gujarati font in Sql Server
    J jigneshDPatel

    Thanks you.

    C# csharp database sql-server sysadmin

  • How to save Gujarati font in Sql Server
    J jigneshDPatel

    Thanks sir That's Work 1) sir what is the mening of N in this if u know so please tell me thanks again to help me on this problem Sir One another problem please help me on it 1) how can i set by default font set gujarati i try but every time i select language than write in gujarati other wise by default i write in english so if u have any idea so plese tell me thanks you..........

    C# csharp database sql-server sysadmin

  • How to save Gujarati font in Sql Server
    J jigneshDPatel

    In My Application I us Vb.net 2008 in C# and my database is Sql server 2005 express Edition In My application I am usig gujarati font so how can i save that gujarati font in database Plese help me on this matter if any other idea so please tell me also please help..........

    C# csharp database sql-server sysadmin

  • Add Item In Combobox
    J jigneshDPatel

    Thaks You .....

    C# csharp help sales tutorial

  • Add Item In Combobox
    J jigneshDPatel

    I am use FillCombo to Form Load Event to FillCombo Box Sir Hear Some Mistact Of my Coding But Hear I Dont't Find That. If Sir U Have Any Other Idea to FillCombo so Plese Tell Me Please

    C# csharp help sales tutorial

  • Add Item In Combobox
    J jigneshDPatel

    Qry is a obj of my class FillDataSet is one Common Function that's only fill the dataset or datatabel In That the Data Will come is proper but Sir that Are Duplicate in to the combobox Just Example the 1) 'qqqqq' That's are show in combo ManyTime that's way the some other data are also come the many times Hear Sir Any Other Way to Fill the Combo My one Friend Sid that that's to fillcombo with use Recursion is not give Proper Result and also say that that it is not proper way. So if U know to the Other Way to Fill Combo so Please Tell Me That's Request Please

    C# csharp help sales tutorial

  • Add Item In Combobox
    J jigneshDPatel
    1. But sir in my database there is no extra data my database data is show below Hear is my Database 2 NULL Account 3 2 Perment 4 2 Tempray 11 NULL Sales 12 11 tttttt 13 11 pppp 14 12 qqqqq 15 13 jjjjj 16 15 asd 17 16 sasda 20 17 fffff 23 NULL Purchase 28 23 Pur1 30 20 qqqqqqq 31 14 aaaa 32 15 bbbbbbbb 33 32 iiiiiii 34 3 Company Employees 35 4 Contract Base Employee 2) i am trying as u say but that's are return the same thing as they return early 3) in my application i want to just add Parent data with the all child in my combobox if there are any other way to fill the combobox so please tell me 4) Example : The Sales is Parent Node and the that releted all child are fill in to the combobox with the Parnet Node 5) Hear the NULL is define that that is Parent Node.
    C# csharp help sales tutorial

  • Add Item In Combobox
    J jigneshDPatel
    1. public void FillCombo() { DataTable dt = new DataTable(); StrSql = "select Level_Id,Level_Name from UserLevel"; StrSql += " where Level_Id = '2'"; dt = qry.FillDataSet(StrSql).Tables[0]; if (dt.Rows.Count > 0) { if (ChildExistOrNotInCombo(2) == true) { AddChildCombo(2, ref dt); } } this.cmbParentLevel.DataSource = dt; this.cmbParentLevel.DisplayMember = "Level_Name"; this.cmbParentLevel.ValueMember = "Level_Id"; } 2) private void AddChildCombo(int objid,ref DataTable Table) { DataTable Objdt = new DataTable(); int Objval = 0; StrSql = "select Level_Id,Level_Name from UserLevel"; StrSql += " where Parent_LevelId = " + objid + ""; Objdt = qry.FillDataSet(StrSql).Tables[0]; if (Objdt.Rows.Count > 0) { for ( int i = 0; i <= Objdt.Rows.Count - 1; i++) { Table.ImportRow(Objdt.Rows[i]); Objval = Convert.ToInt32(Objdt.Rows[i].ItemArray[0]); if (ChildExistOrNotInCombo(Objval) == true) { AddChildCombo(Objval, ref Objdt); } } } } 3) private bool ChildExistOrNotInCombo(int ObjParentId) { StrSql = "select * from userlevel where Parent_LevelId = " + ObjParentId + ""; if (qry.CheckExist(StrSql) == true) { return true; } else { return false; } } in my database this item has only 12 record but in this that retrun the 77 record in some are wrong but i dont't know please help me on this problem as soon as possible
    C# csharp help sales tutorial

  • Add Item In Combobox
    J jigneshDPatel

    I am working in vb.net with c# - 2008 Hear Some Problem to fill Combobox using recursion in Duplication Problem in my combobox please help me my table and coding like this In table using Self join *************** Table****************** Id Parent_Id Name 1 Null Sales 2 1 Item1 3 1 Item2 4 2 Item3 5 3 Item4 6 4 Item5 7 Null Purchase 8 7 Item1 9 7 Item1 My table data are look like that 1) in my application i want to fill only the Sales and that's child to releted with them in combobox 2) in my application i use to recursion that's work but that show many time the purticulr some items 3) if any budy have the solution of my problem please help me and if possible to give me code releted with otherwise give some example releted with it please

    C# csharp help sales tutorial

  • Treeview in vb.net 2008
    J jigneshDPatel

    Ya sir Please Give Me Some code

    Visual Basic csharp help tutorial

  • Treeview in vb.net 2008
    J jigneshDPatel

    in my application i want to draw n level treeview with dataset please help me in this matter and if possible please give me some example because i am never use treeview before

    Visual Basic csharp help tutorial

  • datagridview in vb.net 2008
    J jigneshDPatel

    that's use in userrigths 1) in my application first i fill all data in the datagridview through dataset 2) than after i want to give the rights like add,update and delete 3) in my application the delete are not in some form so that not display in gridview just that's purpose i want to not show that perticular cell in datagridvie my datagridview look like this colum 1 colum 2 colum 3 colum 4 colum 5 colum 6 colum 7 colum 8 checkbox formname checkbox add checkbox delete checkbox update remark: checkbox manse thats are checkbox cell Add: Add meanse that's just the heading of colum 5 of the checkbox of add rigths example : in my shiftmaster form delete are not in so in that time in grid view the colum 5 and colum 6 are not display if u have a another idea so please give me thanks you

    Visual Basic help csharp css tutorial

  • datagridview in vb.net 2008
    J jigneshDPatel

    Thanks to Replay I know that this thing ? if u have a some idea of cell will be visibel false so please give me some example

    modified on Wednesday, January 7, 2009 7:10 AM

    Visual Basic help csharp css tutorial

  • datagridview in vb.net 2008
    J jigneshDPatel

    in my application i want to disable or visible a perticular cell in datagridview in load time the grid by coding i write just like this me.gridview1.row(2).cells(4).visible = false in this coding that give me the error of readonly properity can i visible or disable to perform in perticular cell please help me in this and give me some example please it's urgant....

    Visual Basic help csharp css tutorial

  • listbox in vb.net
    J jigneshDPatel

    Thanks You for Help that's Working.....

    Visual Basic csharp help question

  • listbox in vb.net
    J jigneshDPatel

    Ya But that's not work

    Visual Basic csharp help question

  • listbox in vb.net
    J jigneshDPatel

    my project in vb.net Please give me some example how i can do this i never use get or set

    Visual Basic csharp help question

  • listbox in vb.net
    J jigneshDPatel

    my application in vb.net 2005 i want to change the value of SelectedItem at the runtime ? it is possible Please help on this it's urgent.......

    Visual Basic csharp help question

  • PDF file to Crystal Reports converter
    J jigneshDPatel

    Can I Convet Word file in Crystal Report ?

    Visual Basic csharp help tutorial
  • Login

  • Don't have an account? Register

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