Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
78% Quality Score
Upvotes Received
10
Posts with Upvotes
10
Upvoting Members
9
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
7 Commented Posts
2 Endorsements
Ranked #621
Ranked #505
~57.1K People Reached
About Me

Not much to tell. Married with 4 kids (2 Grown and out of house. WOOHOO!). I have been dealing with Microsoft BSOD's for about 10 years. Have recently started web dev with php and mysql.

Interests
Family, Guitar, Gaming, Fishing and Computers
Favorite Tags

176 Posted Topics

Member Avatar for csshacker

good example here [url]http://www.appservnetwork.com/modules.php?name=News&file=article&sid=8[/url]

Member Avatar for diafol
0
17K
Member Avatar for Ole Raptor

I have a function that calls a php script to update cart items (cookie). When I have multiple items in the cart I use a loop that calls my function. function updateCart(ur){ $.ajax({ url: ur, success: function(data){ console.log(data); } }); } I think this is firing too fast or something. …

Member Avatar for Ole Raptor
0
224
Member Avatar for Ole Raptor

I am having a small issue with displaying text that has been converted with htmlspecialchars. In the db I have this: &amp;lt;b&amp;gt;Testing:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;it&#039;s a test&amp;lt;br&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt; When I use: echo htmlspecialchars_decode($variable); The page displays: <b>Testing:</b><br><ol><li>it's a test<br></li></ol> I am not sure why this is happening. Any help is appreciated. Thank you

Member Avatar for Ole Raptor
0
238
Member Avatar for Ole Raptor

I have been trying to work around a problem but am not having much luck. I have classes that include a file with my db settings. The problem is I have a functions directory that calls some of the classes. I get failed to open stream: No such file or …

Member Avatar for Bob Hensley
0
155
Member Avatar for Ole Raptor

Hello, I have a form that has hit its max for controls. I have created a UserControl to add more to the form. I can re-size the UserControl but the controls on the UserControl are not resizing. I have the Sheridan ActiveResizer tool on the form that works with all …

Member Avatar for WordTickler
0
2K
Member Avatar for Ole Raptor

Hello, I am such a rookie when it comes to C#. I have created a class with a list. I am needing to read an xml file into this from inside the class. Then I am needing to manipulate this list from inside the class as well. I have everything …

Member Avatar for Ole Raptor
0
162
Member Avatar for Ole Raptor

Hello, I am trying to go through a list of comboboxs and set the selected value from the itemdata. So far I have this working for a single combo. I have a few combo's that I need to do this for and was trying to find a way to pass …

Member Avatar for ChrisPadgham
0
170
Member Avatar for Ole Raptor

I am getting this message: value of type "System.data.datacolumn" cannot be converted to "System.windows.forms.datagridviewcolumn" when I am trying to add a column to the dgv [code=vb.net] Dim dtcCheck As New DataColumn("Select") dtcCheck.DataType = System.Type.GetType("System.Boolean") dtcCheck.DefaultValue = False Dim sa As New SqlDataAdapter("SELECT * FROM therapy", myconnection1) sa.Fill(ds, "Therapy") dgvther.DataSource = …

Member Avatar for concepcionmark
0
5K
Member Avatar for serkan sendur

Not sure if that is possible. Can you not install management studio express to make any changes to your DB?

Member Avatar for optician
0
272
Member Avatar for Ole Raptor

I am having an issue creating a stored procedure but I keep getting an error "Error Code : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE PROCEDURE sp_Insert_Address ( in p_UserID …

Member Avatar for Ole Raptor
0
148
Member Avatar for Ole Raptor

