Jump to content

dll is not working in windows10


senatin
 Share

Recommended Posts

  • Moderators

@senatin the problem is on line 13...

Perhaps you could post your script rather than expecting us to guess. ;)

 

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

#RequireAdmin

Local $hDLL = DllOpen("wcx64.dll")

HotkeySet ( "-", "start")
HotkeySet ( "=", "ext")

While 1
    sleep(100)
WEnd

Func start()
    DllCall($hDLL, "none", "frwd_txt", "String", "Hi im looking for a trustworthy client. If you are interested to trade with me, please send me first a scanned copy of any of your valid ID")
EndFunc
 
Func ext()
    DllClose($hDLL)
    Exit
EndFunc

 

Link to comment
Share on other sites

  • Developers

That message is unrelated to 

#AutoIt3Wrapper_UseX64=Y

but caused by 

#RequireAdmin

and your SciTE editor not running in elevated mode.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

I deleted #requireAdmin

but with #AutoIt3Wrapper_UseX64=Y it give me error when I use wc64.dll. Instead, when I try wc32.dll which is (64bitwindows 32bitexe ) dll dont give me error but still the script not working as it should be

 

I dont understand if windows10 is 64bit windows 64bitexe or 64bitwindows 32bitexe.
I keep on trying both dll.
I believe its 64.64bit, How can I identify it

Edited by senatin
Link to comment
Share on other sites

Run the script from SciTE and show us the entire output from scite to see what is happening.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

58 minutes ago, senatin said:

What do you mean by return true?

From the help file:

Quote
@AutoItX64
Returns 1 if the script is running under the native x64 version of AutoIt.

True = 1, False = 0. So using something like:

Consolewrite("x64 = " & @AutoItX64 & @CRLF)

would inform you whether you're running in x64, which is required if you're calling a 64-bit dll. But from your comments, I gather you're calling a 32-bit dll from a regular script running in 32-bit (the default, unless you've explicitly set it up otherwise).

1 hour ago, senatin said:

I believe its 64.64bit, How can I identify it

Find "This PC" in your file manager, right-click, select "Properties", then look under "System Type". To run AutoIt scripts in x64, you need a 64bit processor, a 64 bit operating system, and that directive I mentioned in my previous post. If you're just calling the 32-bit dll, processor and OS can be either 32 or 64 bit.

Edited by RTFC
Link to comment
Share on other sites

3 hours ago, BrewManNH said:

Run the script from SciTE and show us the entire output from scite to see what is happening.

 

I will post later the output because my friend already gonehome with his laptop. We will be fixing it again later

 

2 hours ago, RTFC said:

From the help file:

True = 1, False = 0. So using something like:

Consolewrite("x64 = " & @AutoItX64 & @CRLF)

would inform you whether you're running in x64, which is required if you're calling a 64-bit dll. But from your comments, I gather you're calling a 32-bit dll from a regular script running in 32-bit (the default, unless you've explicitly set it up otherwise).

Find "This PC" in your file manager, right-click, select "Properties", then look under "System Type". To run AutoIt scripts in x64, you need a 64bit processor, a 64 bit operating system, and that directive I mentioned in my previous post. If you're just calling the 32-bit dll, processor and OS can be either 32 or 64 bit.

I will definitely try this one later. but as I recall his system was 64bit processor, 64 bit OS. 
I will post more later about the output.

hmm I Think I better make a script that Identify the processor and OS of windows so the script itself will address which dll is compatible. I think I will start with that consolewrite script of yours.

 

#AutoIt3Wrapper_UseX64=Y

Local $hDLL
If @AutoItX64 Then
   $hDLL = DllOpen("wcx64.dll")
Else
   $hDLL = DllOpen("wc32.dll")
EndIf

HotkeySet ( "-", "start")
HotkeySet ( "=", "ext")

While 1
    sleep(100)
WEnd

Func start()
    DllCall($hDLL, "none", "frwd_str", "String", "Hi im looking for a trustworthy client. If you are interested to trade with me, please send me first a scanned copy of any of your valid ID")
EndFunc
 
Func ext()
    DllClose($hDLL)
    Exit
EndFunc

This work right?

Edited by senatin
Link to comment
Share on other sites

19 minutes ago, senatin said:

This work right?

