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

MBGeorge

@MBGeorge
About
Posts
7
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • databinding over remoting
    M MBGeorge

    Try using one event so the other clients know that they need to refresh their data. I don't think u have a refference to the data, but u have a ref to the object, so the properties of ur client ref object will change when u call them again, not when some other client set them .You still have to deal with concurency. I hope u undestand, my english is bad.

    .NET (Core and Framework) tutorial sysadmin question

  • Bulk Copy Tables from .net to sql
    M MBGeorge

    To transfer/export/update ur data u could use SqlDataAdapter , witch is viable for small opeartions. If u plan to transport/export large number of rows u have 2 options : 1. u can create a dts on ur sql server who use as entry data a txt file separated with tabs. This file u can create from ur app and then call ur dts (use DTS - namespace, u must add msdts.dll ( i think ) as ref ) 2. use bulk insert with a user with rights to bulk insert on sql server , using as data source a txt file. ( use SqlCommand and bulk insert from T-Sql) If sql server is on other machine, u will need a way to transfer ur files to that machine. Hope that helps.

    Database database csharp css sql-server sysadmin

  • Get Excel-Word ref
    M MBGeorge

    Is any way i can get a refference to a allready running Excel/Word application from c# and use that ref to work on the open document ?

    C# csharp question

  • Add thousand separator and keep decimal precision
    M MBGeorge

    You could use something like that ... string m_value = "12347890123456789,57"; string strhi = m_value; string strlow = ""; int DecLocation = m_value.IndexOf(","); int StrLen = m_value.Length; if ( DecLocation >=0 ) { strhi = m_value.Remove(DecLocation,StrLen-DecLocation); strlow = m_value.Substring(DecLocation+1,StrLen-DecLocation-1); m_value = Separ(strhi)+","+strlow; } else m_value = Separ(m_value); private string Separ(string str) { int i = str.Length/3; int maxlen = str.Length; if ( i*3 == maxlen) i--; string newstr = str; for(int j=1;j<=i;j++) newstr=newstr.Insert(maxlen-j*3,"."); return newstr; }

    C# question

  • Crystal Report throw and exception??
    M MBGeorge

    try using this, http://support.businessobjects.com/communityCS/TechnicalPapers/crnet_deployment.pdf[^] for me it worked.

    C# help csharp dotnet com question

  • Fetch file system info
    M MBGeorge

    U can obtain that using WMI. try on www.csharphelp.com/arhives3/arhive585.html?ptintable=yes. Is 2nd part for WMI and there u will find a full application source code - see list of logical drives in that app. Hope this will help u .

    C# question

  • Host app in C#
    M MBGeorge

    Anyone have any ideea how to host other application in .net ? I start the word/notepad/cmd using process but i want my app to host it not the windows, something like mdi forms; when i minimize the hosted app i wanna go at base in my form not in windows. Thanks in advance .

    C# csharp 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