- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 8
- Posts with Upvotes
- 8
- Upvoting Members
- 7
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
44 Posted Topics
| |
Re: Try this (if applicable) If the cd/dvd combo drive allows you to remove it from the computer and then push it back in firmly. Sometimes they can have a crappy connection. If that doesn't work then you have to chalk it up that it is dead and hope that you … | |
Re: You should be able to install the libraries via: sudo apt-get install curl libcurl4-dev libcurl4-gnutls-dev libcurl4-openssl-dev from any terminal I am not sure what you are attempting but none-the-less be cautious of the linker. | |
Re: [URL="http://www.ocmodshop.com/ocmodshop.aspx?a=1672"]Game Glove[/URL] | |
I have two tables tbl_1_id_pk tbl_1_diska_fk (relationship) ---> tbl_2_id_pk tbl_1_diskb_fk (relationship) ---> tbl_2_id_pk and tbl_2_id_pk tbl_2_name When I create views/queries for the name for each disk, it returns nothing. Why? | |
Re: What type of control are you trying to add the data to? Datagridview is a very useful control! What you want to do is take your array and bind it to a datatable and set the datasource on the datagridview control... As such: [CODE]Dim rectArray(,) As Integer = {{1, 2, … | |
Re: Try this: [URL="http://www.christopherjason.com/personal-computing/nvidia-nv4disp-problem/"]http://www.christopherjason.com/personal-computing/nvidia-nv4disp-problem/[/URL] Not sure what the actual error is that your having, but I hope this helps! If it is not, then please provide us with some details... | |
Re: Have you looked at using RegEx's? i.e. [CODE] import java.util.regex.*; .... String regexp = "\\\\W"; String[] words = content.split(regexp); System.out.println("Total words: " + words.length); .... [/CODE] Syntax maybe messed-up, but I am not in front of a jdk-installed machine. HTH's for the vowels try this: [CODE] String regexp = "[aeiou]"; … | |
Re: Have you done a BIOS/Firmware upgrade on the machine yet? Did you use doping between the new Processor and Fan? It's hard to say, but if it boots fine and runs for x amount of time, I would think it's either a overheating issue, power supply-related issue, or a BIOS-related … | |
Re: A clicking sound? Well then I would check out the hard disk.... There are only a few "moving" parts on a computer and if there was a physical clicking then I would start there. HTHs | |
Re: Try and setup a batch file to call the *exe passing any args to it and set it in the scheduler and see if it runs. I have had issues in the past and that seemed to resolve it. Also you can log the batch file output. Be sure to … | |
Re: I had attempted to use the same code with the latest referenced *dlls and on some PDFs I would get junk text, while others I had gotten everything. It's probably has to do with the format of the PDF (i.e. OCR'd, not indexed, non-standard text, etc...) Debug the code and … | |
Re: Run a memory check on your RAM... If your motherboard has a utility or you can use [URL="http://www.memtest86.com/download.html"]Memtest86[/URL] .... What could be happening is when you start loading specific apps and it starts to address the higher banks of the memory it could be causing the faults. If you do … | |
Re: Give this site a whirl... I have used it before... [URL="http://computerprogramming.suite101.com/article.cfm/a_mid_string_function_for_c_and_c_"]http://computerprogramming.suite101.com/article.cfm/a_mid_string_function_for_c_and_c_[/URL] HTHs! | |
Re: [QUOTE=niessen;1154891]Is there any way I can get around this without re-developing the (several) forms using the VB6 system?[/QUOTE] In your VB6 code are you pointing to the latest versions of the *.DLLs?? They typically are backwards compatible, but may require minimal changes if needed. What are you using to deploy … | |
Re: [QUOTE=posit1;1154854]I have no reason not to believe this, but would like to confirm it with any experienced KeePass users.[/QUOTE] I cannot help you with this, for I use LastPass.... But in theory if you generate the containers Hash/Password I have no idea how they would be able to backdoor it, … | |
Re: Look @ using jQuery and the .fadeOut method on the label HTHs! | |
Re: Are you trying to output all fields in this XML formatted document to CSV? | |
Re: Change your full filepath to: [CODE] open (file,'C:\\Documents and Settings\\soea\\Desktop\\Test.docx') || [/CODE] and give it a go. HTH's sinnerFA | |
Re: Change DataComboMasterPolicy to DataComboMasterPolicy.SelText HTHs SinnerFA | |
Re: Also check your hosts file typically located @ c:\windows\system32\drivers\etc\hosts I have seen many attacks that redirect anti-virus sites to your loopback adapter disabling you to install/update. HTHs sinnerFA | |
Re: Not sure what version of the adapter you have, but here is the drivers for V2: [URL="http://downloads.linksysbycisco.com/downloads/driver/1224642869503/WUSB600Nv2_Win7_3_1_0_1_0.zip"]WUSB600Nv2_Win7_3_1_0_1_0.zip[/URL] and the [URL="http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=20873"]Directiosn to install manually[/URL]. Also from my understanding you can install the latest vista supported drivers and install them without any problems in Win 7.... You can give it a try: … | |
Re: What IDE controller? When you look @ the device manager does any of the items have a yellow excalaimation or a description of unknown? If there is nothing wrong in the device manager then you need to goto disk manager and just add a mountpoint (i.e. E:, F:, etc...) To … | |
Re: Here is a good example by using taglib and import functionality: [URL="http://www.java-tips.org/java-ee-tips/javaserver-pages/how-to-include-content-from-outside-a-jsp-co-8.html"]JSP to Include External[/URL] Also one point, unless things have changed, from what I recall is the jsp:include only allows for "local" resources to be fetched. I have used a similar method before and it worked quite well... HTH's … | |
Re: Please look into System.Diagnostics.Process Official Microsoft URL: [URL="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx"]System.Diagnotics.Process[/URL] For example here is a simple call using processId ( but you can use by processName as well just check out the Methods): [CODE] using System.Diagnostics; using System.Diagnostics.Process; public class Form1 { private void { Process poo = default(Process); poo = Process.GetProcessById(3916, … | |
Re: [CODE] Option Explicit On Option Strict On Imports System Imports System.Collections.Generic Imports System.Linq Imports System.Xml Imports System.Xml.Linq Imports System.IO Public Class Form1 Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim xmlDoc As XDocument = XDocument.Load("feeds.xml") Dim name As XElement Dim names As IEnumerable(Of XElement) = … | |
Re: I believe it maybe because you are doing preparedStatement.close & connection.close.... Do you have the complete stack trace? | |
Re: I have previously used [URL="http://devernay.free.fr/hacks/cminpack.html"]cminpack[/URL]... Which is a port of the FORTRAN minpack. It works pretty good and should help yout out with your research. Make sure you download the source from the "Distribution" section... HTH's sinnerFA | |
Re: I do believe that this is a function of the printer and the drivers associated with the printer. Excerpt from the Acobat 8 Professional Help Guide: [I]"Multiple Pages Per Sheet Enables N-up printing, where multiple pages print on the same sheet of paper. If this option is selected, you can … | |
Re: You cannot get an external MAC address of a user without having local LAN access to them... UNLESS: you have access to a good ARP table and only if the client is connected DIRECTLY to the php server (if there are routers/gateways that NAT the traffic, the returned MAC address … | |
Re: [URL="http://www.linuxtopia.org/online_books/Linux_Kernel_Module_Programming_Guide/x958.html"]Syscall[/URL] I recently used this... HTH's sinnerFA | |
Re: [URL="http://mindprod.com/jgloss/obfuscator.html"]obfuscator[/URL] It doesn't stop the "decompiling" or reverse engineering... But it does make it a little harder to follow. HTH's | |
Re: Here is a excellent guide on doing what your asking: [URL="http://forum.videohelp.com/topic248307.html"]Video Watermarking[/URL] Btw, I used it before with great success! HTH's | |
Re: If you do a FileCopy from the Audio CD to Hard Drive the file type is going to be *.CDA not *.MP3 (for example)... Not to mention the size of a CDA file compared to MP3 is HUGE (because it is a PCM file)! You need to look into Ripping/Encoding … | |
Re: Does your code throw any exceptions? I am looking @ your code and I do not see any port config info (baud, parity, etc...) Check this out: [URL="http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx"]MSDN system.io.ports.serialport[/URL] HTH's... | |
Re: Try this: [CODE]Dim src As String = Chr(32) & "bet" & Chr(32)[/CODE] Not sure if it will solve your problem, but it appears as though it is being trimmed (trim())... | |
Re: Code would help, but I sounds like you are declaring a variable in one Sub or Function and attempting to use it in another.... You can try one of these options: 1.) Declare the variable in the prologue section (outside of all Sub's and Function's) [CODE]'Top of VB File Option … | |
Re: If that is all the code, you appear to be missing a connection object (the cn object located on line 8). ADD above line 6: Set cn = new ADODB.Connection strConnectString = "Driver={SQL Server}; Server=myserver; Database=mydb; UID=sa; PWD=password" cn.ConnectionString = strConnectString strConnectString needs to be set to whatever Data source … | |
Re: [CODE]Private Sub cmdSquare_Click() Dim i i = InputBox("Please enter a number.", "Input Box") MsgBox "The square of " & i & " is " & (i ^ 2), vbOKOnly, "Result" MsgBox "The square root of " & i & " is " & Sqr(i), vbOKOnly, "Result" End Sub[/CODE] The issue … | |
Re: Here is the PHP requirements for MSSQL connectivity: [URL="http://us.php.net/manual/en/mssql.requirements.php"]PHP Requirements[/URL] Pay attention to the note for SQL 2005 and higher! [QUOTE]Note: On Windows, if you're using MSSQL 2005 or greater you must copy the ntwdblib.dll into the directory where you have installed php and overwrite the one thats already in … | |
Re: Dumb Question: Does the path that it is complaining about exist? | |
Here is a sample of the XML that I am starting with: XML: any.xml [code] <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="any.xsl"?> <root> <device> <device_Info> <name>Name 1</name> <type>Type</type> </device_Info> <drive_Pair> <status>Ready</status> <Local> <l_name>10E5</l_name> </Local> <Remote> <l_name>0651</l_name> </Remote> </drive_Pair> #Can be 1 or many <drive_Pair>'s {<drive_Pair> ... </drive_Pair>} # Can only be … |
The End.