To use SQL Server Management Studio (SSMS) you should first install SQL Server 20xx Developer or SQL Server 20xx Express. Do you have either installed in Add/Remove programs?
If not, I'd recommend watching this:
https://www.youtube.com/watch?v=Wr1AViAda3k
You may also consider using LocalDB like shown in the video below, but I always install SQL Server Express or Developer. There's a good chance you already...
User Profile
Collapse
-
If you were binding to an object of List<User> you could add the [Browsable(false )] attribute to the Password property. Alternatively you could do this:
Code:private void FillGrid() { DataGridView1.DataSource = YourDataSource; var passCol = DataGridView1.Columns["Password"]; if(passCol != null ) { DataGridView1.Columns[passCol.Index].Visible
Leave a comment:
-
danp129 replied to How to Get HardWare Information from CPU like Temparature,Voltage,FanSpeed. code in .in .NETIf you don't want to right-click and run-as administrator you can do this:
In your app.manifest, set the requestedExecut ionLevel to this:
Code:<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
Leave a comment:
-
lgm001,
Your rule "fieldset.d iv" doesn't do anything, it should be called "fieldset div" to select div elements below a fieldset element. When I make that change it breaks your intended layout.Leave a comment:
-
Add the doctype like drhowarddrfine said, IE is probably using quirks mode.Leave a comment:
-
Did you copy the entire code? Here's what it looks like on FF9 and IE9....Leave a comment:
-
Here are some free options:
http://swfupload.org/
http://valums.com/ajax-upload/
Here are some commercial options:
http://www.obout.com/Obout.Ajax.UI/FileUpload/
http://ajaxuploader.com/...Leave a comment:
-
Is this more like what you're wanting?
Code:<html> <head> <title>Scholarship form</title> <style type="text/css"> label { clear: left; float: left; width: 30%; text-align: right; margin-right: 5px; } input, textarea
Leave a comment:
-
You can try adding the following style at the beginning of your CSS, but I would recommend searching for a reset CSS file and referencing it before any other linked CSS files:
Code:h1,h2,h3,h4,h5,table,div,td,tr,span,body,form,p,img,iframe { margin: 0px; padding: 0px; }
Leave a comment:
-
-
Code:using System.Text.RegularExpressions; using System.Text; //////// private void Button1_Click(System.Object sender, System.EventArgs e) { string logLine = "e9393f8b003f121858490f62e9339f29ab5919261b8da33746cedb356e29f774 alzwad [18/Jan/2012:22:27:24 +0000] 41.155.169.152 - 6A70EBA012DB351A REST.GET.OBJECT Me/mefiles/videos/icons/240x320/18-1-12-9-19-56-egypt-movie3.jpg \"GET /Me/mefiles/videos/icons/240x320/18-1-12-9-19-56-egypt-movie3.jpg?id=01229466985&ph=01229466985&width=240&high=320
Leave a comment:
-
Code:Dim intScores() As Integer = {88, 72, 99, 20, 66, 95, 99, 100, 72, 88, 78, 45, 57, 89, 85, 78, 75, 88, 72, 88} MsgBox(intScores.Average.ToString) MsgBox(intScores.Sum.ToString)
Leave a comment:
-
I think one form would be simpler. I don't see a reason why the text should look any different just because the form is wider, it should stay the same font size as you specified and not stretch it.
Here's something you might try for "Maximizing " the screen to use all the screen area when the form loads up.
Code:Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Leave a comment:
-
It looks like VB.Net code, however you are posting in the VB 4/5/6 section.
What version of Visual Basic are you attempting to program in?Leave a comment:
-
-
Leave a comment:
-
I don't know for sure what problems you are going to run into as I haven't tried it and don't have the right environment to test, but here's my two cents:
1) FSO does have the ability to open UNC paths as stated here. However, you may or may not have issues using the IUSR_MACHINENAM E or whatever account your site is running under accessing the other computer, just have to try and see.
2) Server.MapPath shouldn't need to...Leave a comment:
-
Yes, if just starting to learn web development then use ASP.Net. For what it's worth, out of the job offers I received, C# positions outnumbered VB.Net about four to one.Leave a comment:
-
The hacker either escaped a user input field that was compared as a string and you didn't escape the single quotes, or they simply passed it in a input field that you compared as a number without ensuring the input was numeric. Other databases have some extra escape characters that will affect string comparisons.
I have not seen a SQL injection attack that worked on Microsoft SQL Server if these simple things were followed:...Leave a comment:
No activity results to display
Show More
Leave a comment: