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
T

The_Collector

@The_Collector
About
Posts
58
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Integrate WebCam in ASPX
    T The_Collector

    i guess so... i'l try to reach d programmer of this dll or look for another dll.. thanks.

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    its a camserver.dll which doesn't give any error numbers or description, just this error....

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    i dont understand... but anyway, thanks for your effort.... just want to have a clearer answer on this things...

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    this is a windows application,,, Im looking for ASPX page. thank you

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    the words in BOLD is d ERRROR... "ERROR GrabFrame()"

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    the words in BOLD is d ERRROR... "ERROR GrabFrame()"

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    yes i did... now i have another error... "ERROR GrabFrame() //Jpeg compression quality short nQuality = 45; //Shout a picture from my webcam CAMSERVERLib.Camera cam = new CAMSERVERLib.CameraClass(); byte[] picture = (byte[])cam.GrabFrame(nQuality); ---> "ERROR GrabFrame(). //Add the hour to the jpeg picture MemoryStream ms = new MemoryStream( picture ); Bitmap bmp = new Bitmap( ms );

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    I already registered the Dll but it gives me an error.. May i know how i solve it.. "Retrieving the COM class factory for component with CLSID {D6BA1539-8473-497C-92C3-8ECF63DAC0F3} failed due to the following error: 80040154." tnx.

    xxx

    C# help

  • Integrate WebCam in ASPX
    T The_Collector

    Hello everyone, A lot of examples that are given in this type of problem but i didnt found the working solution. My problem is to create an ASPX page that will capture an image from a webcam. I know there its hard to find simple solution but i'l be asking f someone can provide me one simplified solution regarding this problem.. im no expert in writing a web page thing. thank you in advance.

    xxx

    C# help

  • Creating UDL...
    T The_Collector

    I load and unload the DLL everytime i change the server. the steps are: 1. Load DLL calling the UDL. 2. Process and store the data locally using XML format. 3. Unload DLL. 4. Change UDL server. 5. Load again the DLL...go step 2....

    xxx

    C# question sql-server sysadmin

  • Creating UDL...
    T The_Collector

    Hello everyone... I'm presently creating an application using a customized DLL from our original system. the said DLL uses UDL directly from "C:\" root directory to connect to MSSQL server... The new application will process the data through the said DLL and will connect to different MSSQL servers but will only use 1 UDL. My 1st attempt was to create a UDL directly using "StreamWriter" so that the new application can dynamicaly change the server name but it did not work... I compared the UDL created from a streamwriter against the one created in notepad but i found no diferences between the two..... How can i make a dynamic UDL file that can be used by the said DLL? thank you in advance ang more power...

    xxx

    C# question sql-server sysadmin

  • Custom Busy Window.
    T The_Collector

    Thank you very much for the link,,, i havent tried it yet but i really appreciate the efforts you mad... thank you again.

    xxx

    C# tutorial question

  • Custom Busy Window.
    T The_Collector

    You posted a lot,,, it really helps and I want to thank you for this effort... thank you again

    xxx

    C# tutorial question

  • Custom Busy Window.
    T The_Collector

    The window should be modal to prevent the user from making any action while it is processing... I tried to making a separate window with animated GIf and called it under another thread but it still doesnt work.. can you give me a sample how will i do it.. thanks in advance..

    xxx

    C# tutorial question

  • Custom Busy Window.
    T The_Collector

    Gud day everyone.. There are only two common suggestions in the internet on how to inform the users when program is busy : 1. backgroundworker 2.threading... i want to make my own modal window with animated GIF in it. said window will display during processing and it will stop after the process. how will i do it? can anyone give me a sample.... thanks in advance.

    xxx

    C# tutorial question

  • MSSQL 7 Decryptor
    T The_Collector

    Hello everybody... Anybody who can share how to decrypt a stored procedure of MSSQL 7?

    xxx

    Database database sql-server tutorial question

  • Crystal report subreport error...
    T The_Collector

    I don't know f u read my post very well or u just don't understand.... i already put the entire code block in my post....

    xxx

    C# database sysadmin help

  • Crystal report subreport error...
    T The_Collector

    I'm currently using VS2005 Crystal report... I cant pass the parameter from Main report to its sub report.... it always encounter an error "@pParameter" value expected I can successfully display a crystal report with parameters but it will fail when it involves subreports.... I don't understand also why I cant display the above parameter but i noticed it runs successfully because it will display the expected output... hope to here some1 who can share thier ideas.. Thank you below is the code: string reportName = Session["ReportName"].ToString();             string reportDate = Session["ReportDate"].ToString();             string reportType = Session["ReportType"].ToString();             rpt.Load(Server.MapPath("~/Reports/" + reportName.ToString()));             crConnectionInfo.ServerName = Session["MyServer"].ToString();             crConnectionInfo.DatabaseName = Session["myDatabase"].ToString();             crConnectionInfo.UserID = "myUser";             crConnectionInfo.Password = "myPassword";             crDatabase = rpt.Database;             crTables = crDatabase.Tables; CrystalReportViewer1.ReportSource = rpt;             ParameterDiscreteValue discreteBranch = new ParameterDiscreteValue();             ParameterFields paramFields = new ParameterFields();                         ParameterDiscreteValue paramDiscreteBranch = new ParameterDiscreteValue();             ParameterField paramFieldBranch = new ParameterField();             paramFieldBranch.Name = "@pBranchCode";             paramDiscreteBranch.Value = Session["branchCode"].ToString();             paramFieldBranch.CurrentValues.Add(paramDiscreteBranch);             paramFields.Add(paramFieldBranch);             ParameterDiscreteValue paramDiscreteTranDate

    C# database sysadmin help

  • Monitor outgoing SMS message initiated from Mobile phone connected to PC.
    T The_Collector

    Hi everyone.... There a lot of examples in the internet that discussed how to send & received SMS messages using GSM modem, messages that are initiated from PC and not from mobile phone... But i never find any program that will monitor outgoing SMS messages initiated from Mobile phone connected to pc.... There are some mobile phones especially china-made mobilephones that don't have an outgoing records stored either in SIM or in Phone memory. I really want to know every message that comes IN and OUT in the mobile phone which is connected in my PC.... Thanks in advance....

    xxx

    C# performance tutorial

  • Embed and manipulate Excel sheet
    T The_Collector

    thank you for your emmediate reply... how can i display only columns A and B... hidding the rest of the columns?

    xxx

    C# database wpf business json tutorial
  • Login

  • Don't have an account? Register

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