- Strength to Increase Rep
- +12
- Strength to Decrease Rep
- -3
- Upvotes Received
- 90
- Posts with Upvotes
- 78
- Upvoting Members
- 40
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
middle-aged underpaid hacker, two sprogs (both girlies)I'm a self taught developer, my first computer was a Texas Instruments 99A with a whopping 16k of RAM. I was hooked from the beginning.
- Interests
- Horses, Computing
- PC Specs
- Big fat brick of a laptop
594 Posted Topics
Re: Learn how to spell Genius atari_pen15 ! BD | |
Re: Garibaldi biscuits and Pure Columbian Coffeeeee Come on IRC. | |
Re: Hi all, I just signed up. I'm a self taught developer of some six years now (Sounds of running feet and fading screeming ) I have mostly used Visual Basic in all it's forms: VB for applications; vb6 ; VB.net and VB scripting editions I love it! (more screeming!) My … | |
Re: [QUOTE]I know that if this was the Uk though, you would legally have to honour this request under the DPA, but i think the USA is different[/QUOTE] What? I don't think so. I may be wrong but I can't be bothered to look it up. What I do know is: … | |
Re: By far the hardest nut I had to crack was some javascript (bearing in mind I grew up on basic and vb) that was to run clientside for my ASP web application. It was difficult because the user needed to be presented with data in a series of HTML tables, … | |
Re: [QUOTE]i have done it....[/QUOTE] Well no you haven't really, cos it's not a c# dll anymore (a .NET assembly) it's a COM library and you have to have written the C# library in a way that makes it compilable as a TLB. Hmm having read some more I see I … | |
Re: Here you go. Added for loop in place of while, and commented out the i++ at end of while loop. Also added int variable col, to print a newline every ten numbers printed to standard out. [CODE] #include<stdio.h> #include<conio.h> int main(int argc, char *argv[]) { int count,i=1; int a; int … | |
Re: Starship Troopers | |
Re: Goto your start button Select Run type cmd and press enter type cd "c:\QBASIC" Press enter Type QB.exe press enter. | |
Re: These are my two favourites from: 'Lifes little instruction book'. Apart from life and death matters, nothing is really that important. No one on their death bed says: "I wish I'd spent more time at the office." | |
Re: Have you seen this one ? [URL="http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf"]http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf[/URL] Did you search this forum? this topic has been discussed already and there are more links to be had there: [URL="http://www.daniweb.com/forums/thread31222.html"]http://www.daniweb.com/forums/thread31222.html[/URL] | |
Re: A better solution is this: [code=javascript] <script language="javascript" type="text/javascript"> function check_length(textbox) { var x = textbox.value; alert(x); } </script> [/code] and for the TextBox have: [code] <asp:TextBox id="tbDescription" runat="server" Height="78px" TextMode="MultiLine" onkeypress="check([COLOR="Red"]this[/COLOR])" Width="363px"></asp:TextBox> [/code] Now it doesn't matter what the textbox is called as it passes a reference to itself … | |
Re: You can't hide your IP. You can use a different IP owned by a proxy server. Most ISP's host a proxy server. Using proxies is commonly referred to as hiding your ip but that is a misnomer you are just surfing from behind a different ip Just 'hiding' your ip … | |
Re: you need to move the return statement outside of the while loop. | |
Re: Easy. this should work, you just need a static class: Add a new class.cs file to the project and stick something like this in it. [CODE] static class GlobalClass { private string m_globalVar = ""; public static string GlobalVar { get { return m_globalVar; } set { m_globalVar = value; … | |
Re: Assuming (as you have not provided a lot of info) 1. You are doing this alone 2. You only need it to run on windows I recommend C#.NET because the .NET framework comes with good libraries and all memory management is done for you that will help you create your … | |
Re: Store system datetime in variable at start of your procedure. Display something like datediff(Variable,now()) at the end of your procedure. I don't know what language your are using so I'm being vague. | |
Re: I disagree with a lot of what's been said, but I don't have the time to post it all at once. But here's one point I would like to make about this theory that homosexuality can't be genetic as they would become distinct by default. The problem with this theory … | |
Re: ebabes please use code tags to format your code in posts. (See the watermark in the quick reply box at the botom of all threads) [code] OleDbCommand cmd = new OleDbCommand("INSERT INTO StudTable (IDNo, Course, Year, Age) VALUES (?, ?, ?, ?),conn[COLOR="Red"]"[/COLOR]); [/code] You have misplaced your closing " it … | |
Test Driven Development (TDD) is the amalgam of two programming techniques: Test-First Development (TFD) and Refactoring. Looking at the first of these, TFD literally means that before you write some functional code (in whatever programming language you happen to favor) you first write a small piece of code to test … | |
Re: Put this line in mainpage.aspx. [CODE] <script language="javascript" src="menu.js"></script> [/CODE] You can't compile javascript to a dll, dll's are native code. Javascript is a scripting language and scripting languages are parsed and JIT compiled on the fly by an interpreter. In your case the interpreter is the Virtual Machine running … | |
Re: System.Threading.Tasks.TaskFactory.StartNew(() => MyLongRunningMethod()); | |
Re: You can do it with javascript, here a good article with the basics: [URL=http://www.w3schools.com/dom/dom_http.asp]http://www.w3schools.com/dom/dom_http.asp[/URL] Basically you can create an HTTP request from within your page and get back and process a responce. I guess this could be possible in PHP also. I have a look into it. | |
Re: Why do you need to store username in cookie? ASP.NET gives you Page.Identity.User.Name in every page automatically for you. More on cookies [here](http://msdn.microsoft.com/en-us/library/aa289495(v=vs.71).aspx#vbtchaspnetcookies101anchor5) More on authentication [here](http://support.microsoft.com/kb/301240) | |
Re: I think you are saying: "I want to select all users who are not already saved in the new table yet." You need to make your SQL statement LEFT JOIN on the new "saved to" table that you mention, and only select records that don't have a matching record in … | |
Re: MessageBox is not "C#" it is part of the .NET class library. Yes you need to either swap the book for an ASP.NET one, or get Visual Studio C# express. You can have both Web Developer and C# Express installed at the same time if you like, I do. | |
Re: Your login is vulnerable to SQL Injection attack, tut tut. Use parameters. SQLStr = "SELECT ID FROM tbl_people WHERE username=@username" SQLCmd.Parameters.AddWithValue("@username", Membership.GetUser.ToString); | |
Re: You can do it with Aspose.pdf (not free) see [here](http://www.c-sharpcorner.com/Forums/Thread/98186/) or Acrobat itself (preflight) also not free. | |
The aim of this tutorial is to save burgeoning self taught developers some of the early pitfalls that lurk on the road to programming enlightenment. It will attempt to do this by distilling the last 50 years of software engineering philosophy into a relatively short single tutorial, applying the concepts … | |
Re: Yes, say you had a drop down list in the pop up window and a text box in the main page (that's in a frame but it works for me) using this javascript [code] window.opener.document.getElementById("myInputText").value = document.getElementById("mySelectElement").value; [/code] | |
Re: how about a little java program that randomly spits out a mini project title and description from a list. Heres the first one for your list. Title="To do list" Description="A GUI program to keep track of tasks you have and haven't done yet" | |
Re: 1 is easy right click website or project, 'Add New Item' Add a class file add a public static method eg; myGlobalClass.cs [code] public class myGlobalClass { public static void myGlobalFunction() { //function logic ... } } [/code] Call it in your code: [code] myGlobalClass.myGlobalFunction(); [/code] 2. Derived DataGrid Create … | |
Re: When you save as html in Excel it also creates a folder with supporting images and javascript, did you upload that as well ? | |
Re: 01010100 01101000 01101001 01110011 00100000 01101001 01101110 01101111 01101100 01110110 01100101 01110011 00100000 01100001 00100000 01100010 01101001 01110100 00100000 01101111 01100110 00100000 01100001 01101110 00100000 01100001 01110011 01110011 01110101 01101101 01110000 01110100 01101001 01101111 01101110 00100000 01101111 01101110 00100000 01100011 01101111 01100100 01100101 01110000 01100001 01100111 01100101 01110011 00100000 01100100 … | |
Re: Alter table can't take dynamic parameters. To do this you will have to concatenate the whole TSQL command as a string dynamically and then execute it. Also you don't need the COLUMN keyword. [code=tsql] CREATE PROCEDURE sp_addcolumn -- Add the parameters for the stored procedure here @tablename varchar(50) = 0, … | |
Re: In a word, No. Like Java needs a JVM, .NET requires the CLR to run, the framework is easily redistributable with your application. There is a linux version of the framework called Mono, I'm not aware of any others. | |
Re: If your main motivation for choosing between a programmer or software engineer is salary I think you're asking the wrong question. You should do what you enjoy. If you enjoy it you will be good at it. If you're good at it you can make whatever income you require from … | |
Re: it is a good book for learning c++ and yes it covers Object Oriented concepts particularly well. What I liked about it is it also explains a little about hardware and memory and analysis and design so it is a very well rounded book giving you all you need to … | |
Re: Just to clear something up that I saw earlier in the thread. Linux was not a one man job and was not built from scratch. Linus created the original Intel 386 Linux kernel based on MINIX a simple unix like OS created by A. Tanenbaum, a computer science professor. MINIX … | |
Re: Yes is the answer, this should get you started a very very basic solution but enough to show you what you need to be looking at to acheive your goal. check out [URL="http://www.w3schools.com"]http://www.w3schools.com[/URL] and get yourself a copy of the javascript anthology published by sitepoint ISBN 0-9752402-6-9 [CODE] <html> <head> … | |
Re: Firstly Sql Server requires single quotes to delimit text. Example: [CODE] VALUES ( " & apascidbox.Text & ", [/CODE] needs to be: [CODE] VALUES ( '" & apascidbox.Text & "', [/CODE] see you need to concatenate a single quote just before the closing double quote and just after the next … | |
Re: Look in c:\Documents and Settings\<your username>\Start Menu\Programs\Startup and c:\Documents and Settings\All Users\Start Menu\Programs\Startup There may be a shortcut in one of those folders, windows runs any shortcuts in these folders automatically. | |
Re: Of the top of my head what I'd do is have a main page with an iFrame in it and a javascript timer function. Run the test in the iFrame so the timer in the main page is uninterrupted. When the timer expires make it set the iFrames src address … | |
Re: [QUOTE]This is similar to a problem I have. I have a database in SQL Server Express, and need to migrate it to another server running SQL Server 2004. Is there a simple way to do this without having to go through SSIS?[/QUOTE] Do a complete backup, copy the file to … | |
Re: [QUOTE=jbennet;344665]... i dont believe jesus was the son of christ so it doesnt matter ...[/QUOTE] I don't think anybody does, Jesus is the son of God and Mary. [B]Action[/B]: Anything with Arnnie in it especially commando and True lies. Kill Bill 1 and 2 oooh Uma in yellow leather that … |
The End.