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
I

Ice_Freez05

@Ice_Freez05
About
Posts
33
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • CCITT4 compression
    I Ice_Freez05

    thank you very much man... ;)

    C# question

  • CCITT4 compression
    I Ice_Freez05

    i've already installed vs2008 in winXP.I believe that .Net framework 3.5 is already included in vs2008. and the CCITT4 compression is included in vs2008. so I don't have to use a third party software or dll.is there anyway i can make the compression in winXP...thanks...

    C# question

  • CCITT4 compression
    I Ice_Freez05

    I am developing a small image editing program and the output is in a compress tiff file.my program runs well in my workstation which is win7 but when i try to run my program in winXP,it throws an exception "paramater is not valid".the exception is caused by my compression that am using,which is CCITT4.is there any other way to make CCITT4 work in winXP? thanks a million guys...

    C# question

  • Help! URGENT
    I Ice_Freez05

    am sorry abnout that...my deepest apology...

    C# help question

  • Help! URGENT
    I Ice_Freez05

    I am developing a small image editing program and the output is in a compress tiff file.my program runs well in my workstation which is win7 but when i try to run my program in winXP,it throws an exception "paramater is not valid".the exception is caused by my compression that am using,which is CCITT4.is there any other way to make CCITT4 work in winXP? thanks a million guys...

    C# help question

  • need help...(urgent)
    I Ice_Freez05

    I'm cropping an image and after i cropped the image,i want to put the image in a container as thumbnail...can anyone help me...how can i refresh the directory / folder where the image i cropped was save...thanks in advance guys...

    C# docker help question

  • convert String to Decimal
    I Ice_Freez05

    hello there... try this link...http://www.csharp-examples.net/string-format-double/[^] hope this help...

    C# help tutorial question

  • Converting a string value to int
    I Ice_Freez05

    try this code...

    private string getDecodedKey(string strKey)
    {
        string strTemp = string.Empty;
        string\[\] strSplitKey = strKey.Split(' ');
    
        foreach (string strHex in strSplitKey)
        {
            try
            {
                    int intVal = Convert.ToInt32(strHex, 16);
    
                    strTemp = strTemp + Char.ConvertFromUtf32(intVal);
    
            }
            catch
            {
                strTemp = strTemp + strHex + "GET DECODED KEY";
            }
    
        }
        return strTemp;
    }
    
    C# csharp question help

  • Upload data from excel file to databse.
    I Ice_Freez05

    you can also upload excel file through SSIS which is included in MS SQL Server 2005.

    C# csharp question

  • Insert 2 textbox text in one field
    I Ice_Freez05

    qty.Text + " " + rate.Text

    C# help

  • Insert 2 textbox text in one field
    I Ice_Freez05

    try declaring a string variable and pass the value of two textbox.text in the declared variable... string strTxtVal = ""; strTxtVal = qty.Text + rate.Text;

    C# help

  • referencing dll
    I Ice_Freez05

    try this ... [DllImport("DLL_NAME.dll")]

    C# question

  • system language
    I Ice_Freez05

    try this one... string strLangName; strLangName = Thread.CurrentThread.CurrentCulture.Name;

    C# question

  • How to fetch file from a folder within.the application
    I Ice_Freez05

    try using Application.ExecutablePath and strip off the .exe file. For example: get the full name of the directory containing your .rpt file. string strExeName = Application.ExecutablePath; FileInfo fleExeFileInfo = new FileInfo(strExeName); string strExeDirName = fleExeFileInfo.DirectoryName; then get the parent directory of the .rpt by using... string strParentDir = fleExeFileInfo.Directory.Parent.FullName; hope this helps....

    C# csharp help tutorial question

  • Object reference not set to an instance of an object
    I Ice_Freez05

    thanks a bunch for your help and detailed explanation.;)

    C# debugging help

  • Object reference not set to an instance of an object
    I Ice_Freez05

    i'm sorry...my mistake...the problem is not the function returning a null or zero value. i've pasted the code above your reply.can you please help me figured out the problem...thanks again..

    C# debugging help

  • Object reference not set to an instance of an object
    I Ice_Freez05

    thanks a lot for your help.i've found the error... public int getRequestedFunctionID(string strFunctCode) { SQLiteCommand SQLComm; SQLiteDataReader sqlDR = null; int intFuncNameID = 0; string strSQL = "SELECT FuncNameID " + "FROM tblFuncName WHERE FunctCode = '" + strFunctCode + "'"; try { cnn = new SQLiteConnection(strConn); cnn.Open(); SQLComm = new SQLiteCommand(strSQL, cnn); sqlDR = SQLComm.ExecuteReader(); sqlDR.Read(); if (sqlDR.HasRows) { intFuncNameID = Convert.ToInt32(sqlDR["FuncNameID"]); } } catch { intFuncNameID = 100; } finally { sqlDR.Dispose(); cnn.Close(); } return intFuncNameID; } this is where the error is coming from...can you tell me what's the problem with this code?thanks again... by the way, i'm calling that function in the main module..like so.. int intFunctID = cProc.getRequestedFunctionID(strFunctCode);

    modified on Wednesday, April 21, 2010 4:58 AM

    C# debugging help

  • Save XML
    I Ice_Freez05

    try renaming the modified xml document.like original filename + date modified.

    C# xml tutorial

  • How to search Special Character in sql server 2005? [modified]
    I Ice_Freez05

    try this link...http://sqlserver2000.databases.aspfaq.com/how-do-i-search-for-special-characters-e-g-in-sql-server.html[^]

    C# database sql-server sysadmin tutorial question

  • Object reference not set to an instance of an object
    I Ice_Freez05

    Thank you very much for the reply..but i've already done that but to no avail,i still can't seem to find where the error is coming from.. :(

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