Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #1K

29 Posted Topics

Member Avatar for tony75

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.

Member Avatar for john_111
0
34K
Member Avatar for daniel36

function closeEditorWarning(){ return 'Are you sure?' } window.onbeforeunload = closeEditorWarning;

Member Avatar for Troy III
-1
610
Member Avatar for PF2G

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

Member Avatar for bhartman21
0
83
Member Avatar for zrony

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.

Member Avatar for bhartman21
0
262
Member Avatar for haribo83

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

Member Avatar for nishchal_619
0
4K
Member Avatar for riahc3

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 …

Member Avatar for Troy III
0
172
Member Avatar for reco21

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 …

Member Avatar for bhartman21
0
167
Member Avatar for goltu
Member Avatar for bhartman21
0
120
Member Avatar for laghaterohan

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

Member Avatar for rath.avinash
0
121
Member Avatar for jason830

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 …

Member Avatar for bhartman21
0
242
Member Avatar for gogs85

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

Member Avatar for NETProgrammer
0
114
Member Avatar for eagle1140

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.

Member Avatar for aspproject
0
132
Member Avatar for flipboi15

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.

Member Avatar for jholland1964
0
185
Member Avatar for maketick123

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.

Member Avatar for Arkinder
0
158
Member Avatar for xcarbonx

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]

Member Avatar for xcarbonx
0
173
Member Avatar for drats

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 …

Member Avatar for tesuji
0
117
Member Avatar for Tetsujin_Genin

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 …

Member Avatar for Tetsujin_Genin
0
183
Member Avatar for muth23

you could use a javascript to load the iFrame src based on the page you are loading....something like a javascript switch statement.

Member Avatar for dhruv_arora
0
73
Member Avatar for runjel

do you have a class or style applied to the div tag or the form? if so, it should probably be reviewed and modified.

Member Avatar for runjel
0
108
Member Avatar for Wakesta

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]

Member Avatar for bhartman21
0
90
Member Avatar for needanswer
Member Avatar for needanswer
0
290
Member Avatar for Bashir ahmad

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.

Member Avatar for Bashir ahmad
0
102
Member Avatar for bbman

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 …

Member Avatar for Ene Uran
-1
125
Member Avatar for vallikasturi

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

Member Avatar for bhartman21
0
733
Member Avatar for danielkull

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

Member Avatar for danielkull
0
109
Member Avatar for Umaid

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 …

Member Avatar for ch_shoukat222
0
108
Member Avatar for jenroar

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 …

Member Avatar for bhartman21
0
237
Member Avatar for katties

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 …

Member Avatar for katties
0
101
Member Avatar for bidbul

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

Member Avatar for bidbul
0
177

The End.