Posts
 
Reputation
Joined
Last Seen
Ranked #266
Strength to Increase Rep
+12
Strength to Decrease Rep
-3
97% Quality Score
Upvotes Received
90
Posts with Upvotes
78
Upvoting Members
40
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
32 Commented Posts
~387.09K People Reached
About Me

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
Favorite Tags

594 Posted Topics

Member Avatar for samaru
Member Avatar for moderate_rock48
Member Avatar for Duki
Member Avatar for Dani
22
17K
Member Avatar for Dani

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 …

Member Avatar for jamesjoseph1
0
9K
Member Avatar for kanebt

[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: …

Member Avatar for Олег_9
3
3K
Member Avatar for samaru

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, …

Member Avatar for Fest3er
0
3K
Member Avatar for chait_anya

[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 …

Member Avatar for Sajid_11
0
1K
Member Avatar for john_hasan

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 …

Member Avatar for aizam76
-1
3K
Member Avatar for anupam_smart
Member Avatar for Khishin

Goto your start button Select Run type cmd and press enter type cd "c:\QBASIC" Press enter Type QB.exe press enter.

Member Avatar for mechbas
0
574
Member Avatar for debasisdas

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."

Member Avatar for James_28
8
17K
Member Avatar for daniweb2013

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]

Member Avatar for LordoDeGrim
0
752
Member Avatar for sk8ndestroy14
Member Avatar for rrocket

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 …

Member Avatar for ranadheer_1
0
2K
Member Avatar for Anupkumar

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 …

Member Avatar for drindran
0
3K
Member Avatar for msamir
Member Avatar for Swapnil Palande

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; …

Member Avatar for Quezo
0
9K
Member Avatar for ChimpusDupus

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 …

Member Avatar for Ancient Dragon
0
360
Member Avatar for dalaharp

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.

Member Avatar for rustysynate
0
3K
Member Avatar for ndeniche

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 …

Member Avatar for GrimJack
0
2K
Member Avatar for ebabes

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 …

Member Avatar for moonshine4
0
1K
Member Avatar for hollystyles

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 …

Member Avatar for jeryraza
2
3K
Member Avatar for Serunson
Member Avatar for rooparaj

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 …

Member Avatar for aaaa222
0
246
Member Avatar for A0110
Member Avatar for A0110
0
178
Member Avatar for laxy_m

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.

Member Avatar for shafiphp
0
499
Member Avatar for Susmita_Sikder

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)

Member Avatar for G_Waddell
0
624
Member Avatar for color.shadow

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 …

Member Avatar for hollystyles
0
146
Member Avatar for bo0ga

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.

Member Avatar for hollystyles
0
167
Member Avatar for MaddTechwf

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);

Member Avatar for hollystyles
0
1K
Member Avatar for Mr.BunyRabit

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.

Member Avatar for hollystyles
0
4K
Member Avatar for hollystyles

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 …

Member Avatar for buck1107
2
4K
Member Avatar for aparnesh

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]

Member Avatar for moji013
0
198
Member Avatar for rajesh_tawari

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"

Member Avatar for stultuske
0
364
Member Avatar for 1qaz2wsx7

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 …

Member Avatar for JerryShaw
0
2K
Member Avatar for bestgraphicsbd

When you save as html in Excel it also creates a folder with supporting images and javascript, did you upload that as well ?

Member Avatar for Usman-Zulifiqar
0
212
Member Avatar for linux

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 …

Member Avatar for vinnitro
2
1K
Member Avatar for GLT

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, …

Member Avatar for triptikumbhat@g
0
5K
Member Avatar for deeptiarora

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.

Member Avatar for studsSW
0
453
Member Avatar for pyro 214

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 …

Member Avatar for Ancient Dragon
0
1K
Member Avatar for Duki
Member Avatar for wingwarp

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 …

Member Avatar for tiredoy
0
451
Member Avatar for viperman224

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 …

Member Avatar for davidkeeler63
-1
801
Member Avatar for md_salman

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> …

Member Avatar for zenghoong
0
858
Member Avatar for mikkime23

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 …

Member Avatar for Joeromine
0
173
Member Avatar for paprworknotdone

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.

Member Avatar for someone unknown
0
369
Member Avatar for Shruthi_R

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 …

Member Avatar for prashantprof
0
566
Member Avatar for ndeniche
Member Avatar for serkan sendur

[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 …

Member Avatar for mrroad
0
843
Member Avatar for christina>you

[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 …

Member Avatar for joshevans
0
930

The End.