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
N

nesfrank

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

Posts

Recent Best Controversial

  • javascript regular expression
    N nesfrank

    thank you. excellent. how can that be con verted in c#?

    ASP.NET javascript regex help question

  • javascript regular expression
    N nesfrank

    I have this reg expression on javascript that checks for poboxes. how can I chnage it to map only for starting string and not anyqwhere on the string b/c if address is seAPOrt then it treats as a po box: var poboxPattern = new RegExp("(APO|A\.P\.O\.|A P O|FPO|F\.P\.O\.|F P O|POB|P\.O\.B\.|POBOX|P\.O\.BOX|PO BOX|P O BOX|P\.O\. BOX|POST OFFICE)"); Please help

    ASP.NET javascript regex help question

  • binary trees and traverse
    N nesfrank

    he did covbered in lectures in c language but I do assignment in Csharp sp to make the assignment I need to have already a class that stores the data in a binary tree fashion. do we have any built in or already written class by others. yes, Once I have that I can write a recirsive routine to do the type of traverses u mentioned above.

    C# help question

  • can not find file vjslib.dll
    N nesfrank

    thank a lot. I will let u know if that fixes the issue.

    C# sysadmin help question

  • can not find file vjslib.dll
    N nesfrank

    I am using c# but since it doesn't support the zip I use that library. it is not on the server so please tell me what to do if u know it.

    C# sysadmin help question

  • can not find file vjslib.dll
    N nesfrank

    exactly. My application is c# but am using that library for zip features so my question is where can I download that particular package that contains only that library and its dependencies?

    C# sysadmin help question

  • can not find file vjslib.dll
    N nesfrank

    Hi Guys, I am doing an application that deals with zip and unzip and am using j# libraries vjslib.dll which work really great on my machine but when deployed on server I get the message vsjlib can not be fouund. Is there any service pack or link that I can download the whole vjslib.dll along with its dependencies? Please help!

    C# sysadmin help question

  • regular expression cleanup!
    N nesfrank

    hi guys, I need to clean up a string what this function below does but sometimes this is too slow and I have been told that for best performance regular expression will do much a faster job. Is there anyway to write a regulatr expression that cleans what the function below does? Please help guys! Thanks Frank private string CleanString(string strValue) { // See Above CString() Function for ASCii Denotations. string strReturn = strValue; for(int x=0; x < strValue.Length; x++) { char charTmp = strValue[x]; string strTmp = charTmp.ToString(); int ASCii = (int)charTmp; // The following blocks system characters (<= 31) save for the // CR (10) / LF (13) needed to preserve Line Returns. It also clears // some specific problematic characters, such as double quotes ("), // semi-colons (;) and html-tag delimiters (<) and (>). if ( (ASCii <=9) || (ASCii == 11) || (ASCii == 12) || ( (ASCii >=14) && (ASCii <=31) ) || (ASCii == 34) || (ASCii == 59) || (ASCii == 60) || (ASCii == 62) || (ASCii == 124) ) { // Strip out these characters as they're encountered... strReturn = strReturn.Replace(strTmp, ""); } // This next step eliminates the ever-annoying shift-space character // as well as a large range of non-used symbol and system characters. if ( ((ASCii >=127) && (ASCii >= 191)) || (ASCii == 215) || (ASCii == 247) ) { // Strip out these characters... strReturn = strReturn.Replace(strTmp, ""); } } return strReturn; }

    C# html regex performance help question

  • binary trees and traverse
    N nesfrank

    hi, do we have any class or library that support the binary trees data structures. what about three ways of traversing. I searched google but I am not convinced based on search result. can someone help me please?

    C# help question

  • Console.write line
    N nesfrank

    here is my code class utility { [STAThread] static void Main(string[] args) { ProcessRecords(); //here I placed the code for redirecting to output as above but it did not work. The function ProcessRecords does have some console.writeline statements }

    C# question career

  • Console.write line
    N nesfrank

    I am sorry but I don't get what neds to happen. can u send me a bit code like console.write line and out put it? please help me if u can otherwise I would have to collect all console.write line in a string builder.

    C# question career

  • Console.write line
    N nesfrank

    is that supported in c# or is it c++? please send me some more details of code pls.

    C# question career

  • Console.write line
    N nesfrank

    I tried this at the very end of main thread but nothing got written //here call a method that does console.write lines //when done do the code below and file is empty FileStream fs = new FileStream(@"c:\out1.txt", FileMode.Create); StreamWriter sw = new StreamWriter(fs); Console.SetOut(sw); sw.Close(); fs.Close(); Please advice with some more details

    C# question career

  • Console.write line
    N nesfrank

    Guys, I have a comnosle application that runs as a job in the middle of the night and displays the info via console.write line. I have a question: Is there any way to eather retrive what is written in the screen and write to a file or is there anyway to dump the content of the screen to a file without having to make many modification where ever I have console.write line Please advice guys! Thanks a lot!

    C# question career

  • linked list in 2.0 and the error:
    N nesfrank

    I used addbefore and addafter. how can I loop to display the items in a console app for the linked lists? I see online saying >ForEachLoop but it does not work,

    C# help data-structures question

  • linked list in 2.0 and the error:
    N nesfrank

    can u give me an example with node? does it accepts object type or only string? please help.

    C# help data-structures question

  • linked list in 2.0 and the error:
    N nesfrank

    Guys, I am trying to do the following but I get some conversion errors. can someone help me please? Class: public class Widget { public string RSP = ""; public int WidgetOrDiscount = 0; public decimal Price = 0.0m; } Console apps: static void Main(string[] args) { //LinkedList<System.String> myList = new LinkedList<System.String>(); LinkedList<Assignment3.Widget> myList = new LinkedList<Assignment3.Widget>(); PopulateData(ref myList); } private static void PopulateData(ref LinkedList<Widget> myList) { //record 001 Widget wdg1 = new Assignment3.Widget(); wdg1.RSP = "R"; wdg1.WidgetOrDiscount=150; wdg1.Price=1.00m; myList.AddFirst(wdg1); //record 002 Widget wdg2 = new Assignment3.Widget(); wdg2.RSP = "R"; wdg2.WidgetOrDiscount = 130; wdg2.Price = 2.00m; myList.AddAfter(wdg1, wdg2); //record 003 Widget wdg3 = new Assignment3.Widget(); wdg3.RSP = "S"; wdg3.WidgetOrDiscount = 145; wdg3.Price =0.00m; myList.AddAfter(wdg2, wdg3); //record 004 Widget wdg4 = new Assignment3.Widget(); wdg4.RSP = "R"; wdg4.WidgetOrDiscount = 50; wdg4.Price = 2.50m; myList.AddAfter(wdg3, wdg4); } Please help me.

    C# help data-structures question

  • is it such a thing LinkedLists in C# ?
    N nesfrank

    thanks anyway. I appreacute any answer :)

    C# question csharp c++ help

  • is it such a thing LinkedLists in C# ?
    N nesfrank

    I do put efforts but I have limited english. all are different. I appreaciate any response but I don't appreciate offense

    C# question csharp c++ help

  • is it such a thing LinkedLists in C# ?
    N nesfrank

    sorry, but if google had it all, this forum will no longer be needed. google searches forums like this. If you have no answer to it better not to response. Noone is born nice and kind but kindness can be earned. Respect yourself and respect others.

    C# question csharp c++ help
  • Login

  • Don't have an account? Register

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