Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jl3574

  1. jl3574

    Not strictly a C# question, but...

    use sourcecontrol SVN I do this setup for my work. on the SERVER install Visual SVN SERVER (free) your scenario install it on SERVER B. create a folder name it whatever you want using Visual SVN. then on SERVERA download & install(tortoise SVN- free software. install it on SERVER B also) once...
  2. jl3574

    Removing Deleted Rows?

    use DBCC CHECKIDENT to reseed after delete this will set your id to where ever you left off. http://blog.sqlauthority.com/2007/03/15/sql-server-dbcc-reseed-table-identity-value-reset-table-identity/
  3. jl3574

    Sql connection time out error; fix with reboot

    I have a windows 2008 server running sql server 2008 and runs perfectly fine call this SERVER1. SERVER1 also is setup with running WEBserver IIS, DHCP, and DNS. I just set up another server running windows 2008 call this SERVER2. On Server2 i install sql management studio and runs perfectly...
  4. jl3574

    image processing convert error from pixelink camera

    hi, i have a pixel link camera which has built in api used for .net programming. the function captures an image from the camera using c# IT GENERATES A byte[] dstBuf OF SIZE FOR THE SPECIFIC PICTURE FORMAT. WHEN I HAVE THE FORMAT AS 200X200 FOR A BMP IT SHOULD BE BYTE[40000] HOWEVER IT...
  5. jl3574

    Converting coding to (I/O card) signal

    I received the I/O card and i read the manual on there it contains API library in c/c++ code and examples. If i wanted to communicate from my c# form to the I/O card do i modified one of these c++ example code (create a dll) and reference it in my c# code. I read i also need a (Pinvoke) method...
  6. jl3574

    Reading picture IO Exception

    Icreated at thread: ThreadPool.setMaxThread(50,50); for(int i=0;i<50;i++) { threadpool.queueUserWorkItem(new WaitCallback(doWork)); } void Dowork() { while(true) { //i even tried you 2nd method with File.Move System.IO.File.Move(sourcefile,newfilelocation); using(filestream stream =...
  7. jl3574

    Reading picture IO Exception

    Hi, I created a thread that runs continously that reads a picture from a folder. this picture is being read 50times per second. I have a camera where the software is set on trigger mode(50ms) it constantly takes a picture and reaplces the old one in the same location. while i am reading this...
  8. jl3574

    Timer or Thread

    I am reading an image from a folder location. This folder is connected to a camera which a software will constantly takes a picture and replaces the picture in the folder. I have to write an app that is in a continous loop and reads this image. The goal is to read this image 200 CPS (compute 200...
  9. jl3574

    Converting coding to (I/O card) signal

    I am developing a control application which thru a series of calculation the output is a number (int) this number will communicate with a industrial robot (ABB). The number will be a voltage number which will tell the robot to change the power higher or lower. The programming end is done...
  10. jl3574

    Do not want to auto focus on Cursor

    stupid me, acutally what was causing it was a timer i created on startup to simulate a clock and it would cause the screen to refresh it's focus. To fix the problem i used a thread instead of a timer!
  11. jl3574

    Do not want to auto focus on Cursor

    Hi All, I have a windows app with a panel with 5 rich text box. the panel has autoscroll on so the scroll bar shows up. When i click on the first richtextbox and drag the scroll bar to the bottom ,it will auto scroll back to top to focus where the cursor. is there a way to turn off focus to...
  12. jl3574

    windows 7 error joining windows 2000 domain

    Yes i have tried removing the machine from the domain , deleted user and rejoin and still error. however i did found a way around it by joining the domain through command line. add-computer -domain username -cred domain\username
  13. jl3574

    windows 7 error joining windows 2000 domain

    Hi i have a DC/AC on a WIndows 2000 server machine. I am trying to connect my laptop running windows 7 pro to the win2000 domain. Steps i took .. my computer properties -> network ID ->join computer is part ofbusiness network ->comoputer uses a network with domain ->enter...
  14. jl3574

    My DataGridView Not return all rows from Sql Statement

    The reason why i have two sql statement is that i have a combobox as one of the column which datsource is from the second set of datatable. However i will try to add Dispose() Command instead of Close() and adding a try catch block with sqlconnection.dispose(). I Hope this works thanks.
  15. jl3574

    My DataGridView Not return all rows from Sql Statement

    Here is the full code of the function. public void TestLoadDataGridView(string select, bool nonactive) { //the string select is the sqlstatement. bool nonactive shows you different types of table example sql string would be like this : string sql = "SELECT DISTINCT WOID.WOID, SOID.Customer...

Part and Inventory Search

Back
Top