Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K
~27.2K People Reached
Interests
Emulation

71 Posted Topics

Member Avatar for Alvein

*Read well before reply. This is a special case* ;) I can remotely-admin a machine by using VNC software or default Windows Remote Desktop, but what if for security reasons, I cannot connect from outside? I need something like "reverse" remote connection. See, in a normal case, I am the …

Member Avatar for aliasgar.babat.1
0
369
Member Avatar for user777

[QUOTE=user777] With Adodc1.Recordset .FindFirst "SName like '" + Searchvar + "*'" If .NoMatch Then 'record not found[/QUOTE] Obviously "FindFirst" is not supported (neither "NoMatch"). But let's simulate it: [CODE] .MoveFirst .Find "SName like '" & Searchvar & "*'" If (.EOF) Then 'record not found[/CODE]

Member Avatar for AndreRet
-1
2K
Member Avatar for habhater

[QUOTE=habhater]I just bought a new computer and was wondering if it has pci-e........is there a way to tell? its a acer but thats pretty much all the info i know about it......i dont know the name of the mobo[/QUOTE] Go [URL=http://www.cpuid.org/cpuz.php]here[/URL], download the tool, save a report and post it …

Member Avatar for caperjack
0
1K
Member Avatar for murali1

Hi, Assuming you have experience with ADO, you should download and install [URL=http://dev.mysql.com/downloads/connector/odbc/3.51.html]MySQL Connector[/URL], and then, use a connection string like: [CODE]Driver={MySQL ODBC 3.51 Driver}; Database=[B][I]database_name[/I][/B]; Server=[B][I]server_address[/I][/B]; Port=[B][I]server_port[/I][/B]; Option=19; Stmt=; Uid=[B][I]username[/I][/B]; Pwd=[B][I]password[/I][/B][/CODE] [B][I]server_address[/I][/B] can be also a name. [B][I]server_port[/I][/B] will be 3306 most of time. Hope this helps.

Member Avatar for AndreRet
0
2K
Member Avatar for flidshaflihliah

Are you sure your computer works fine excepting the no-display problem? Why? How much RAM did you have previously? How much RAM did you add? Remove the extra RAM. Restart your system. Everything ok? Relocate the extra RAM in another slot or swap it with the existing one, etc.

Member Avatar for caperjack
0
289
Member Avatar for zaiboot

[QUOTE=zaiboot]Hi, i need some help with a directive called ASSUME, and i have to write a program that display a string but i can't use .code nor code and i have no idea of how can i make it work. Besides i can't find information about ASSUME. Please someone help …

Member Avatar for Triggerlife
0
3K
Member Avatar for ankara84

[QUOTE=Narue]Why don't you just tell us your teacher's email address so that we can send the program directly?[/QUOTE] :mrgreen: isn't this the "black market" forum?? :mrgreen: Anyways, IMHO, that's fair if you are only taking a simple course because of the credits, etc., and you are not studying something directly …

Member Avatar for Nick Evan
0
2K
Member Avatar for karen_CSE

Though it's not a thing to learn by cut-n-pasting other's source code, it's not a thing to re-invent yourself either (mainly if you're a beginner). Look [URL=http://www.cprogramming.com/tutorial/computersciencetheory/sorting1.html]here[/URL] for a really simple tutorial about sorting, with source code. Save the site for future reference. It has a lot of content for …

Member Avatar for damz1919
0
172
Member Avatar for blackdove

After some step-into's, I see your program backtracks well, but the "dead-ends" are not removed. Though it can move forward, the previous cells are not cleared, so it show duplicated numbers in the board. Let's say the algorithm is ok, but the problem is C++ and the way you expect …

Member Avatar for RehabReda
0
2K
Member Avatar for ctm in trouble

[QUOTE=ctm in trouble]additional info that might be helpful: the files are mpg files from limewire, but not regular mpgs, but rather the temporary preview files that are created when you preview files that is not fully downloaded. when i try to delete the files I get the collowing message: "Cannot …

Member Avatar for reganstar
0
481
Member Avatar for odelya

Isn't setItemInfo applicable only to something like currentPlaylist or currentMedia? About the error, try removing parenthesis when calling setItemInfo. Is that VB6, BTW?

Member Avatar for technogeek_42
0
253
Member Avatar for ianc

[QUOTE=ianc]netscape runs up to 99% how do i stop this from happening i apologise if im being a pain :o :o :o :o[/QUOTE] I use Mozilla (Netscape based) and sometimes it has the same problem. I have to close the app and restart it later. I've also noticed this happens …

Member Avatar for dewabo
0
464
Member Avatar for Electrohead

Try using Lynx....that was 100% pure text mode. I can open DaniWeb with that but I'm too lazy to browse the site using keyboard commands. :D

Member Avatar for dewabo
-1
809
Member Avatar for zizi

[QUOTE=zizi]hi, could someone plz tell me why do I get this messege when I'm connected to the intenet. "Message from SySTEM to ALERT microsft windows has encountered an internal Error your windows registry is corrupted we recommend a complete sysytem scan" what kind of virus is this and what should …

Member Avatar for esber
0
215
Member Avatar for carmen

You will need to post more details about your project. To record from the "audio card" is one thing, but to do it "using the modem" could mean to make some phone call before start recording. These tasks are not quite difficult, but they implies a lot of lines of …

Member Avatar for gopinathar
0
194
Member Avatar for ravinderreddy

[QUOTE=ravinderreddy]want to capture the system idle time. Means if the user did not press any key or did not move the mouse then it is considered as system idle time. I want the code for this in C or C++ on windows operating system. Please help me.[/QUOTE] Please be more …

Member Avatar for mohit_mar
0
747
Member Avatar for amrfalcon2004

Quick Google search, "intel shift and rotate instructions", gives something like [url]http://webster.cs.ucr.edu/AoA/Windows/HTML/DataRepresentationa6.html[/url]

Member Avatar for qaswqaswq
0
168
Member Avatar for Alvein

Hi, This is a boring problem, long to explain. I will try to make things simple. There is a C library that has a function with this interface: [CODE]void ne_set_server_auth(ne_session *session, ne_request_auth callback, void *userdata);[/CODE] Where ne_request_auth is declared this way: [CODE]typedef int (*ne_request_auth)(void *userdata, const char *realm, int attempt, …

Member Avatar for Alvein
0
151
Member Avatar for complete

[QUOTE=complete]But it seems that I cannot pass the same sort of variables back and forth between the Visual Basic program and the DLL. It seems to crash on the DLL side after a function call is made.[/QUOTE] Could you post your C++ function interface AND the way you declare this …

Member Avatar for Alvein
0
237
Member Avatar for complete

Two words: not possible. More words: maybe with a 3rd-party tool or an IDE enhancement addon. You will have to look for it. I don't have any reference.

Member Avatar for Alvein
0
38
Member Avatar for ironfeliks

If I can remember well, that error means you reached the end-of-file and are trying to get more data from it. Check EOF before to get data and adjust your logic accordingly.

Member Avatar for albash
0
649
Member Avatar for chound

Hello, Just felt lucky with google: [URL=http://www.bandwidthmonitorpro.com/]Bandwidth Monitor Pro[/URL] . Hope this helps.

Member Avatar for nsansari
0
171
Member Avatar for cx323

:-| Strange thing... What you can do is to check the form's action (URL) and parameters, and depending on form's method, use Winsock to get/post the data to the given website. Using iNet control instead, can make easier the process, IMHO.

Member Avatar for The_Inferno
0
105
Member Avatar for Garadan

Go to [URL=http://www.maxtor.com/portal/site/Maxtor/menuitem.8db0c3d6932ced37294198b091346068/?channelpath=/en_us/Support/Software%20Downloads/View%20By%20Category/Desktop%20Storage/DiamondMax%20Family]Maxtor utilities page[/URL] and download MaxBlast 4 (non-Windows!). The .ISO image is also a good option. This program will setup your SATA drive for use with Windows. Depending on your SP version, maybe it's a good idea to install the Big Drive Enabler once the XP setup has …

Member Avatar for dcc
-1
444
Member Avatar for steveaustin

To minimize the risk of being flamed, quickly post your pseudocode (algorithms) for this homework, to demonstrate it's only a programming language issue....

Member Avatar for Narue
0
127
Member Avatar for ! !
Member Avatar for Europa

Hi, Read [URL=http://support.microsoft.com/?kbid=320081]here[/URL] for help. Surely causes 5 or 6.

Member Avatar for chrisbliss18
0
374
Member Avatar for tom_h_500

Quite possible by using [URL=http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shellexecute.asp]ShellExecute[/URL] with [I]lpFile[/I]="cmd.exe" and [I]lpParameters[/I]="/c [B]<your command here>[/B]" (can be also "/k", just read the cmd.exe help).

Member Avatar for jwshepherd
0
188
Member Avatar for Acidburn

[QUOTE=Acidburn]Heres the code....its driving me nuts![/QUOTE] Replace [I]strcpy(buffer, holdingArray[1])[/I] with [I]buffer=strdup(holdingArray[1])[/I]. Or give [I]buffer[/I] enough space (at declaration) to hold the biggest guess word. ;) Your program needs some tunning. Remember to randomize the guess words and don't count successes as failed attempts!

Member Avatar for Acidburn
0
256
Member Avatar for GWats

For Outlook Express, your e-mail stuff could be either the address book or the mail folders (Inbox, etc.). I've not used Win98 for a long time, so I cannot tell you where exactly to look for, but this method will work for sure: For address book, look for "*.wab" in …

Member Avatar for GWats
0
126
Member Avatar for bops

You can use either Kernel32's [URL=http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/getwindowsdirectory.asp]GetWindowsDirectory[/URL] or Shell32's [URL=http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shgetspecialfolderpath.asp]SHGetSpecialFolderPath[/URL] (with nFolder=CSIDL_WINDOWS) to get the Windows folder. Drive letter can be read thru ShlWAPI's [URL=http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/reference/shlwapi/path/pathgetdrivenumber.asp?frame=true]PathGetDriveNumber[/URL]. Ok, this last one's only for API freaks like me. :p

Member Avatar for bops
0
147
Member Avatar for SpS

[CODE]void change() { __asm { add word ptr[ebp+4],7 } }[/CODE] :) Pretty compiler-tied (VC++), but it's another answer...

Member Avatar for SpS
0
147
Member Avatar for user777

Hi, ADODC is just a control that encapsulates some functionality of ADODB (which is a library). At the time you need to start to use ADODB functionality, like to declare a New Recordset (an ADODC already has a property for that, so there's no need to declare a new one …

Member Avatar for Alvein
0
161
Member Avatar for Eku

[QUOTE=Eku]-the Seasonic has 19A on the 12V rail. That's GOT to be enough, darnit! -I tried the card both connected to the PSU and disconnected, same result[/QUOTE] I had 17A there and was able to run my GT for some minutes before a reboot :cheesy: .... I'm sure your Seasonic …

Member Avatar for Eku
0
663
Member Avatar for cancer10

I've been staring at this thread for some time. I think I should post a real case where a proxy helps for something quite legal (at least from a common point of view): there are some places (services, forums, etc.) that denies the access to people not being from the …

Member Avatar for cancer10
0
660
Member Avatar for johnroach1985

[QUOTE=johnroach1985]Hi hope i am writing in right section of the forum trying to create a registry [B](key?)[/B] for my C program which has an .exe . want to work [B](launch?)[/B] on windows start. The program is a kind of firewall program closes ports and opens them only if they are …

Member Avatar for johnroach1985
0
198
Member Avatar for Alvein

Hi, I'm developing a custom service that uses Windows Telephony to alert users when incoming calls are detected. Just point your browser ([U]only IE[/U], sorry) to [URL=http://alvein.gwgaming.net]this link[/URL] and tell me your results. You should have a phone line with CallerID service and a V.92 modem connected to it. The …

0
53
Member Avatar for ingeborgdot@yah

Just use any 3 pin fan with the same size and power requirements. If you want real control, you will need the 3rd pin. For 2 pin fans, the red/yellow cable is 12V (VCC) and the black one is GND. Review the male connector, if VCC and GND are successive, …

Member Avatar for Alvein
0
137
Member Avatar for Cup of Squirrel

[QUOTE=Jetering]I got a 3.2 prescot and Cooler master Hyper 6 and the temperature is 45-52 (idle to fully loaded).[/QUOTE] Hi. Maybe you can post your previous temps with the stock cooler? nice to compare. I'm looking for a new cooler/heatsink. BTW, how about your room temp? .... Sorry to hijack, …

Member Avatar for Alvein
0
466
Member Avatar for user777

[QUOTE=user777]Hi, I want to add a new contact to the table in a database (using ADO Control) but when I write a contact name in a text box it should be automatically changed to upper case even i write in a lower case. Regards, user777[/QUOTE] TextBoxes does have an even …

Member Avatar for invisal
0
102
Member Avatar for milindsaraswala

[QUOTE=milindsaraswala]I have created code to make html file on in root Folder of Application. Now i want when i click on Button it will open in Default Web Browser of the System. PLease Help me ;)[/QUOTE] Read [URL=http://www.daniweb.com/techtalkforums/showthread.php?t=28415&highlight=ShellExecute]this[/URL] thread for options. ;)

Member Avatar for Alvein
0
94
Member Avatar for Gillzor

Help us to help you and post the COMPLETE error you are gettin with this game (and others). We are not psychics.

Member Avatar for Gillzor
0
341
Member Avatar for padmakumar

I don't think a datagrid can manage that. Maybe the unicode version that comes with MSOffice (MS Forms) will do it. I've never worked with that, so I cannot tell you more details.

Member Avatar for Alvein
0
124
Member Avatar for vhinehds

[QUOTE=vhinehds]hello guys!!! im back again, of course with something to ask for your help. anyway here it is...Im now in my last stage of the program i am making. and this includes the e-mail notification by by program, which it gets its e-mail details to be sent in the database. …

Member Avatar for Alvein
0
192
Member Avatar for Alvein

Hi, For some strange reason, Windows says my profile has not been found. I can see the folder and contents (C:\Documents and Settings\Administrator) and everything seems to be ok. However, Windows is unable to save a new config, and everytime I log in, the same error appears. A "Temp" profile …

Member Avatar for kc0arf
0
145
Member Avatar for zeek

C'mon, Narue! :D Ok, here's the deal: code add, subtract, and multiply. Come back when ready. ;)

Member Avatar for vegaseat
0
282
Member Avatar for Alvein

Hello, After some posts, just wanted to be polite and drop a line here. I'm a systems engineer, working part-time as freelancer, and I came to help. See you. PS. I can talk in engrish and spaƱish. LOL!

Member Avatar for xtremeathlete25
0
112
Member Avatar for wani_raj

[QUOTE=wani_raj]is it possible to write a program which will shutdown the remote systme in c?[/QUOTE] Please try, [CODE]BOOL RemoteShutdown(LPSTR szMachine,LPSTR szMessage,DWORD dwTimeout,BOOL bForce,BOOL bReboot) { BOOL bRS=FALSE; HANDLE hToken; TOKEN_PRIVILEGES tpvPrivileges; if(OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES|TOKEN_QUERY,&hToken)) if(LookupPrivilegeValue(NULL,SE_REMOTE_SHUTDOWN_NAME,&(tpvPrivileges.Privileges[0].Luid))) { tpvPrivileges.PrivilegeCount=1; tpvPrivileges.Privileges[0].Attributes=SE_PRIVILEGE_ENABLED; if(AdjustTokenPrivileges(hToken,FALSE,&tpvPrivileges,sizeof(TOKEN_PRIVILEGES),NULL,NULL)) bRS=InitiateSystemShutdown(szMachine,szMessage,dwTimeout,bForce,bReboot); } return(bRS); }[/CODE] Tested locally. I Don't have a network to try …

Member Avatar for Alvein
0
106
Member Avatar for tom_h_500

What ADO version is installed in the 2nd PC? Try to install the thast MDAC there. Also, try to post the complete first "strange error message".

Member Avatar for Comatose
0
252
Member Avatar for hippychic43

Hi. I think it's not possible. I've looked into my old source code, when I used autogenerated key fields in Access, and I've found I was doing something very similar to what you have to do to get the primary key value. My advice is to generate the key yourself.

Member Avatar for Alvein
0
112

The End.