Search Results

Showing results 1 to 40 of 104
Search took 0.06 seconds.
Search: Posts Made By: Alvein
Forum: C++ Feb 11th, 2006
Replies: 1
Views: 1,962
Posted By Alvein
Forum: C++ Feb 10th, 2006
Replies: 1
Views: 1,962
Posted By 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:
void ne_set_server_auth(ne_session *session,...
Forum: Visual Basic 4 / 5 / 6 Jan 16th, 2006
Replies: 3
Views: 4,610
Posted By Alvein
Just post the current C++ function header and its respective VB declare to see what's expected on either side.

BTW, is your C++ DLL ActiveX??
Forum: Assembly Jan 11th, 2006
Replies: 2
Views: 3,896
Posted By Alvein
Quick Google search, "intel shift and rotate instructions",
gives something like http://webster.cs.ucr.edu/AoA/Windows/HTML/DataRepresentationa6.html
Forum: Visual Basic 4 / 5 / 6 Jan 11th, 2006
Replies: 1
Views: 1,502
Posted By Alvein
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.
Forum: Visual Basic 4 / 5 / 6 Jan 11th, 2006
Replies: 3
Views: 4,610
Posted By Alvein
Could you post your C++ function interface AND the way you declare this one in VB?



That depends on your C++ development environment. Though I've not had your exact case, I know in Visual C++...
Forum: Windows NT / 2000 / XP Oct 6th, 2005
Replies: 5
Views: 3,093
Posted By Alvein
Hello,

Just felt lucky with google:

Bandwidth Monitor Pro (http://www.bandwidthmonitorpro.com/) .

Hope this helps.
Forum: C++ Oct 2nd, 2005
Replies: 4
Views: 1,441
Posted By Alvein
To minimize the risk of being flamed, quickly post your pseudocode (algorithms) for this homework, to demonstrate it's only a programming language issue....
Forum: Legacy and Other Languages Oct 2nd, 2005
Replies: 3
Views: 12,591
Posted By Alvein
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.
Forum: Computer Science Sep 24th, 2005
Replies: 2
Views: 1,740
Posted By Alvein
yeah yeah, tell us :?: :!:
Forum: Windows NT / 2000 / XP Sep 24th, 2005
Replies: 5
Views: 4,251
Posted By Alvein
How about a tool for that? read here (http://www.pcanswers.co.uk/tips/default.asp?pagetypeid=2&articleid=35011&subsectionid=616) for details on how to proceed.

However, I would suggest you to...
Forum: Windows NT / 2000 / XP Sep 23rd, 2005
Replies: 5
Views: 4,251
Posted By Alvein
Hi,

Read here (http://support.microsoft.com/?kbid=320081) for help. Surely causes 5 or 6.
Forum: Visual Basic 4 / 5 / 6 Sep 21st, 2005
Replies: 2
Views: 8,382
Posted By Alvein
Quite possible by using ShellExecute (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shellexecute.asp) with lpFile="cmd.exe" and...
Forum: C++ Sep 21st, 2005
Replies: 9
Views: 2,034
Posted By Alvein
No, but Narue showed the key. Sorry. I did not see the your new char() statement. Use new char[], BTW. It was a memory allocation problem, in the end.
Forum: C++ Sep 21st, 2005
Replies: 9
Views: 2,034
Posted By Alvein
Replace strcpy(buffer, holdingArray[1]) with buffer=strdup(holdingArray[1]). Or give buffer enough space (at declaration) to hold the biggest guess word. ;)

Your program needs some tunning....
Forum: C++ Sep 21st, 2005
Replies: 3
Views: 5,058
Posted By Alvein
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...
Forum: Visual Basic 4 / 5 / 6 Sep 21st, 2005
Replies: 9
Views: 24,780
Posted By Alvein
Hi,

Assuming you have experience with ADO, you should download and install MySQL Connector (http://dev.mysql.com/downloads/connector/odbc/3.51.html), and then, use a connection string like:
...
Forum: Visual Basic 4 / 5 / 6 Sep 21st, 2005
Replies: 2
Views: 3,308
Posted By Alvein
:-| 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...
Forum: Storage Sep 20th, 2005
Replies: 12
Views: 27,879
Posted By Alvein
Go to Maxtor utilities page...
Forum: C++ Sep 20th, 2005
Replies: 5
Views: 2,443
Posted By Alvein
You can use either Kernel32's GetWindowsDirectory (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/getwindowsdirectory.asp) or Shell32's SHGetSpecialFolderPath...
Forum: C Sep 20th, 2005
Replies: 9
Views: 2,054
Posted By Alvein
Just looking at the at the dissasembly listing of the program. It's not a big deal.



Hmmm...sincerely, I don't have that good reference. Never studied the subject that way. I just know ASM and...
Forum: C Sep 20th, 2005
Replies: 9
Views: 2,054
Posted By Alvein
Hard to short explain that. But I'll try to do in a single phrase:

Just before to call a subroutine, the address of the instruction following the call is saved, the way the CPU knows where to...
Forum: Assembly Sep 20th, 2005
Replies: 3
Views: 12,027
Posted By Alvein
In such case, you will have to change the ASM convention to MASM (which is weird, cause you're using TASM):

DATASG SEGMENT PARA 'DATA'
infor db "Hello world",10,12+1
inforlen Equ 13
DATASG ENDS...
Forum: C Sep 20th, 2005
Replies: 9
Views: 2,054
Posted By Alvein
void change() {
__asm {
add word ptr[ebp+4],7
}
} :)

Pretty compiler-tied (VC++), but it's another answer...
Forum: Visual Basic 4 / 5 / 6 Sep 20th, 2005
Replies: 1
Views: 3,363
Posted By Alvein
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...
Forum: Windows 95 / 98 / Me Sep 20th, 2005
Replies: 4
Views: 2,097
Posted By Alvein
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...
Forum: Geeks' Lounge Aug 28th, 2005
Replies: 9
Views: 3,081
Posted By Alvein
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...
Forum: PCI and Add-In Cards Aug 20th, 2005
Replies: 45
Views: 64,544
Posted By Alvein
Problem solved, right? .... nice MoBo ;)

PS. Do you plan to connect something?
Forum: PCI and Add-In Cards Aug 19th, 2005
Replies: 45
Views: 64,544
Posted By Alvein
Go here (http://www.cpuid.org/cpuz.php), download the tool, save a report and post it here.

I cannot figure why the only info you have is "Acer". :confused:
Forum: Monitors, Displays and Video Cards Aug 18th, 2005
Replies: 26
Views: 6,441
Posted By Alvein
You don't have to be sarcastic. Have no friends or what? (http://www.daniweb.com/techtalkforums/showpost.php?p=130488&postcount=13)

Write to eVGA. They will tell you what to do. I don't think your...
Forum: Monitors, Displays and Video Cards Aug 17th, 2005
Replies: 26
Views: 6,441
Posted By Alvein
I had 17A there and was able to run my GT for some minutes before a reboot :cheesy: .... I'm sure your Seasonic offers enough quality of power.

The GT can run disconnected from PSU in pure-text...
Forum: Visual Basic 4 / 5 / 6 Aug 17th, 2005
Replies: 4
Views: 4,222
Posted By Alvein
Cool



I was talkin about to not use brackets in wm.setItemInfo("title" ,"hello").
Forum: HTML and CSS Aug 16th, 2005
Replies: 0
Views: 1,420
Posted By Alvein
Hi,

I'm developing a custom service that uses Windows Telephony to alert users when incoming calls are detected.

Just point your browser (only IE, sorry) to this link...
Forum: Windows Software Aug 16th, 2005
Replies: 6
Views: 2,013
Posted By Alvein
Hello Marty,



Firewall.



Firewall again. It's useless to listen to some port (chosen at will) because incoming connections (from outside) are not allowed.
Forum: C++ Aug 16th, 2005
Replies: 4
Views: 3,200
Posted By Alvein
If my assumptions are true, you will need to place your entry in:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

If you want it work only for you,

Or
...
Forum: Cases, Fans and Power Supplies Aug 11th, 2005
Replies: 3
Views: 7,482
Posted By Alvein
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....
Forum: Windows Software Aug 11th, 2005
Replies: 6
Views: 2,013
Posted By Alvein
Not business environment.
With such price, better to develop the thing myself....
Forum: Motherboards, CPUs and RAM Aug 10th, 2005
Replies: 13
Views: 3,428
Posted By Alvein
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, but in some...
Forum: Windows Software Aug 10th, 2005
Replies: 6
Views: 2,013
Posted By 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...
Forum: Visual Basic 4 / 5 / 6 Aug 10th, 2005
Replies: 4
Views: 4,222
Posted By Alvein
Isn't setItemInfo applicable only to something like currentPlaylist or currentMedia?

About the error, try removing parenthesis when calling setItemInfo.

Is that VB6, BTW?
Showing results 1 to 40 of 104

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC