- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
316 Posted Topics
Re: Boot into your BIOS and change the boot Priority. Make sure the USB boot Device is *after* your primary hard drive. | |
Re: I would be careful about Link Market. Alot of their links are phony. I have tried them beforew and found the best way is to simply build a one on one relationship with webmasters to exchange RELEVANT traffic. Meaning you don't put your SEO article on a jewlery site. | |
Re: Why not just use DAO? Much Cleaner in my opinion [code] Dim rst As DAO.Recordset Dim db As Database Set db = CurrentDb() Set rst = db.OpenRecordset("select [field1],[field2] from table where [fieldID] = '" & Me.Something.Value & "'") rst.Close Set db = Nothing End If [/code] | |
Re: Rather then type this all out have a look here: [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;304040[/url] | |
Re: [code] Private FileName AsString Dim sr As StreamReader Function MyParseFunc(ByVal strFileName AsString) Try FileName = strFileName sr = New StreamReader(FileName) 'using streamreader to read the opened text file Dim strHTml AsString = sr.ReadToEnd Dim userinput AsString = variable_passed Dim strStop AsString = "#end#" 'put this at the end of the … | |
Re: [QUOTE=ramukumar;1158137]Hi all, I want to use php variable for example $Lang[0] in the href as <a href=$Lang[0] target=_blank> where $Lang[0]="http://www.dailyhungama.com" thanks in advance[/QUOTE] [code] <a href="<?= $Lang[0] ?>" target="_blank">My Lang Link</a> [/code] | |
Re: You probably have the wrong character set loaded and it is not seeing the characters properly and is expecting a > or < | |
Re: I create barcodes for our MFG plant all day long.. Its very simple. We use intermec printers & 139 barcode standard. All you need to do is build a flat text file with all the barcode commands ie; STX ,ETX etc etc and then fire the file to the printer … | |
Re: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.Text; using System.Windows.Forms; namespace Watermarking { /// <summary> /// An Image Watermarking Utility /// </summary> public partial class frmWatermark : Form { #region Member Variables string CurrentFile; Image img; ImageCodecInfo myImageCodecInfo; System.Drawing.Imaging.Encoder myEncoder; EncoderParameter … | |
Re: Create a Movie Rental Systems....teahcers & Professor Love that stuff cause it deals with all aspects. Youu make an ON Loan, In Stock, Out Of Stock type system with admin panel to add,edit , delete movies Then the fornt end is a form to request a movie and read the … | |
Re: I tried a piece of software called Professor PageCraft... << url snipped >> Got me good postioning in the engines and did in fact increase traffic | |
Re: [QUOTE=obiztek]Following eqation I suggeste which has been very helpful indeed :- "Focussed website content + Ethical SEO practices + Link building with good relvant website sites" Getting crazy for too much Page rank is not required really and does help really .I have seen many websites where just by increasing … | |
Re: OK first things first... Cleanse ALL DATA before being submitted. You can do this with functions to make sure the usernames are X amount of characaters and numeric or non numeric. Next. What database is this? No matter which what you want to do is this: Create a temp table. … | |
Re: If its XP machine you can attmept a System Restore. GO back to yesterday or something... Only shot if you did not back them up. | |
Re: Work with the Northwind Database. Work with first developing inserts and deletes form a database. Then work your way to Edits and Searches Then work your way into Do Loops, While, Next For Each Its hard to say where you should start not knowing your prexisting backgorund. but start small … | |
Re: Ok first try opening up the system. Disconenct the IDE cable. Disconnect the power. Let it sit. Disocnenct the power from the PC and let this sit as well. After about 5 minutes plug it all back in and see if comes back. I have seen this with Dells before... … | |
Re: Put the check boxes in a form [code] <form method="post"> <input TYPE="checkbox" NAME="five" VALUE="5" checked>Five <input TYPE="checkbox" NAME="ten" VALUE="10" checked>Ten <input type="submit" name="go" value"Submit This"> <form> [/code] Then Above that you put: [code] <? if ($go) { $add_this=$_POST['five']; $add_that=$_POST['ten']; $total=$add_this+$add_that; echo $total; } ?> [/code] | |
Re: [QUOTE=ryy705;1158120]Hello, I've cut up a single image into two and I would like them to sit on top of each other. Unfortunately, I can't get rid of the empty space between the two images. How is this done? Please copy and paste the code if you wish to view it. … | |
Re: [QUOTE=darek9576;1158132]Could anyone give some info on the printf() method.. I know we can put %d and %s in the format argument so that it takes a string data type and a decimal data type but apart from that are there any other uses of printf()? some simple examples will do … | |
Re: [QUOTE=simonblack;1158121]Hi I have a P5GD2-X that I'm thinking about upgrading. I'm confused about what it can take though. In the Manual it says, PCI Express x16 and people online say that any PCIe card is backward compatible. My question is what kind of card will be worth it. As I'm … | |
Re: [QUOTE=NiGhtMarEs0nWax;1158014]Hi, I'm looking for a router than has an RJ45 WAN interface, and at least 2 RJ45 LAN ports. It also needs to have WPA-AES capability and an SPI based firewall. I saw [URL="http://www.solwise.co.uk/3g-routers-3g-esr-6650.htm"]this[/URL] one but was a bit concerned about the 3G 'tag' in its name. could I safely … | |
Re: Well this is a loaded question. What is the url of your current site? I can give it a once over and tell you some pointers. Basically you want to keep relative fresh content pouring into your site. Optimize specific keywords and focus on getting high SERP on those words. … | |
Re: Ok First off: [url]http://www.microsoft.com/downloads/details.aspx?FamilyID=6C050FE3-C795-4B7D-B037-185D0506396C&displaylang=en[/url] Second.. Add these librarys in your project Microsoft Activex Data Objects Recordset 2.7 Library Microsoft Activex Data Objects 2.7 And finally.. [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;238401[/url] | |
Re: You have a permission issue and the file is being stored with out the everyone permision being read. | |
Re: Well without seeing your code I can only show some examples of proper usage: [code] <?php $myArray=array('aa','bb','cc','dd'); while (list ($key, $val) = each ($myArray) ) echo $val; reset($myArray); while (list ($key, $val) = each ($myArray) ) echo $val; ?> [/code] [code] <?php /* example 1 */ $i = 1; while … | |
Re: Using my remote servcies I am pretty sure I can get rid of that. | |
Re: You have been hit with spyware. Chances are toolbars and BHO's are causing the slow down in your browser. Post a hijackthis log. | |
Re: You will first want to include the winet.ocx Then write code acordingly. Some very helpful standard modules: [url]http://www.thevbzone.com/s_modules.htm[/url] | |
Re: Yes, first make sure ModRewrite is enabled on your server. Then use .htaccess to rewrit urls. Then something to this effect: Options +FollowSymLinks RewriteEngine on RewriteRule details-cart-(.*)\.html$ details.php?cart=$1 It would make it SEO friendly. I think that's what you are after. | |
Re: See the Attached file. Study the code and read the comments and it will walk you through creating a class | |
Re: Not sure if they would allow you to ... But why not make something for the upincoming football season.. Odds.. Lines... Under Over.. this sort of thing... | |
Re: Thats a good thing!! I totally HATE web sites that have music in them.. .aside form a flash demo or something.. argh | |
Re: [code] Here is the old VB6 Way Private Sub DrawLine() Dim bit As Bitmap = New Bitmap(Me.Width, Me.Height) Dim g As Graphics = Graphics.FromImage(bit) Dim myPen As Pen = New Pen(Color.Blue, 3) Me.CreateGraphics.DrawLine(myPen, 0, 0, Me.Width, Me.Height) End Sub [/code] Here is the C# .NET way [code] protected override void … | |
![]() | Re: If the printer does not have wifi built in then you must use a USB cable which can be purchase at a local store or online. If it has wifi then it is already online and you can install it as a network printer. |
Re: Most likely not. If it is configured right then it will check the MAC from the wifi access point you are connected too. You might want to go over to the other building and get those MAC's and see if you can spoof those instead. If they are using a … | |
Re: What will this "Top Secret" platform need to be able to do? | |
Re: Could be a bad stick of RAM. Also could be video card driver issue? Is it possible to remove the current driver and install the MFG's version of it? | |
Re: Broadcasting without permission can always warrant a legal battle. It just depends how big he gets or who he pisses off. In regard to the technical aspect, setting up a podcast/shoutcast server would be the best/most affordable way to go. | |
Re: From what your describing it sounds like you want Isolation mode: [url]http://technet.microsoft.com/en-us/library/cc753285.aspx[/url] | |
Re: Looks good but I think the "Package with" could have been consolidated with the creature. But I may not understand how the game works. Meaning I buy a creature and it "comes with" or is "packaged with" something. If thats the case then you could drop that in the creatures … | |
Re: Essentially what you want to do is create an array of images and hide them off the form to start. Now on load or on push of a button simply run a rand() function and call to array image[x] Display it on a grid or wherever you want the user … | |
Re: Is the drive SATA? It may be listed as SCSI if it is SATA | |
Re: It sounds like an overheating issue. The BIOS is shutting down the system. Check for failing fans. | |
Re: What exactly are you calculating? Dimensions? Size? Can't see why its not possible. Just not enough info to help further. | |
Re: Using standard security: [code] Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword; [/code] Using Trusted: [code] Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI; [/code] Just curious, why aren't you using the data source tools in Visual Studio to basically drag and drop your connection and display data grid? | |
Re: I had a very similar issue. The solution was to upgrade the bios on the machine itself. I believe it needed 4.x or higher but it was a very long time ago. Visit HP site and upgrade the BIOS on that LH4 | |
Re: [QUOTE=! !][url="http://www.zoominfo.com/PeopleSearch/how.asp"]http://www.zoominfo.com/PeopleSearch/how.asp[/url][/QUOTE] Are you the owner of this site? This to me is borderline spam........ Plus that thing is awful it is not even accurate. | |
Re: I have seen this before.. Next time you login when the page goes blank hit F5.. Now it loads right? Your problem is internet settings (possibly changed by spyware) Open IE Tools | Internet Options | Advanced Restore Defaults Tehn Goto Programs Reset Web Settings Then Goto general Delete Offline … | |
Re: [QUOTE=vabxxx007]Dear All, My google adsense account is been activated so as my domain name. Can i register with other domain name. Also if yes then can i apply the scripts of google adsense to the domain which is deactivated. One more thing if in near future if the content in … | |
Re: Well whats known as a solution in .NET is a project in VB6. Just INCLUDE the 1st project in the second.. or compile the first exe and ADD THE reosurce. A Dependacy will work fine. |
The End.