Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: alsaffar
  • Content: Threads
  • Order by date
  1. alsaffar

    Can't connect to local server

    Hi Helpers ('',) I'm newbie to MS SQL Server 2005, I just installed it I want to start creating the database on my local pc I searched alot for newbies tutorial with picture but I couldn't find! All they assumed I'm connected to a server The problem is I can't connect to my local server...
  2. alsaffar

    header Location problem

    Hi everybody, I made a script called "download.php" to download files from a specific directory in my server. The idea is I don't want a direct links to my files. Call to the script will be like the following: download.php?filename=test.wmv test.wmv is stored in a directory called /files/...
  3. alsaffar

    Invisible Row

    Hi everybody, I have a table like the following: <table> <tr><td>Group 1</td></tr> <tr><td>Sub Group 1.1</td></tr> <tr><td>Sub Group 1.1</td></tr> <tr><td>Group 2</td></tr> <tr><td>Sub Group 2.1</td></tr> <tr><td>Sub Group 2.2</td></tr> </table> How can I make by default that Sub...
  4. alsaffar

    Oracle TCP/IP Connection

    Hi there, Can some one help me with a "stored procedure/function" example for how to connect "communicate" to an application via TCP/IP? Thanks in advance ;)
  5. alsaffar

    onSelect assign value to hidden input

    Hi there, I have a hidden input called (amount) <input type='hidden' name='amount'> and I have a select input called (amount_desc) <select name='amount_desc'> <option value='1'>1</option> <option value='2'>2</option> </select> My aim is when an option of the select input is selected to...
  6. alsaffar

    Default Charset

    Hi there, Although I have the following line in the header of my script BUT I'm not getting it working! <meta http-equiv="Content-Type" content="text/html; charset=windows-1256"> The page got displayed using Unicode (UTF-8) NOT Arabic (Windows) as I want! One thing to be mentioned, I'm...
  7. alsaffar

    Run Hello, World JSP script

    Hi there, I searched the web for the easiest and direct tutorial to run the Hello, World! JSP script but I failed! Do you believe that :) I'm a good programmer and I know many programming languages like (VB,PHP) but I'm dieng to start my JSP life :) I want (in steps) what to install (on...
  8. alsaffar

    Disable Copy

    Hi there, I found very cool trick to disable copy by executing the following line in OnLoad argument: block = setInterval("window.clipboardData.setData('text','')",20); What it does, is preventing you while the page is open from copying anything "even from outside your page" and you should...
  9. alsaffar

    Prevent Select

    Hi everybody, I'm using a havascript code to prevent selecting text or right click on my web page, but the problem is I want to enable right click and text selecting inside a specific textarea and text input, how can I acheive that? The code Im using: <script type='text/javascript'>...
  10. alsaffar

    Textarea Maximum Characters in Posting

    Hi there, What is the maximum number of characters we can post in a form for in a textarea? And what is the maximum number of characters we can store in varchar field in mysql database? Thanx in advance ;)
  11. alsaffar

    Sorting Array

    Hi there, I have 2 arrays, ############################ where the first array: $FirstArray[0][0] = '20050809'; //date format $FirstArray[0][1] = 'Text1'; $FirstArray[0][2] = 'Text2'; $FirstArray[1][0] = '20050801'; //date format $FirstArray[1][1] = 'Text7'; $FirstArray[1][2] = 'Text8'...
  12. alsaffar

    ASP and ASP.NET?!

    Im new to ASP, is there is any difference between ASP and ASP.NET? Can we convert ASP.NET website to EXE applicatoin?
  13. alsaffar

    Application to Website

    I'm a good VB6 programmer and Im planning to learn DotNet, so my question is: Can I develop an applicatoin in DotNet then convert it to a website? In other way, what is the relatoin between DotNet applications and ASP.NET websites?
  14. alsaffar

    .NET or JAVA

    Hi everybody, I'm planning to develop an accountant system that can be accessed from the internet (for some clients) as well as a stand alone application (for those who hate internet). Which language is better: .NET or JAVA? I'm very good at VB6 but not started yet in .NET and I have just...
  15. alsaffar

    Sorting Array

    Hi there, I have a multi-dimensional array as follow: $x[1][1]='C'; $x[1][2]='A'; $x[1][3]='B'; $x[2][1]='F'; $x[2][2]='X'; $x[2][3]='D'; How can I sort the array first on $x[][2] then on $x[][3]?
  16. alsaffar

    Array of HTML select

    Hi there, I want to show each HTML select value after submitting the form. How? <? if (isset($_POST[submit])) { for ($i=1; $i<=10; $i++) echo "$i:$_POST[TestSelect][$i]<br>"; } ?> <form method='post' name='TestForm' action='<? echo $_SERVER[PHP_SELF] ?>'> <? for ($i=1; $i<=10; $i++)...
  17. alsaffar

    URGENT: match method

    Hi there, I'm lost in the 'match' method :) I read and read and read about it but STILL can not figure how to build the argument of the characters to be compared! I want the text input box to accept only english characters and numbers and a dash, how can I do it? Following is a part from my...
  18. alsaffar

    Create input boxes on the fly

    Hi there, How can I have a form with (drop down menu of values from 1 to 20) so if I select for example 5, then 5 input boxes will be created on the fly (each one under the other) of the same name but different indexes e.g. TextBox[1] TextBox[2] etc... I hope I was clear :) Thanx alot in advance.
  19. alsaffar

    Check every character in all text boxes onSubmit

    Hi there, I have one question, how can we onSubmit form action check all fields values if they contain a specific charatcer (in regardless what is the field name or how many fields, they might be only a text box). Lets say i want to raise an alert if on of the text boxes have a letter '~' or...
  20. alsaffar

    Validation functions

    Hi there, I have a problem in calling 2 functions to validate a form input onSubmit, please help me. I simulate my script in a sample script, please take a look: <script language='javascript'> function Validate1() { if (document.all.Name.value == '') { alert('Name is...

Part and Inventory Search

Back
Top