456 Posted Topics
Re: Put AS after the brackets and before Subscribed_to_Business_XL see if that works. | |
Re: Main applications used for developing in C# and connecting databases are Visual studios (as nMaillet said) to write your C# apps and SQL server for your databases. I've only ever used 2005 onwards for both IDE's and prefer Visual studios 2010 version and 2008 version of SQL server. If you … | |
![]() | Re: UserName: ____________________ Password: ____________________ Bob's your uncle and Fanny's your aunt! In all seriousness the best thing to do is have your login screen match the colour scheme of the rest of your applicaion. keep your schemes consistant throught. |
Re: Does the fan still kick in when you turn your PC on ? did you know the heat sink when you were cleaning the fan ? If the fan doesn't kick in when you power-up check it's connections (but be as gentle as a butterfly). | |
Re: Go climbing, play Xbox, see the girlfriend or go the pub with a few friends. | |
Re: Try unpluging your laptop charger from the wall (but leave it in your laptop) and hold the on button on your laptopn untill the light on the charger goes off. this should drian all power from your battery and the charger, once the light on the charger has gone off … | |
Re: You could put each charactor of the string into separate inidex's of an array. Then you could loop through the array, storing the current and the previous array index value in separate variables to compare. It's hard to explain and probably not the best way to do it but this … | |
Re: Shsh111 stop asking for people to do the work for you and show us what you have done so far so we can help you. If you get people to do your homework for you your going to struggle when the time comes to do the work yourself which means … | |
Re: What have you go so far? or are you looking for a place to start the program? | |
Re: Death or Glory - The Clash (i have the album playing through | |
Re: Try [this](http://lmgtfy.com/?q=text+alignment+in+asp.net+textbox) it might be about a text box but it will be the same. | |
Re: It may well be a hardware rather than just brightnest settings. My girlfriend had this issue with an old laptop and she had to get the converters replaced (i think). It was caused by the wires and the part itself getting trapped or dammaged in the hinge of the laptop … | |
Re: What have you managed to do so far ? Can you post it in this thread so we can see if you're on the right track and try to help is we can ? | |
Re: Do you want to create a property in C#, for example a FirstName string property, set the property and store the value of that porperty in your database ? | |
Re: So the problem isn't with the button, you just haven't written the code to make the button do something. Do you have any sample code we can look at ? Have look at [this](http://lmgtfy.com/?q=inserting+data+into+SQL+database+C%23) | |
| |
Re: I would suggest that you don't databind objects like comboBoxes and textBoxes because it means your program will be less flexible, I tried (or think i did) something similar to what you're doing and found databinding object meant i couldn't add particular functionality i wanted. If you databind an object … | |
Re: I'd be a fool to say that math isn't extremely important in the fields your interested in. However 've recently graduated from university with a 2.1 BSC in Software and System development (second highest) and my maths isn't very good. On the other hand this is reflected by the fact … | |
Re: I'm not a C programmer but the equasion should be something like: variable1 = 78/8; variable2 = (56*78) + variable1; Deceptikon is right though something as simple as that shouldn't be hard to find on Google | |
Re: Can you explain what type of lan you want (simple one, one with an internet connection, one that allows you to assign static IP addresses, a wireless LAN) ? a simple LAN, just get a hub, couple of workstations and a couple of ethanet cables, plug each of the workstations … | |
Re: ZombieVille and Pumpkins Vs Monsters, PvM is kind of a low budgit plants vs zombies but still good | |
Re: So you need a title for a thesis on a web based or LAN tapology based subject ? You need to give a lot more information than that and try asking a friend they might have a better idea of what your doing and be able to help you more. | |
Re: You can just set the ReadOnly property of the textBox to true and the user won't be able to edit it's contents, it's alot less work and more logical. | |
Re: you could make a lunch order system with a back end SQL server DB and a log in function which allows staff to login and order their luch. | |
Re: What type of database are you using (Sql server, Access, Oracle)? the best place to post this issue would be in the visual basic page or the database page. You will also need to provide a lot more information on the issue you're having to help others identify a solution. | |
Re: and the politically incorrect Christmas greeting: Merry Christmas boys and girls, have fun getting hammered to celebrate Christ's birthday . . . i've started early. however enjoy the festivities everyone have a gooden | |
Re: I didn't add anything i just re-arranged your code. * You can't define a method within another method. * Define all class instances at the top of your class. * Do some googling before hand, i did when i didn't know how to use Random class instead of groveling. Hope … | |
Re: The red circles are break-points. if you run your app it will stop at those points. it allows you to step through your code to help locate the point at which your application throws an error (which is called debugging) you also use it to help understand how someone elses … | |
Re: myComboBox.SelectedItem gets the value that you have selected from the comboBox. If you want to pass this value to another form you simply need to instanciate a new instance of the 2nd form in the 1st form and do the bellow: Form2 frm2 = new Form2(); // This is done … | |
Re: It might sound daft but do you have the latest drivers installed ? | |
Re: You should try SAD: Zombie Assault 3. it's addictive and you can play it online in public games or in private matches with friends. i stole my girlfriends iPhone while she watched her soaps and needless to say she wasn't best pleased when i run her battery down. | |
Re: Some data types need you to define the seed number or how many decimal places you want to store. Taking this into account do some research on the decimal datatype as you have to define how many decimal places you want to store if you want to use decimal datatype. | |
Re: Don't get me started of petrol prices in the UK ! I'm spending £60-£70 on the stuff in an average week at the moment. The tanker drivers are planning on going on strike in a weeks time too so it's going to be like something out of a Mad Max … | |
I was wondering if there is a way to open an SQL file and execute it from a c# application without prior connection to a database and also get the name of the default server that is used when SSMS is opened. at the moment i can open SSMS but … | |
Re: Lightniing this is the 3rd time you've posted this article. 1 - Create your connection string. Get the name of the server you DB is on as well as the name of your DB and add them to your app.config file as shown below. <connectionStrings> <add name="MyConnectionString" connectionString="Data Source=**SERVER-NAME-HERE** ;Initial … | |
Re: Put GO between SET and SELECT, failing that put GO between DECLARE, SET, SET and SELECT. The GO key word tells it that it is executing something that is in a different batch, you have to use it if you're creating schemas and tables in the same script so i … | |
Re: If you're still interested, in the left screen grab you've highlight all but there WHERE clause which means that only the highlighted code will be executed and nulls will be returned. | |
Re: The Access DateTime format might be different to the C#.NET DateTime format, this is the case with SQL Server. try to research both C#.NET and Access DateTime format and try to figure out how to convert the C# DateTime so that it can be stored in the DB. | |
Re: if you're creating a new database it is just added to the list that master is in e.g. the list would read: -collegeDB -master -myDB1 if you want to move all data from one DB to another you may have to bulk move everything over in an SQL statement. If … | |
Re: can you not give the <p> tag an ID attribute and then use that ID to reference the text attribute of the <p> tag ? | |
Re: Llyn Gwynant Campsite is a good campsite, it has it's own lake that you can rent kayaks to use on the lake too. I'd rather be outdoors whether it be going to the local climbing wall, camping or just going the pub but finding the time, people and weather (which … | |
Re: Hi bhaga, I tried to do something similar in the past but could only manage to get the windows identity of the current windows user and not the password. It might be better security purposes to get the user to create a new password different to the one they use … | |
I just got an error when I clicked on the tutorials tab on the ASP.NET page, is this just something to do with my settings or is it an issue ? Cheers | |
Re: Doing a system restore might also work, it has for me in the past, | |
Re: If you create a connection sting for your database in app.Config, create a method called something like DBConnect() and then call that in you SQL command then you won't need to data your database name in you SQL statement. The issue i'm guessing is with: > (1,@data) ; " Make … | |
Re: Java is an actualy programming language to make fully functional programs isnt it and JavaScript is a scripting language used to style webpages and not functionality. I could well be wrong | |
Re: so a user can register twice as long as they choose a different username ? Best thing to do to stop the same username being chosen more than once is to make the column UNIQUE in the definition of the table in the DB. The alternative if to take the … | |
Re: Can you just attach the image ? was the joker "there are 10 types of people, those who understad binary and those who don't" ? |
The End.