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

tantja

@tantja
About
Posts
16
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Manipulate SQL String
    T tantja

    Thank you so much...that's just want i needed... Thanks!!!

    Database database help tutorial question

  • How to print data across then down in RDLC report??
    T tantja

    Thanks....that's a good option to do so. Thanks!

    Database help question tutorial

  • Manipulate SQL String
    T tantja

    I have another small question regarding this: select substring(inventoryId,1,Charindex('-CE',InventoryID)) from Inventory work if all the inventoryID contain -CE, however there're some inventoryID that doesn't contain -CE and for those that doesn't contain -CE i want to select the whole field. My SQL statement is really big, if i use If..Else statement then it's like if InventoryID like '-CE' begin .....the whole nine yard of select statement... else .....another nine yard of select statement.... i was wonder if you can use if within select statement...what i picture are: SELECT *, (inventoryid without -CE for those that contain -CE) FROM Inventory I hope you understand my question. Thanks!

    Database database help tutorial question

  • How to print data across then down in RDLC report??
    T tantja

    Let me clarify my question for you: This option is possible to do in Crystal report where you can add another column and choose a direction to print your data (if you want the data to display across then down or down then across). However, I did see option that you can increase the column number in SSRS when you create RDLC, but i didn't see anywhere that you can determine the printing direction and i'm just trying to find out if they have this option in SSRS (i'm trying to create a client report definition RDLC using VS2008 with C#). I thought maybe I'm looking for this option in a wrong place, since in crystal report this option seem to be out of sight too. Also, the reason I ask this question again this forum because i thought that the reason i didn't get any response last time was maybe because i asked question in a wrong type of forum & since this is topic associate more with SSRS, I ask again in here.

    Database help question tutorial

  • How to print data across then down in RDLC report??
    T tantja

    In crystal report, you can select the printing direction in Layout tab between "Across then Down" and "Down then Across." For Ex: I have a dataset with 2 column:

    id Name
    1 Jim
    2 Jess
    3 John
    4 Jane
    5 Joey

    I want the result to print like this:

    id name id name
    1 Jim 2 Jess
    3 John 4 Jane
    5 Joey

    How can i do this in local RDLC report or is it even possible? Please help/advice. I'm really stuck on this. Thanks in advance!!!!

    Database help question tutorial

  • Manipulate SQL String
    T tantja

    Thank you....the substring function work without -2 at the end. Thanks again!!!

    Database database help tutorial question

  • Manipulate SQL String
    T tantja

    Hi, I need help with selecting part of column value. Say that I have a database that return me a InventoryID InventoryID as123-CE123daf235 23d45543-CE23432 234dave-CEj324lio I want to select everything before -CE, i couldn't use Substring() function because each value have a different character id. can anyone advice me how to do this??? Thanks in advance!!!

    Database database help tutorial question

  • How to print data across then down in RDLC report
    T tantja

    In crystal report, you can select the printing direction in Layout tab between "Across then Down" and "Down then Across." I was wonder how to do this in local RDLC report or is rdlc even have this option?

    Windows Forms tutorial question

  • How can I show different value when mouse over custom textbox?
    T tantja

    I created a custom control textbox in WinForm which have another value field called "fullValue" which is a little different than the .text value. Is there a way where I can make it to where when I mouse over this textbox, it show fullValue as a tooltip? Any help would be highly appreciated, thanks in advance!

    C# question help

  • Set Column Width in Dynamic Table
    T tantja

    yeh...when it display. i connect it to the datagrid, but i couldn't find a way to set the width of the column in there.

    C# csharp tutorial

  • Set Column Width in Dynamic Table
    T tantja

    I create a dynamic table using the code below (c#), but I couldn't figure out how to set the column width (in column3 comments). DataTable tbl; DataColumn col; tbl = new DataTable(); col = new DataColumn("column1"); tbl.Columns.Add(col); col = new DataColumn("column2"); tbl.Columns.Add(col); col = new DataColumn("column3 comments"); tbl.Columns.Add(col); tbl.AcceptChanges(); DataRow r; r = tbl.NewRow(); r["column1"] = "This is 1"; r["column2"] = "This is 2"; r["column3 comments"] = "Comments is really long & I need to set the width for this"; tbl.Rows.Add(r);

    C# csharp tutorial

  • MDI Parent & Child Form
    T tantja

    Thanks for your reply. I came up with another idea....but still need a little guidance. Okay, so if my childForm1 is maximize then i launch Form1 by itself, not in MDIParent(frmParent) and if I want to launch childForm2 from Form1 but make it in MDIParent, Maximize and close childForm1. Is it possible? frmChild2 Child2 = new frmChild2(); frmParent Parent = new frmParent(); Child2.MdiParent = frmParent.MdiParent; Child2.WindowState = FormWindowState.Maximized; Child2.Show(); foreach (Form childForm in frmParent.MdiParent.MdiChildren) { if (childForm != Child2) childForm.Close(); } break; But it didn't work.

    C# csharp

  • MDI Parent & Child Form
    T tantja

    I'm developing a WinForm using C# and VS2005. I was wonder if it is possible to open up a childForm1 in maximize window of MDIparent and launch childForm2 on top of childForm1, but still keep childForm1 as MAXIMIZE. Here's a big picture. childForm1 > childForm2 (childForm1 Maximize and childForm2 on top) What I'm looking for is the code to keep childForm1 maximize and childForm2 launch on top. Please please please please please......advice!!!! Thank you!:~

    C# csharp

  • How to create Expander in WinForm?
    T tantja

    Well, I just want an expander function like how WPF have it, but not sure how to create that in WinForm?

    C# csharp wpf tutorial question

  • How to create Expander in WinForm?
    T tantja

    Yes, In my WinForm, I want to create a function where i can expand and collapse each sections. Right now I have it by using UserControl and Panel, then each time a user hit the button it hides the Panel. However, the way I have it does not work so well because I'll then have to create a user control for each sections and one form and run to 10 sections. Please advice.:(

    C# csharp wpf tutorial question

  • How to create Expander in WinForm?
    T tantja

    I had a chance to learn WPF for a little while and found a useful feature which I want to create in WinForm, but not sure how to do so. I was wonder if there's a way to create an expander (just like how it work in WPF) in WinForm? Thanks...!:-D tant tant :doh:

    C# csharp wpf tutorial question
  • Login

  • Don't have an account? Register

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