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
M

member27

@member27
About
Posts
68
Topics
43
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Set the margin for Listbox
    M member27

    Hi all, I want to create twolist box ,one in left side and other in right side in runtime.I wrote one code but i cant set the correct margin can any one help me.. here is my source code.. in xaml code: <StackPanel x:Name="stkPnlCaption" Orientation="Vertical" Height="500" Width="800"> </StackPanel> in xaml.cs:: ListBox list = new ListBox(); list.Width = 200; list.Height = 200; list.Margin = new Thickness(148, 131, 0, 131); list.HorizontalAlignment = HorizontalAlignment.Left ; list.VerticalAlignment = VerticalAlignment .Top ; stkPnlCaption.Children.Add(list); CheckBox checkBox = new CheckBox(); checkBox.Content = "Yes" ; list.Items.Add(checkBox); ListBox list1 = new ListBox(); list1.Width = 200; list1.Height = 200; list1.Margin = new Thickness(298, 131, 280, 131); list1.HorizontalAlignment = HorizontalAlignment.Right; list1.VerticalAlignment = VerticalAlignment.Top; stkPnlCaption.Children.Add(list1); CheckBox checkBox1 = new CheckBox(); checkBox1.Content = "Yes" ; list1.Items.Add(checkBox1); i want the both the list box in same height and width ..one in left side and other in right side(paralley).

    WPF wpf help

  • Move up and down in Grid
    M member27

    can i use the same code for infragistics grid?

    ASP.NET question css

  • Move up and down in Grid
    M member27

    Hi all, Iam using a grid in my web application.. I want to move the row up if i Click the up button and move a row down in down button How can i do using javascripts??i got the rowindex var grid=igtbl_getGridById("grid"); var actrow=grid.getActiveRow(); var rowindex=actrow.getIndex(); using this rowindex how can i move the row to up or down.. can anyone suggest me? if any other way also suggest me.

    ASP.NET question css

  • create a custom button in microsott word
    M member27

    Caps lock On or Off is not a problem now..if u can just answer for my question .. it is possible to open a word from asp.net apllicatopn and add a custom button Try to Search In googl :-D e

    ASP.NET help question

  • create a custom button in microsott word
    M member27

    I CANT UNDSTAND WAT U TRYING TO TELL.. yES I WANT TO CODE IN ASP.NET TO BRING THE BUTTON IN WORD TATS WAY I POSTED IN ASP.NET MESSAGE BOARDS

    ASP.NET help question

  • create a custom button in microsott word
    M member27

    Hi all, I want to create a custom button in menu of microsdoft word..can any one help me ?? i have wrote the code to open a word and just to create a button but i want the custom button in menu of the word document Dim oWord As Word.Application Dim oDoc As New Word.Document 'Dim oTable As Word.Table Dim oPara1 As Word.Paragraph Dim menu As Word.CustomLabel Dim oPara2 As Word.Paragraph Dim sCode As String Dim shp As Word.InlineShape Try 'Start Word and open the document template. oWord = CreateObject("Word.Application") oWord.Visible = True oDoc = oWord.Documents.Add oPara1 = oDoc.Content.Paragraphs.Add oDoc.Windows.Add("dd") oPara1.Range.Text = " Test Document" oPara1.Range.Font.Bold = True oPara1.Range.InsertParagraphAfter() oPara2 = oDoc.Content.Paragraphs.Add ''''''''Button Code shp = oDoc.Content.InlineShapes.AddOLEControl(ClassType:="Forms.CommandButton.1") shp.OLEFormat.Object.Caption = "Click Here" 'shp.OLEFormat.DisplayAsIcon = True sCode = "Private Sub " & shp.OLEFormat.Object.Name & "_Click()" & vbCrLf & _ " MsgBox ""You Clicked the CommandButton""" & vbCrLf & _ "End Sub" 'oWord.VBE.VBProjects().VBE.ActiveVBProject.CodeModule.AddFromString(sCode) oWord.VBE.VBProjects.VBComponents("ThisDocument").CodeModule.AddFromString(sCode) shp.OLEFormat.Object.Caption = "Click Here"

    ASP.NET help question

  • textbox values clears
    M member27

    This is the server side code for check changed Private Sub chkselallitems_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkselallitems.CheckedChanged dim str as string For i = 0 To grdexam.Rows.Count - 1 str+= grdexam.Rows(i).Cells(1).Value & "," next hdncode.value=str End Sub when i updatethe hdncode.value in server side it is not reflecting if i take in client side can any one tell the reason

    ASP.NET sysadmin help announcement

  • textbox values clears
    M member27

    Hi all, Iam using a hidden textbox in my form...when i update the value of the Hidden textbox in server side - when i check a checkbox , and i take the value of textbox in client side in a button click . The value of the textbox reamins empty qwhen i take the value in client side client side code:: var str= document.getElementById("Hdncode").value; when i update the value of textbox in clent side it takes but when i update thro server side it not updating ... in myForm i didnt wrote any code to clear the textbox value any wer then y it happens any reason .. can any one help me

    ASP.NET sysadmin help announcement

  • Href in Grid
    M member27

    Hi Thank u for your help.. i cant undstand code 'OnDataBinding="lnkIDCode_DataBinding"> I want to give the navigateurl and text from the database can i give like this?? asp:hyperlink id="lnkID" runat="server"text='<# Eval("[ColumnField]") &>´ navigateurl='<# Eval("[ColumnField1]") &>

    ASP.NET tutorial css database

  • Href in Grid
    M member27

    Hi all, I want to take the values from database and keep in href in Grid and in database i will store the link path and title for the hyperlink path For example -(Click) I will get the values default.aspx and click from the database and i want to keep in Infragistics grid as href I got the values from the database as Dataset .. How to set the href path and title for the hyperlink column in Ingragistics grid .. Pl s can any one suggest me the solution

    ASP.NET tutorial css database

  • adapter update using stored procedure
    M member27

    HI all, I gave the stored procedure for a sql adapter(database1) and in the select command i selecedt stored procedure .. I have other adapter(database2) in tat i gave the update stored procedure for same table. can i do the code like this sqladapter1.fill(ds) take that dataset and update to other sqladapter 2 sqladpater2.update(ds) wether it will work? or any other idea or easy way to insert a table datas from one db to other db table .. pls help me

    ASP.NET database help question announcement

  • Barcharts
    M member27

    I know to drag the fields..I asked there is option in data tab tat count of field is displaying. I kept date in x axis..but thre is no option to keep n y axis..it is taking the count of field in dataset...

    ASP.NET help tutorial question

  • Barcharts
    M member27

    Hi all, I want to use barchart and graphs in crystal reports..how to give x axis and yaxis value in them..i saw in data tab .. on the change of and show values textboxes in tat tab..i cant undstand suppose from my dataset i want to give x axis as branch name and amount in y axis?? how to give them pls help me :(

    ASP.NET help tutorial question

  • CACHING IN ASP.NET
    M member27

    Hi all, Iam using caching in my asp.net application..I have used the code Cache.Insert("Ds", DsiReports) I have inserted a dataset in cache which contain records... wheh i use the below the code.(Cache.Item("Ds")) contains nothing If Not IsNothing(Cache.Item("Ds")) Then DsiReports = Cache.Item("Ds") End If wheh i run the same code in my near by and other system the cache contains data..In my system cache is not wrking .. How to enable cache in my system?? pls give some suggestion... I searched in google but it didnt work

    ASP.NET csharp asp-net tutorial question

  • Improve the speed of Function
    M member27
    Database database performance tutorial announcement code-review

  • Improve the speed of Function
    M member27

    Hi all , Iam Using a query which returns a bulk of data. first my query contains sub query to find the count so i panned to change as a function .. So i created a function which returns a table.. create function fnname returns table(name as varchar,....,....,...,...,...,...) I inserted the values into the temp table from the select query and (i want to find the count of receipt numbers so ... i updated the query with another query update temp table set rno =(select count(rno) from table where ....) then i executed the function but it is quite slow please suggest me any way to increase the speed of the function or query.. how to increase the speed of the function

    Database database performance tutorial announcement code-review

  • Sql Reporting services
    M member27

    Thank u for ur reply..Iam not asking u the differences between them i know to google and find the difference.. Which tool is more faster i asked..Coz this is forum to get ideas from well versed people and fix soon

    Database database question

  • Sql Reporting services
    M member27

    Hi all, Is Sql reporting Services will be faster compare to Crystal reports ? can any one suggest me which tool is best for loading nearly lakhs of datas ?? which tool is best ? can any one suggest me

    Database database question

  • Grouping to eliminate null
    M member27

    Hi all, Iam using Sql reporting services .iam having a field Invoicereq in one table.I want to group only the invoicereq="y" and get the result.. I have given the group field as invoicereq="y" in reporting services and got the result but i am getting a null value along with it . (totally only one row but the result produce is 2 rows (one row null)) how to eliminate nuull values? in where condition i cant use the invoicereq="y" option because i want all th rows from tat table but group tat separate can anyone help me?

    Database database help tutorial question

  • Sql Reporting Services
    M member27

    Ok thank u..I tried using tat formula..But it is displaying one record in every page...

    Database database help 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