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
M

Member_3269611

@Member_3269611
About
Posts
11
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to do a Select/Where x=NULL
    M Member_3269611

    Hi, Select * from TABLE Where X Is Null Pandian S

    Database question tutorial

  • SQL CONNECTION STRING
    M Member_3269611

    Hi, I think this will help to u Cstring="Server=;DataBase=DOCTOR;UID=sa;PWD=" Pandian S

    Database question database sql-server sysadmin security

  • COFF Format ?
    M Member_3269611

    Hi, - Can I see the COFF Format physically ? - If It is 'YES', How Can I ? Thankx in advance

    .NET (Core and Framework) question

  • Interop exception
    M Member_3269611

    Hi, - Normally, 'Unmanaged COM' can be called in .NET through RCW(Runtime Callable Wrapper), So the COM which U have used is not supported by the .NET RCW. - May I now the COM Name, Is It Created By U / Not, In which application the COM Created. With Regards, Pandian S

    .NET (Core and Framework) com csharp question discussion

  • Pressing Enter on a textbox
    M Member_3269611

    Hi, I think the following code will fulfill your requirement. TextBox1_KeyPress ----------------- If Asc(e.KeyChar) = 13 Then MsgBox("The Data You Have Entered : " & TextBox1.Text, MsgBoxStyle.Information) End If With Regards, Pandian S

    Visual Basic question algorithms help

  • DateTime datatype returns Date only
    M Member_3269611

    Hi, U can try the following 'CAST' ------------------------------ SELECT Clock_Nbr, CAST(Punch AS VARCHAR(20)), Seq_No FROM TIME_POST_WORK ORDER BY Punch With Regards, Pandian S

    Visual Basic database csharp visual-studio

  • how to get a specific row
    M Member_3269611

    Hi Friend, If U want to get the 10th Row: ------------------------------ SELECT TOP 1 * FROM (SELECT top 10 * FROM TABLENAME ORDER BY NUMERICCOLUM) AS SUBS order by NUMERICCOLUM desc If U want to get the 12th Row: ------------------------------ SELECT TOP 1 * FROM (SELECT top 12 * FROM TABLENAME ORDER BY NUMERICCOLUM) AS SUBS order by NUMERICCOLUM desc With Regards, Pandian S

    Database database oracle help tutorial

  • Procedure or function has too many arguments specified [modified]
    M Member_3269611

    Hi Friend, Can you change the line as follows. .Parameters.Add("@percentage", 100) - I think 'Add' Method is enough here. With Regards, Pandian S

    Database help csharp database learning

  • SQL to XML & XML to SQL
    M Member_3269611

    Hi Friend, I Envisage the has two Columns. Private Con As SqlConnection Private Com As SqlCommand Private DSET As DataSet Con = New SqlConnection("Your Connection String") Com = New SqlCommand("Insert Values(@ID,@Name )", Con) '/*** If the TWO column are String Type ***/ Com.Parameters.Add("@ID", SqlDbType.VarChar, 5) Com.Parameters.Add("@Name", SqlDbType.VarChar, 50) DSET = New DataSet() DSET.ReadXml("WW.xml") Dim R As Int32 Con.Open() For R = 0 To DSET.Tables(0).Rows.Count - 1 Com.Parameters("@ID").Value =DSET.Tables(0).Rows(R)(0) Com.Parameters("@Name").Value =DSET.Tables(0).Rows(R)(1) Com.ExecuteNonQuery() Next Con.Close() With Regards, Pandian S

    ASP.NET database xml

  • How to pass values to a pop up web form2 from another webform1
    M Member_3269611

    Hi Friend. in WebForm1 ----------- Dim Send_Data set Send_Data = createobject("Microsoft.XMLDOM") Send_Data.load "WebForm2.aspx?popup='data'" In WEBForm2 ----------- Page_Load ---------- Dim Somewhere Somewhere = Trim(Request.QueryString("popup")) You can use the 'Somewhere' variable to display the result 'data'. With Regards, Pandian S

    Visual Basic help csharp tutorial

  • debug problem in my webpage
    M Member_3269611

    Hi Friend, You can change your Page in Debug Mode as follows 1. Select BUILD Menu. 2. And Select CONFIGURATION MANAGER. 3. Change to 'Debug' in 'Active Solution Configuration' Combo. 4. And also Change to 'Debug' in 'Configuration' column in the Grid. 5. Click Button 'Close' Now You can Debug Your page. Otherwise the Cursor will not be allowed to Break on your Breakpoint. With Regards, Pandian S

    .NET (Core and Framework) asp-net debugging help 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