No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
16 Posted Topics
Re: You should be able to crack the case and pull out the HD and either put it in a new external case or hook it to a ribbon cable on your PC to pull all the data off of it. At that age it is most likely a PATA drive … | |
I need some help here. I am writing a little desktop app that monitors my ToDo database and whilst it works great when run once, it kind of freaks out when I run it from a timer. As in all the labels start repeating. Below is the entire code. Imports … | |
Re: if this is the one from 2002 you may have problems using windows Vista/7/8 as people are having issues finding WDM 1.x+ drivers for it but have you taken the time to go to Dell's support site and searching for them there? | |
Re: install the drivers for your nic and make sure the botton is pressed on the case to enable wifi. But it sounds like you have a hard drive issue. Boot to the Install DVD and run a system repair. See if that fixes it. If not re-install windows [it will … | |
Re: 1st right-click Computer > Properties > Advanced System Settings > Advanced Tab > Environment Variables at the bottom. Click New and put devmgr_show_nonpresent_devices in the Variable Name and put 1 in the Variable Value and press ok until your out. Then load device manager and click view and then select … | |
Re: you should talk to the dev who wrote the program for you. Cracking a program is not what this forum is for. | |
![]() | Re: SSD's are best run as AHCI. It also depends on which OS you are running and which chipsets they are running on. Modern OS's [vista/7/8] and newer chipsets need to support TRIM or else your SSD will degrade over time. [Click Here](http://thessdreview.com/ssd-guides/optimization-guides/the-ssd-optimization-guide-2/1/) is a great guide on optimizatons. |
Re: You need to look at the motherboard, Foxconn tend to use substandard parts and have an issue with puffing capacitors. Take a look at these photos [Click Here](http://ww2.justanswer.com/uploads/ricke1973/2010-05-17_170604_bad_capacitors.jpg) and here [Click Here](http://ww2.justanswer.com/uploads/SelectTronix/2011-11-27_220850_capacitors.jpg) to see if your board is suffering from this. Also you should download and run this [Click Here](http://www.memtest86.com/) … | |
Re: Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Dim TDID = CType(CType(sender, System.Windows.Forms.Button).Tag, String) Dim con As SqlConnection = New SqlConnection("Data Source=" & ServerName & ";Initial Catalog=" & CatName & ";Persist Security Info=True;User ID=" & DBUserName & ";Password=" & Password & "") Dim cmd As New SqlCommand Try … | |
Re: It helps to know WHAT OS you are running. XP handles start ups different then Vista/7/8. Also x86 handles different than x64 if there are lowlevel hooks. There are 2 keys in Windows that deals with startup items [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] IF you place the link to your EXE in either … | |
Re: you can try using the control panel that comes with the drivers for the video card. XP by default doesn't have the info to know about multi-monitors. If it's AMD then get the Catalyst Drivers and if it is NVidia get thier drivers. Once you install the drivers you should … | |
Imports System.IO Imports System.Net.Sockets Imports System.Text Imports System.Net.Security Public Class Form1 Dim PopHost As String = "my mail server" Dim UserName As String = "my user name" Dim Password As String = "my password" Dim PortNm As Integer = "110" Dim POP3 As New TcpClient Dim Read_Stream As StreamReader Dim … | |
I am trying to read through a text file and pull out bits of information I need. I have it 1/2 working but need to figure out how to loop through it to get the other 1/2 Sample log file '-------------------------------------------------------------------------------------------------------------- [01:32:18.281] [@Flos'tok] [@Flos'tok] [Force Valor {875503313485824}] [ApplyEffect {836045448945477}: Force … | |
Re: have you tried using Microsoft's WMI code creator? http://www.microsoft.com/en-us/download/details.aspx?id=8572 seems you could use it to get the specifics you need. Thing is WMI doesn't always have all hardware specific info, some of that is propritary info from the board/card/chip manufacturers and usually the info on reading that info is available … | |
[CODE]<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <addon id="plugin.video.stagevu" name="StageVU" version="1.3.6" provider-name="AJ"> <requires> <import addon="xbmc.python" version="1.0"/> </requires> <extension point="xbmc.python.pluginsource" library="default.py"> <provides>video</provides> </extension> <extension point="xbmc.addon.metadata"> <summary>stagevu: Watch video</summary> <description>Watch what you have been searching on internet.</description> <disclaimer>The video add-ons hosted by my XBMC add-ons repository(aj add-ons) makes no warranties, expressed or implied, and hereby … |
The End.