4,901 Posted Topics

Member Avatar for ᗩᒪEEᖴ02

You could try opening a command shell as Administrator and typing cacls foldername /e /g everyone:full Then you can copy the folder/files to a FAT32 formatted drive. This will copy everything but the ACLs. Delete the original folder then copy it back from the FAT32 drive. If running as Administrator …

Member Avatar for Reverend Jim
0
353
Member Avatar for Amr_3

You can find that [here](http://lmgtfy.com/?q=What+are+the+ASP.NET+MVC+prerequisite).

Member Avatar for Reverend Jim
0
574
Member Avatar for Reverend Jim

I got a call from recently from someone claiming to be a Dell tech rep. He said my laptop was reporting multiple errors. Realizing immediately that this was a scam I let him continue while I started a Windows 7 Virtual Machine session. Because I had some free time I …

Member Avatar for cereal
0
463
Member Avatar for cereal

If you are only interested in the number of rows of something then do SELECT COUNT(*) FROM test [WHERE...] Doing SELECT SQL_CALC_FOUND_ROWS * FROM `test` is a waste. In the first case, all the db has to return is the record count. In the second case it has to return …

Member Avatar for cereal
0
3K
Member Avatar for DHARAMRAJ_1

Please show your code. If there are errors with Connection.Open then it may be related to your connection string so please also post details about your database setup.

Member Avatar for Reverend Jim
0
73
Member Avatar for Satyam_1
Member Avatar for Anshul_2

Technically any file format, as long as it is structured, qualifies as a database (excel, csv, txt, xml) but i suspect that you will be expected to use an actual database. Since you already have Excel then you likely also have Access so I recommend that.

Member Avatar for Dani
0
176
Member Avatar for Dani
Member Avatar for Paul_51

The Microsoft documentation for the use of embedded WMP is obtuse at best. It describes the pieces without giving any useful information on how to use them. Having said that, I have not found a way to enable/disable the individual controls. They appear to be managed by the object itself …

Member Avatar for Reverend Jim
0
860
Member Avatar for vinodvinu

I recently rebuilt a friend's PC. He had dual boot Vista/Win7. All I had to do was run `msconfig`, go to the `boot` tab and remove the Vista entry. Once I had done that I was free to delete all of his Vista folders.

Member Avatar for Reverend Jim
0
384
Member Avatar for Dani

As far as I know you cannot do this with a bulk insert, only a regular insert.

Member Avatar for Geek-Master
0
420
Member Avatar for Chris_38

Whenever I am asked, "what language should I learn first", my answer is always, "English". Being able to communicate effectively is going to be your biggest asset. For example, your thread had the extremely uninformative title of "need help". As an effective communicator you should have taken the time to …

Member Avatar for Dani
0
463
Member Avatar for Sherwin_4

I get about 600,000 results if I google `how to do recursion in c++`. Have you looked at any of those?

Member Avatar for Chris_38
0
364
Member Avatar for Mark_64
Member Avatar for MICHELE_1
Member Avatar for John_145

You could always go to [Rosetta Code](http://rosettacode.org/wiki/Category:C%2B%2B). That link will take you to the C++ page with a list of problems with sample code. You could look at the problem definition (there are a large number of problems), try to code up a solution, then refer to the given solution …

Member Avatar for rubberman
0
393
Member Avatar for wilsonchama

That seems like an odd error considering that you don't have a parameter named `@name`. Are you sure there isn't a typo in there? Please add the following code just above Comm.ExecuteNonQuery and post the output here For Each item In Comm.Parameters Debug.WriteLine(item.parametername & " = """ & item.value & …

Member Avatar for Mr.M
0
1K
Member Avatar for iriah

After you create the query but before you execute it add the following line Debug.WriteLine(query) then post the output here. You also might want to have a look at [using paramterized queries](https://www.daniweb.com/software-development/vbnet/code/445801/use-parameterized-queries-to-avoid-sql-injection-attacks).

Member Avatar for Mr.M
0
5K
Member Avatar for Diogo_1
Member Avatar for rubberman
0
962
Member Avatar for Saboor_1

And you could charge him a fee for the installation and configuration and possibly a bit of training. If he is happy with the service he will likely return when he needs more help.

Member Avatar for rproffitt
0
260
Member Avatar for cereal
Member Avatar for Reverend Jim

I was looking for an Excle/vb.net code snippet that I posted a long time ago. I went to advanced search and selected `Programming` and `code snippets` with the search string `Excel`. The only hits that I got were member names containing `Excel`. I replaced `Excel` with `Reverend Jim` and got …

Member Avatar for Dani
1
417
Member Avatar for Jeah_1

Please read [this thread](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question) for suggestions on how to post meaningful questions. Keep in mind that we expect you to show what you have done so far.

Member Avatar for slate
0
176
Member Avatar for Dani
Member Avatar for Dorcas_1

If you put a little effort into asking a proper question I'm sure you will get some useful feedback. In the meantime please read [this thread](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question) for suggestions on how to post meaningful questions.

Member Avatar for ddanbe
0
196
Member Avatar for Siberian
Member Avatar for Dani

>Does anyone see a use to this? Is anyone even using chat? Doesn't look like it based on reviewing the logs. I don't see the ROI potential here. I think you are more likely to just get more HELP HELP HELP URGENT!!! types who don't want to wait for an …

Member Avatar for Dani
0
470
Member Avatar for jiya_1

You can start by being more helpful when you post. For example, you said you gave it 40mb and now the space is showing 20gb. That statement is confusing if not meaningless. 1. how big is your physical drive 1. how is it currently partitioned 1. how much free space …

Member Avatar for Reverend Jim
0
171
Member Avatar for Kashmala_1

You could make an NxM array of buttons or pictureboxes at run time depending on your other requirements. Both allow you to set an image to display. Please refer to [this article](https://www.daniweb.com/programming/software-development/code/423678/create-controls-at-run-time-with-events) on how to create controls at run time. One advantage is you can use the same handler for …

Member Avatar for Reverend Jim
0
209
Member Avatar for mark_62
Member Avatar for Stefce

I can see several issues off the top of my head such as - You may have to guarantee that your drive is available 24x7. What provisions would you have to make in the event of a failure (hardware or software) - Would you have to guarantee any type of …

Member Avatar for Reverend Jim
0
528
Member Avatar for Alana_1

You can load an image into a picturebox by Dim fs As New System.IO.FileStream(filename, IO.FileMode.Open, IO.FileAccess.Read) pbxPicture.Image = System.Drawing.Image.FromStream(fs)

Member Avatar for Reverend Jim
0
217
Member Avatar for kes166

When you declare an array in vbScript the indexes go from 0 to the number declared. As silly as that may be, it works the same for vbScript and vb.Net. Feel free to post any more vbScript questions you may have. It was my main programming language for about 8 …

Member Avatar for Reverend Jim
0
318
Member Avatar for Jan_8

There is an article on how to create vb.net controls with events at runtime [here](https://www.daniweb.com/programming/software-development/code/423678/create-controls-at-run-time-with-events). After you read it please feel free to post any questions you have here. I realize that you are coding in C# but the technique is the same. I'll try to code up a C# …

Member Avatar for Reverend Jim
0
163
Member Avatar for Valentine_1

Please consider that when you just post a homework assignment verbatim you are possibly in violation of some sort of copyright. Also please note that nowhere in your post is there any question actually coming from you. To us it looks like: >Here's my homework assignment. I'm too bloody lazy …

Member Avatar for Reverend Jim
0
585
Member Avatar for Sergio_5

Are you actually unable to read any of the dozens of books or hundreds of introductory web sites that show you how to do this? You are too lazy to Google this yourself, but you expect someone here to spoon feed you the answer to such a simple question.

Member Avatar for Reverend Jim
0
246
Member Avatar for Reverend Jim

I frequently find myself looking for files on my computer. 99.9% of the time I am looking for a file by name rather than by contents. Typically there are two ways to find a file when you don't know what folder it is in. You can do it from the …

Member Avatar for rubberman
2
680
Member Avatar for Nazneen_1

Here's an example of how to [export data from a ListView to Excel](https://www.daniweb.com/programming/software-development/code/464769/export-listview-to-excel-spreadsheet) but it doesn't use OleDb.

Member Avatar for Reverend Jim
0
372
Member Avatar for Aleš_1
Member Avatar for Justin Kent
Member Avatar for tinstaafl
0
523
Member Avatar for irbaaz
Re: C++

You have to declare your strings to have enough space to hold the longest expected string. Since you declared only one char for name (for example), any unused input chars are used to fill input requests for the other input variables. Try something like char[50] for name, etc. As written, …

Member Avatar for rubberman
0
279
Member Avatar for Reverend Jim

I'm having issues with my TrendMicro anti-virus software where my disk activity hits 100% for 10-15 minute periods randomly throughout the day. TM tech support has made a few suggestions but in order to track their effectiveness I have to monitor my disk activity in such a way that I …

Member Avatar for Reverend Jim
0
467
Member Avatar for Mohammad_32

Please provide more detail and show us what work you have done so far.

Member Avatar for Reverend Jim
0
91
Member Avatar for Peter_36
Member Avatar for JamesCherrill
0
491
Member Avatar for sharjeelmumtaz
Member Avatar for abhranil

As a self-confessed beginner you have a lot of work to do before you can get on a real project.

Member Avatar for Dave_15
0
310
Member Avatar for shubham_8
Member Avatar for hinaraees

Can you please be clearer on what you mean by "ethical hacking"? It sounds like an oxymoron to me and the word, hack, has been so horribly misused in recent years as to be practically meaningless.

Member Avatar for happygeek
0
441
Member Avatar for Dani
Member Avatar for Matthew_17
4
388
Member Avatar for Jen_3

Is it part of your desktop wallpaper? Does it appear when you boot into safe mode? What if you log on as `Administrator`? On most Windows systems the Administrator account is not active. In that case, open a command shell as Administrator and type net user administrator /active:yes The next …

Member Avatar for Reverend Jim
0
464

The End.