Dunno, my ESP is a little off today.:blink:;) Selecting the appropriate version of the dll makes sense (although you're usually okay calling a 32-bit dll in a 64-bit environment (but NOT the other way around!)). However, the call itself may not work. Does that dll actually have a function called "frwd_str"? (You can check with free utilities such as dependency walker for example) Is the parameter type really "STR", i.e., an ANSII string, or maybe it expects WSTR (Unicode) instead, or maybe it expects a pointer to a buffer variable where your string resides? If you have access to the dll source or working code examples with source, you can find out. If the exact same script you posted runs on W7, then this should be okay.

But what you should definitely add is error-checking immediately after DllCall, i.e, upon return, does @error perhaps contain:

Quote
@error: 1 = unable to use the DLL file,
2 = unknown "return type",
3 = "function" not found in the DLL file,
4 = bad number of parameters,
5 = bad parameter.

 

Link to comment
Share on other sites

Yah it works in W7 with the 32bit dll but 64bit was said to be the same so I expect it has the function aswell.
I'll try the @error I think thats what I needed. Though I cant still post the error today my friend still not coming.

 

my friend still not coming
hope I can continue this combo

Edited by senatin
Link to comment
Share on other sites

On 10/14/2017 at 4:22 AM, RTFC said:

Dunno, my ESP is a little off today.:blink:;) Selecting the appropriate version of the dll makes sense (although you're usually okay calling a 32-bit dll in a 64-bit environment (but NOT the other way around!)). However, the call itself may not work. Does that dll actually have a function called "frwd_str"? (You can check with free utilities such as dependency walker for example) Is the parameter type really "STR", i.e., an ANSII string, or maybe it expects WSTR (Unicode) instead, or maybe it expects a pointer to a buffer variable where your string resides? If you have access to the dll source or working code examples with source, you can find out. If the exact same script you posted runs on W7, then this should be okay.

But what you should definitely add is error-checking immediately after DllCall, i.e, upon return, does @error perhaps contain:

 

I tried @error unfortunately it give 1 which means unable to use dll file

But if i use dllopen it return me 0

Is the dll still being blocked?

Edited by senatin
Link to comment
Share on other sites

heres what I got

Using this script

#AutoIt3Wrapper_UseX64=Y

Local $hDLL
If @AutoItX64 Then
   $hDLL = DllOpen("wcx64.dll")
   ConsoleWrite("using 64bit : " & $hDLL & " @error = " & @error & @CRLF)
Else
   $hDLL = DllOpen("wcx32.dll")
   ConsoleWrite("using 32bit : " &$hDLL & " @error = " & @error & @CRLF)
EndIf

HotkeySet ( "-", "start")
HotkeySet ( "=", "ext")

While 1
    sleep(100)
WEnd

Func start()
    ConsoleWrite("execute dll" & @CRLF)
    DllCall($hDLL, "none", "frwd_str", "String", "Hi im looking for a trustworthy client. If you are interested to trade with me, please send me first a scanned copy of any of your valid ID")
    ConsoleWrite (@error & @CRLF)
EndFunc

Func ext()
    DllClose($hDLL)
    ConsoleWrite("dll closed. @error = "&@error)
    Exit
EndFunc

Dll Error appeared  It says  

"Please run this program as an administrator"

and if I add #RequireAdmin

"Drive Startup error"

with this in console

"! Your script requires Admin rights while SciTE is running at normal level.
! This means no Console output from the script will be displayed and SciTE will show the script as ended right away."

Edited by senatin
Link to comment
Share on other sites

Hello. 

 

DllCall does not support String data type in the parameter field. It should be wstr or str.

If you want to be the console output while you're using #RequireAdmin You need to run SciTE with admin Right. right click over ScITE icon  Run as Admin...

Also make sure If dll use 'stdcall'  or 'cdecl' calling method...

 

Saludos

 

Link to comment
Share on other sites

  • Developers
5 hours ago, senatin said:

with this in console

"! Your script requires Admin rights while SciTE is running at normal level.
! This means no Console output from the script will be displayed and SciTE will show the script as ended right away."

Thought I already made that clear several days ago! ... guess not. 

On 13-10-2017 at 5:44 PM, Jos said:

That message is unrelated to 

#AutoIt3Wrapper_UseX64=Y

but caused by 

#RequireAdmin

and your SciTE editor not running in elevated mode.

Jos

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...