thank you very much man... ;)
Ice_Freez05
Posts
-
CCITT4 compression -
CCITT4 compressioni'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...
-
CCITT4 compressionI 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...
-
Help! URGENTam sorry abnout that...my deepest apology...
-
Help! URGENTI 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...
-
need help...(urgent)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...
-
convert String to Decimalhello there... try this link...http://www.csharp-examples.net/string-format-double/[^] hope this help...
-
Converting a string value to inttry 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; }
-
Upload data from excel file to databse.you can also upload excel file through SSIS which is included in MS SQL Server 2005.
-
Insert 2 textbox text in one fieldqty.Text + " " + rate.Text
-
Insert 2 textbox text in one fieldtry declaring a string variable and pass the value of two textbox.text in the declared variable... string strTxtVal = ""; strTxtVal = qty.Text + rate.Text;
-
referencing dlltry this ... [DllImport("DLL_NAME.dll")]
-
system languagetry this one... string strLangName; strLangName = Thread.CurrentThread.CurrentCulture.Name;
-
How to fetch file from a folder within.the applicationtry 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....
-
Object reference not set to an instance of an objectthanks a bunch for your help and detailed explanation.;)
-
Object reference not set to an instance of an objecti'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..
-
Object reference not set to an instance of an objectthanks 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
-
Save XMLtry renaming the modified xml document.like original filename + date modified.
-
How to search Special Character in sql server 2005? [modified] -
Object reference not set to an instance of an objectThank 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.. :(