- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 26
- Posts with Upvotes
- 22
- Upvoting Members
- 16
- Downvotes Received
- 10
- Posts with Downvotes
- 7
- Downvoting Members
- 10
I cannot be put into a nutshell.
- Interests
- Anything that can be feeded to my brain
- PC Specs
- A PC with 500 GB HDD and 4 GB RAMAnd with two 1 TB External HDD.
Re: >You should pick something that you're interesting in and excel at that before you go and tackle the worlds problem with regards to computing. what **@phorce** said, is 100% right according to me. Once you excel in one field, you will automatically know which one you want to excel next... … | |
Friends I have completed my engineering in India and now working as a software developer. I am now planning to undergo my higher studies abroad. But I am really got confused on the universities there and every one I asked told different universities as the best one. I want a … | |
Re: For all here there is one point i need to say... For all the software we know, There is a crack... So, For personal use and learning purpose go for crack... For professional use, say Yes to License for better support.. | |
Re: A good day to die Hard | |
I am trying to get the width and height of the uploaded html file. This is what i have done so far. WebBrowser wb = new WebBrowser(); int ht,wd; wb.Navigate("D:\\page1.HTM"); ht = wb.Height; wd = wb.Width; But the above code always return me the wrong size of the page. Can … | |
Re: First is the fastest among all...Because it uses one bitwise and one arithmatic operator.. Next comes the second. 2 bitwise and two arithmatic operator. The code with highest time complexity is third. Once my teacher taught " It looks like simple, but When ever a multiplication code is called the … | |
Re: **@Stuugie,** **FYI:** There are several areas where we nweed to import or export inside an application. Even I had went accros the problem. Recent times, some clients of our company also asks application with features like these. **@gayzlein,** It can be done my friend. I have done that using c#. … | |
Re: I also tried that vibosoft... Its like hell and its purely a waste of money... I suggest you to try recuva itself... As @**Rik from RCE** said, the crash of recuva is like a miracle. It seems like recuva is trying to restore a viral file where as your antivirus … | |
Re: Google it...Lot of sample projects are already available... and then try it... If u have any problem then post your problem... | |
Re: Are you displaying in a grig? | |
Re: Once i too was in a same confusion about the java and C#. Because I am specialized in Java whereas I got the Job in c# platform. I planned to stay there at the company till training period. But now over a month is passed and I am loving it. … | |
Hello friends, I am using sql server 2005 as a backend. I want to filter the datagrid based on fromdate,todate,companyname,employee name. I have done the date filter's.... The problem is with the other two filters. The actual problem is.. The application has to filter based on company only if the … | |
Re: If my memory serves right, for the following code, string sqlCommand = "SELECT * FROM TABLE"; string connectionString = "blahblah"; DataSet = GetDataSet(sqlCommand,connectionString); GetDataSet() { //...? } you need to code something like the following public DataSet GetDataSet(string ConnectionString, string SQL) { SqlConnection conn = new SqlConnection(ConnectionString); SqlDataAdapter da = … | |
Re: very simple my friend. First add a dummy ID in the databse for eg, empid empname 1 admin then before insert find the max(empid) then add one to it. and include it in every query you process. This can be done in frontend. I am not the one who can … | |
Re: Well said **@Stuugie**.. Just to add, you can also use a new table. The only rule to follow, while designing the structure of the table, is to assure that the problem which you are currently facing, will not occur on the future. If you are a well planner, you can … | |
Re: For an update, You can use **image** datatype. Hope it will be precise for the operation... And also post the relevant codes as Ketsuekiame said. It will save a considerable amount of time. | |
Hello friends, I am having a HCL PC in my home with configuration of 120GB HDD, basic graphics memory, Core2Duo processor and with 1 gb of RAM. Now I am planning to do some upgrades to it. First of all, I am planning on DVD writer(already out). Then to the … | |
Re: I have a suggestion here... Instead of doing like this, why cant to add a javascript that allows only numbers to be added in the control? Because it saves the validation time and provides more simplicity... | |
Hello friends, I had done some questions regarding function call. I had done an console application that can run a particular set of code every minute. For that i used System.Threading.Thread.Sleep(60000); That worked well too. But now i stuck in another problem. Now I dont wanna use the above code.Because … | |
Re: In Tamil there is statement,"Manusana ivan!!!" I hope that suits you well **@JorgeM**... It means, You are a beast in knowledge... | |
Re: Instead of writing it in initialize event, write the code in the combo change event... and to get the value from the particular cell in an excel sheet, you have to something which refers to the particular cell like Dim oApp As New Excel.Application Dim oWBa As Excel.Workbook = oApp.Workbooks.Open("c:\Test.XLS") … | |
My friends I was working on the concept like a user can upload his image as a user avatar, and that should be shown in all his pages. I have two pages namely get.aspx and show.aspx get.aspx contains image file uploading and saving the records in database. show.aspx is to … | |
Re: I suggest you to see this link... [See here](http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx) Hope this helps you... Have a happy coding...:-D | |
Re: My friend, you stated that you are selecting a record from grid. Which control are you using? Is it a checkbox? | |
Re: What antivirus are you using? or first did you installed antivirus program in your system? | |
Re: are you using a button or a checkbox to select the autocomplete option in your form? | |
Re: Based on your question, I think you are a noob to asp.net. Anyway,I wanna ask a questions. 1) According to your code, you are using text command(query). Then why should it provide a error like that(such as procedure not found exception)? Soln: try to create it on your own. no … | |
Re: >stringSQL4 = "SELECT * INTO " & Text5.text & " FROM " & Text5.text & " IN '" & Text3.text & "';" **** Explanation ============ The select * into table1 from table2 where 1=1 creates table1 and inserts the values of table2 in them. So, if the table is already … |