hello, I have found a set of functions to return values from mysql queries. I have the array filled but I am not sure how I am going to display the data. Any help is greatly appreciated. [CODE] $db->select('awf_users'); print_r($db->result); [/CODE] my result is: Array ( [0] => Array ( …

Member Avatar for Ole Raptor
0
128
Member Avatar for sganandhsg
Member Avatar for The Dude
Member Avatar for codeorder
2
685
Member Avatar for Ole Raptor

Hello, I am having an issue with my legacy app saving files to Windows 7 machines. My first thought was that I would just run the program as administrator but that helped none. I have attempted saving this image to the temp folder and to appdata but neither seems to …

Member Avatar for AndreRet
0
160
Member Avatar for somedude3488
Member Avatar for gingank
Member Avatar for tecktalk

[url]www.w3schools.com[/url] is a good place to start. you will get the basics and if you want more indepth articles you can go to [url]www.php.net[/url]. there are many different books you can purchase. but these two sites and google is a great start to learning php. when you are ready to …

Member Avatar for terabyte
0
131
Member Avatar for marvan
Member Avatar for Ole Raptor

Hello, I am having an issue with a data filled combo box. I can not put my finger on why it is giving me the "run-time error 424 object required" error. The code is simple and the data is there. [code] Dim sSql As String Set rsMfg = New ADODB.Recordset …

Member Avatar for Ole Raptor
0
92
Member Avatar for cpeeyush1

I know not everything done with torrents is "Illegal". Usually if they are free ebooks and such you will have other alternatives to get the download. I would suggest speaking to the network administrator and being able to prove that they are free and not illegal downloads.

Member Avatar for makyy
0
291
Member Avatar for ianmcd78

with the if statement your session will only be set if the app is blank. i would try it with an isset [code=php] <?php session_start(); if(isset($_POST['app'])){ $_SESSION['app_name'] = $_POST['app']; } ?> [/code]

Member Avatar for rajarajan2017
0
86
Member Avatar for twelvetwelve

try this [code=php] $tutorname = mysql_query("SELECT Personal_tutor FROM Student WHERE student_ref = '".$username."'"); [/code]

Member Avatar for Ankit_Parmar
0
282
Member Avatar for Ole Raptor

Hello, I am having a problem getting variables in my function. Below is my code and an explanation of how it is being called. 1. I set the vars: [code=php] error_reporting(2047); require_once('XML\RPC.php'); define("SITECODE", 000000); define("REQUEST_URL", "/external/request.php"); define("REQUEST_SERVER", "domain.com"); define("REQUEST_PORT", 443); define("XML_DEBUG", 0); $software_name = "domain.com"; $messages = array(); $errors = …

Member Avatar for Ole Raptor
0
180
Member Avatar for Nahiyan

[QUOTE=Nahiyan;1243761]I am new to PHP and I discovered a new trick, I want to create a script and if $pagea=1 then it will display the contents of page [B]a[/B] and so on but I want to know how to make a button or anything that is kinda like link and …

Member Avatar for Ole Raptor
-1
108
Member Avatar for niths

just at a quick glance i am not seeing a session_start() at the top of your code.

Member Avatar for niths
0
59
Member Avatar for Ole Raptor

I am having issues with the following script. I don't see anything wrong here. Very basic but it is giving me a headache. Any suggestions are welcome. I am running version 5.1.37 and the error is: Error Code : 1064 You have an error in your SQL syntax; check the …

Member Avatar for griswolf
0
955
Member Avatar for jwaldron82

me personally. i would transfer everything from the access db to sql express. but that is just me

Member Avatar for mhahnel
0
525
Member Avatar for Ole Raptor

I have searched and I have searched but I can't find a way to display all instances of SQL Server in a combobox. Any help is greatly appreciated.

Member Avatar for johnhtod
0
871
Member Avatar for jlenyi

This sounds to be a network issue. I would try setting this machine up wired and see if it makes a difference.

Member Avatar for jlenyi
0
101
Member Avatar for ryy705

you can get an idea how this works if you look at this article [url]http://www.dmxzone.com/showDetail.asp?TypeId=2&NewsId=3992&LinkFile=page1.htm[/url] on page 3 it talks about doing this with php/mysql.

Member Avatar for Wraithmanilian
0
188
Member Avatar for Ole Raptor

Hello, I have been coming to this site for help and to add a little of my knowledge. I found a great promotion from Microsoft. This is called BizSpark. I wanted to share it with the community that has helped me. You can get all of the information from [url]http://www.microsoftstartupzone.com/pages/home.aspx[/url] …

Member Avatar for jbennet
-1
136
Member Avatar for mpande

if it is a specific item you are looking for why search through mulitple records? [code=vb] sSQL = "Select fields from table where id = " & productid & " [/code] then you can run your do while.

Member Avatar for omoridi
0
219
Member Avatar for Ole Raptor

I am wanting to display the PC's System Directory in a treeview. I have been searching for how to do this for some time now without finding anything. if anybody can help me out i would greatly appreciate it. thanks

Member Avatar for GeekByChoiCe
0
146
Member Avatar for JerieLsky

try this [code] "WHERE [tblUserAccount].[UserID] = '" & roleUserID & "'" [/code] single quotes around roleuserid

Member Avatar for vb5prgrmr
0
218
Member Avatar for rahal4463

This could be caused by many different things. Did you receive any error messages? Has the problem repeated? What were you doing when this occurred? There are many questions to be answered. My computer shut down doesnt give us any idea what could have caused this.

Member Avatar for caperjack
0
112
Member Avatar for monq

scanners do the same thing as a keyboard. read from the barcode and places the text in the program. thats about it

Member Avatar for Ole Raptor
0
172
Member Avatar for Ole Raptor

I have a dell inspiron E 1705 with a nvidia geforce go 7900 gs. I believe the problem is with the graphics. I have recently downgraded from Vista to Xp pro. Everything worked great for the first 10 hours. Now i cant boot into the operating system. When trying to …

Member Avatar for Ole Raptor
0
153
Member Avatar for ttqtrang146

once you have your rs setup you can do this [code] Do Until rs.EOF Combo1.AddItem rs!Field rs.MoveNext Loop [/code]

Member Avatar for gdkons
0
147
Member Avatar for craigallansmith
Member Avatar for LoNe_KiD08

that redline means that you are exceeding the report size. in your designer if you will widen from 7.5 to 8.5 you should be okay. and that bottom is because the active reports is an evaluation copy.

Member Avatar for Ole Raptor
0
78
Member Avatar for gauravsolified

have you tried to boot into safe mode? If you will do that and then take note of where it dies when loading and let us know.

Member Avatar for foryounow
0
169
Member Avatar for Ole Raptor

I am having a small problem locating any information on this little problem on the net so I am coming here for help AGAIN. I have a VB6 project that has a combobox. This is needing to display data from my SQL db. I have it displaying the data fine. …

Member Avatar for Ole Raptor
0
264
Member Avatar for raman242001

I am a little rusty at this but i think if you change the uid and pwd to "Uid=" & username & ";pwd=" & strPw & ";" you should have it

Member Avatar for thewebhostingdi
0
100
Member Avatar for Rich13

Your missing your join from. [code=sql] SELECT product.product_id, product.product_description, price.price_list_id from product join price on product.joiningfield = price.joiningfield where product.product_description like '%CLO%' [/code] you need a way to reference the other table in your query. also you will want to research joins and decide what one will best work for …

Member Avatar for mail2saion
0
73
Member Avatar for ramanaths

there may be another way but off the top of my head you can use "or" [code=sql] SELECT id FROM dtlstbl WHERE refid = 1 OR refid = 2 [/code] actually i just did a quick search and found [code=sql] SELECT id FROM dtlstbl WHERE (refid(1,2)) [/code]

Member Avatar for mail2saion
0
74
Member Avatar for rookie77

there are many free proxy you can use. i would test it with the site you are attempting to reach.

Member Avatar for bobissac
0
151
Member Avatar for jaycustom21

if you want to view or edit the Vista BCD (replaced earlier boot.ini) you can follow the instructions at this link. [url]http://www.vistaclues.com/how-to-edit-the-bcd-registry-file/[/url]

Member Avatar for cguan_77
0
112
Member Avatar for devilz

go here. [url]http://www.vb6.us/tutorials/formating-dates-and-times-vb6[/url] it gives different date formats and examples

Member Avatar for devilz
0
549
Member Avatar for Ole Raptor

I have a raid 5 that I am attempting to setup. They firmware is Symbios and while in post I can view the drives and set them up to work on boot. The NVRam is active. Now when I boot the machine the raid says that it has failed. I …

Member Avatar for techniner
0
127
Member Avatar for serdas

The End.