- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
29 Posted Topics
try removing the comma after the last column and put your right paren there. you need to actually create the table before you can add any constraints.
function closeEditorWarning(){ return 'Are you sure?' } window.onbeforeunload = closeEditorWarning;
All the code you needs is there in the source ( .CadreTop, .CadreContent, etc. ). Make sure you convert all of the items in the css and make sure you have all of the images in the right location. .cadre{ padding:0;border-spacing: 0px; } .CadreTop{ padding-left:20px;background-repeat:no-repeat; background-image:url('/specific/images_v2/cadreTop.jpg'); width:322px;height:47px; } .CadreContent{ padding-left:10px;background-repeat:repeat-y;padding-right:5px; …
There are several ways to connect to mySql via .NET as well as different values you can set inside your connection string ... check out [URL="http://www.connectionstrings.com/mysql"]http://www.connectionstrings.com/mysql[/URL] to figure out the connection string you want to use.
You could always concantenate "<br />" to your 'job_description' field within the SQL statement. like this... [CODE] SELECT job_id, job_title, job_description + '<br />' AS job_description FROM tblTableName [/CODE] ...this way when your job_description field is displayed it will automatically break to the next line. OR [CODE] <?php echo $row_jobdetails['job_description']; …
Your image is displaying inside your IDE because the IDE is smart enough to know that you want to see a specific file in that specific place. My suggestion would be... 1. Create a folder to work on your web page or pages...you can call it HTML_WORK 2. Move your …
Use something like this... onmouseover="doHoverClass()" onmouseout="setNormalClass()" in the <div id="post" class="normalClass"> tag. Then set up a .normal and a .hover classes for your tags and change the class when the javascript is fired. I would avoid jquery if you only want to use if for this. In my opinion, it …
Instead of using the ReadOnly="True" property ... how about using the Enabled="False" property?
[QUOTE=laghaterohan;1212491]Hello, I am having a gridview and a drop down list placed above it. Suppose my gridview has total 100 records in it. However, i the user wishes to see only 5 , he has to select 5 from the drop down list and the gridview should display only 5 …
I would say the best book I have come across for any programming language is a book by Joyce Farrell called "Java Programming". I had the original version, but then had to purchase the second edition for school about 5 years ago. However, they're just about identical. This book walks …
[QUOTE=gogs85;1579827]I need help : i have listbox1 and listbox2, fill listbox1 via SQL queries. When i selected items in listbox1 in listbox2 most show another table.How i to do that?[/QUOTE] So, as an example...you have ListBox1 and ListBox2. If ListBox1 has three(3) entries .... Ford Dodge GMC ....when you select …
I would recommend checking the following site... [URL="http://mattberseth.com/blog/2008/04/masterdetail_with_the_gridview.html"]http://mattberseth.com/blog/2008/04/masterdetail_with_the_gridview.html[/URL] ...it sounds like this is exactly what you're looking for.
You also may need to rename your mbam.exe to something random like e2dcr2.exe ( at least until you get the virus removed ) ... most of the ransomeware blocks some common executable files from running, espically anti-virus and anti-malware exe files.
Check out [URL="http://www.pagetutor.com"]http://www.pagetutor.com[/URL] ...it's a great site for learning the basics of html ...they also have some basic CSS tutorials as well.
You want it added to three different lines, correct? If so, you need to do this... [CODE] lstResults.Items.Add("Total Normal = " & sumNorm) lstResults.Items.Add("Total High = " & sumHigh) lstResults.Items.Add("Total Low = " & sumLow) [/CODE]
Try it something like this... [CODE] SELECT TOP 5 dp.product_lob AS lobs, SUM(fs.written_premium_amt_ytd) AS Gross_written_premium FROM ( SELECT dp.product_lob As lobs, SUM(fs.written_premium_amt_ytd) As Gross_written_premium FROM dbo.Fct_Summary AS fs INNER JOIN Dim_product AS dp ON ( fs.product_key = dp.product_key ) INNER JOIN Dim_Calendar AS dc ON ( fs.calendar_key = dc.calendar_key) WHERE …
Something I found with rootkit detection is that if a rootkit has found its way onto your machine, sometimes you will have to rename the executable. I would look in the task manager (under the processes tab) to see if the program is actually running but being surpressed. So,...if you …
you could use a javascript to load the iFrame src based on the page you are loading....something like a javascript switch statement.
do you have a class or style applied to the div tag or the form? if so, it should probably be reviewed and modified.
If you already have created buttons...you should be able to add the onClick property like below... [CODE] <input type="button" name="btnHome" text="Home" onClick="javascript:window.location.href='default.htm';" /> <input type="button" name="btnContact" text="Contact Us" onClick="javascript:window.location.href='contactUs.htm';" /> [/CODE]
Try adding the line below to the bottom of your Button4_Click sub. [CODE] GridView1.DataBind() [/CODE]
Have you tried binding your data to your grid? [CODE] adodc1.recordsource = "select * from " & txttable.text adodc1.refresh set datagrid.datasource = adodc1 datagrid.DataBind() [/CODE] Which version of VB are you using? You posted this in a VB 4/5/6 forum, but it looks like you may be using .NET.
Let me start by stating I have no Python experience at all, but I consider myself a decent problem solver. I would do something like this... arrExample (set this as the list from example.txt) arrWord (set this as the list from words.txt) loop through all *words* in arrWord compare each …
[QUOTE=vallikasturi;1211471]I need all the repeated meterids in table1 with its appropriate details in table2... The query u submitted is removing the duplicates of the meterid... it shouldn't be like that[/QUOTE] If you have a unique field in table2, you could do something like this... [CODE] SELECT table1.meterid, table2.meterid, table2.uniqueField FROM …
Before you try to change the value of the cookie, try setting the cookie to nothing, then setting the cookie. something like this.... [CODE] [B]setcookie("bbb", "", time()-3600);[/B] switch ($_COOKIE['bbb']) { case 1: setcookie("bbb", "2", time()+3600); break; case 2: setcookie("bbb", "3", time()+3600); break; case 3: setcookie("bbb", "4", time()+3600); break; case 4: …
I'm not sure exactly what you're trying to do, but your second block of code will create an endless loop because subtracting from -1...it will always be < 30. I would recommend using a stored proc, passing in all of your values for I, J, K and another value for …
It looks like adatapost was headed in the right direction....The first thing I would check is to make sure all of your values you are passing into the query are what you think they are.... [CODE] Response.Write "Filename ::: " & MySmartUpLoad.Files(1).FileName & "<br />" & vbCrLf Response.Write "Product ID …
It looks like you've got it right except for the minus sign, (it should be a comma)... [CODE] DATEDIFF('date_finished', 'date_started') AS numberDays; [/CODE] [QUOTE=katties;1207399]Hi is it possible to count days between columns, something like [CODE]datediff(date_finished-date_started) as 'days'[/CODE] only datediff works just with actual dates, and I'd like to have the …
[QUOTE=bidbul;1206797]hello, can you please help me? i wanted some clickable texts which opens not 1 but 2 urls in 2 different iframes. this code works on ie and opera but not on ff. i don't know what to do. thanks! [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> …
The End.
bhartman21