Array List Not Responding Programming Software Development by VIPER5646 … = True btnAddJob.Enabled = False LoadListGroup() btnCustom.Enabled = True Dim JOBSearch As New JobAddress JOBSearch.Address = cbxSearch.SelectedItem.ToString JOBSearch.NewSearch() End Sub[/CODE] Consultant job in IT, which one is in demand most? Community Center by tech291083 … one on monster.co.uk site [URL]http://jobsearch.monster.co.uk/jobsearch.asp?vw=b&cy=uk&sq=not… JSP sessions in javascript Programming Web Development by virividivici … page: <c:set var="searchType" value="jobsearch" /> the value of the "searchType" should…;jsp:scriptlet> WebUtils.setSessionAttribute(request, "searchType", "jobsearch"); </jsp:scriptlet> now, I dont know how… Cannot select SQL query with DAL to show in message box Programming Web Development by adrian.mcguinness …; void ConnectiontoSQL() { string str = "server=xxx; database=jobSearch; user=sa; password=xxx"; cn = new SqlConnection(str);…string Query = "select " + select + " from jobSearch where searchID = 1"; SqlCommand cmd = new SqlCommand(Query, cn… Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro …void ConnectiontoSQL() { string str = "server=xxx; database=jobSearch; user=sa; password=xxx"; cn = new SqlConnection(str…string Query = "select " + select + " from jobSearch where searchID = 1"; DataSet ds = SelectSQL(Query); if (… Re: Live Search Help Programming Web Development by SunnySideUp …").keyup(function() { var searchJobs = $(this).val(); var dataString = 'jobSearch='+ searchJobs +'&jobSearch='+ searchJobs; if(searchJobs=='') { } else { $.ajax({ type: "GET"… Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro … select) { ConnectiontoSQL(); string Query = "select " + select + " from jobSearch where searchID = 1"; DataSet ds = SelectSQL(Query); if ( ds… advice on resume projects Programming Web Development by cali_dotcom … job search website, with employers loggin, job search by keyword, jobsearch by category, a couple of polls and also an employers… calling a javascript for validator Programming Web Development by cali_dotcom …;search_form" method='POST' onSubmit="return validate_form();" ACTION='jobsearch.php'> <tr><td>keyword:<… Re: calling a javascript for validator Programming Web Development by Shanti C …; <table> <FORM name="search_form" ACTION='jobsearch.php' method='POST' onSubmit="return validate_form();" > <… outputting jdbc select statement resultset to html table Programming Web Development by oggiemc … java.io.*; import java.lang.*; import java.sql.*; public void JobSearch(String sector, PrintWriter out) { String thisSector = sector; try { out.println… Live Search Help Programming Web Development by SunnySideUp … I can change: Index.php [CODE] <form id="jobSearch" method="get" action=""> <… Content box alignment Digital Media UI / UX Design by Donaldc88 …: 0;vertical-align: bottom;' src='http://www.indeed.com/p/jobsearch.gif'></a> </div> </div… Re: I am creating a recruiting site!.... Plz help Community Center by moerpheus … offered.[/QUOTE] hey Rexibit, the site is supposed to be jobsearch site. its supposed to offer the following services; [code] <…;ul> <li>Jobsearch for recruits</li> <li>register jobseekers… Re: Social Media and Job Hunting Digital Media Digital Marketing by MktgRob … heard someone say that if you use Facebook for your jobsearch you should set up your presence as a high end… Re: ASP login Programming Web Development by pritesh2010 …;UserAuthentication") = username end if end while Response.Redirect("JobSearch.aspx") elseif dr.HasRows=False then Session("UserAuthentication… Re: Array List Not Responding Programming Software Development by GeekByChoiCe You don't need to have two arraylists. Here is an example, how it would be better: [CODE=vb] Private Sub pop_combo_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load Dim Jobs As New Dictionary(Of Integer, String) 'instead of this loop you do your data reading here For i As Integer = 1 To 10 Jobs.Add(i, "… Re: Array List Not Responding Programming Software Development by VIPER5646 Thanks GeekByChoice It works great. The dictionary object is something new to me. I will be looking into it more. Re: Consultant job in IT, which one is in demand most? Community Center by dinomorea It is always rocking globally and will continue this way for several years to come. I personally know a lot of people with the necessary funds and infrastructure who are very much interested in starting a new IT venture but lack the requisite idea of how to go about this. Here IT consultant play a vital role hence is always in demand. Re: Consultant job in IT, which one is in demand most? Community Center by pty Unfortunately there are already too many non-technical talkers in the IT industry. Re: JSP sessions in javascript Programming Web Development by masijade You can't. The JSP runs on the server, JavaScript on the client. The only thing you can do is set a parameter and submit a form (or something to that effect). Re: Cannot select SQL query with DAL to show in message box Programming Web Development by adrian.mcguinness it returns "cannot find table 0" The database isnt empty. Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro Is ds.Tables null? Is the connection and query ok? Re: Cannot select SQL query with DAL to show in message box Programming Web Development by adrian.mcguinness Hi it accesses the database. the resulting error message is "input string was not a correct format" Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro In wich line does this error occurrs? Re: Cannot select SQL query with DAL to show in message box Programming Web Development by adrian.mcguinness On debugging, ds.Tables[0].Rows[0][0] shows the value from the query in execute_SQL(). from if (ds.Tables[0].Rows.Count > 0) { return Convert.ToInt32(ds.Tables[0].Rows[0][0].ToString()); } return -1; the error is thrown after the… Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro Whats the value in `ds.Tables[0].Rows[0][0]` ? In debugging, use the Exception.StackTrace and Exception.InnerException.StackTrace to see exactly where the errors occurs and it's full stack trace. Obs.: InnerException is recursive. Re: Cannot select SQL query with DAL to show in message box Programming Web Development by adrian.mcguinness the value is "monster.co.uk" as expected in ds.Tables[0].Rows[0][0]. when debuging but the exception is still thrown. but the stackexception is ex.StackTrace " at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)\r\n at System.Number.… Re: Cannot select SQL query with DAL to show in message box Programming Web Development by BMXDad Looks like your trying to convert "monster.co.uk" to an int Re: Cannot select SQL query with DAL to show in message box Programming Web Development by AleMonteiro ggamble is right... I assume that you were selecting an int, because you was already converting. If the value is 'monster.co.uk' you can't convert it, just use .ToString().