dll

TagLib.Sharp on a website (vb.net) (Type 'TagLib.File' is not defined)

无人久伴 提交于 2021-02-18 19:35:56
问题 (Coding for VB.NET) I am working with the TagLib-Sharp. I really enjoy how it works. Very simple and straight forward. Well, within VS, it is, anyway. I took the files and placed them on my web server, of which included the BIN folder that VS created with the DLL files when I referenced the TagLib-Sharp.dll file. When I run the site through my browser, I get the following error. Type 'TagLib.File' is not defined I was told that I had to create a Namespace for it, so I did that. I also

TagLib.Sharp on a website (vb.net) (Type 'TagLib.File' is not defined)

北城余情 提交于 2021-02-18 19:34:58
问题 (Coding for VB.NET) I am working with the TagLib-Sharp. I really enjoy how it works. Very simple and straight forward. Well, within VS, it is, anyway. I took the files and placed them on my web server, of which included the BIN folder that VS created with the DLL files when I referenced the TagLib-Sharp.dll file. When I run the site through my browser, I get the following error. Type 'TagLib.File' is not defined I was told that I had to create a Namespace for it, so I did that. I also

Register DLL in GAC (CMD or PowerShell)

与世无争的帅哥 提交于 2021-02-18 16:59:30
问题 I'm trying to register a .DLL in the GAC . Currently I'm having trouble to prove it has been added to the assembly. Using the command C:\Windows\System32>%programfiles(x86)%\Microsoft SDKs\Windows\v7.0A\Bin\gacutil.exe -i "path\to\my\file.dll" The prompt tells me that the assembly has been added to the cache. When checking with C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin>gacutil.exe -l file.dll It says that there are 0 elements in the assembly. Via Powershell commands, I'm trying

pass an array of strings from C# to a C++ dll and back again

守給你的承諾、 提交于 2021-02-17 16:58:14
问题 I have looked around the googleverse and stack overflow and have seen several similar questions to this but none of the answers I have found have worked for me. I am a new member so I am not allowed to comment on answers in someone else's question to ask for clarification so I have had to resort to asking my own. Ok so I am trying to pass a string array from a C# application to a C++ dll and then grab that information in another C# application. I believe I am passing to C++ properly but I can

pass an array of strings from C# to a C++ dll and back again

会有一股神秘感。 提交于 2021-02-17 16:57:32
问题 I have looked around the googleverse and stack overflow and have seen several similar questions to this but none of the answers I have found have worked for me. I am a new member so I am not allowed to comment on answers in someone else's question to ask for clarification so I have had to resort to asking my own. Ok so I am trying to pass a string array from a C# application to a C++ dll and then grab that information in another C# application. I believe I am passing to C++ properly but I can

How to change the Public token of the assembly

旧巷老猫 提交于 2021-02-17 16:36:23
问题 I have two assemblies. One assembly is referring to the another one. I checked the manifest of first assembly and found it is referencing to the second one with some specific token key. But I checked the token of second assembly and found that it has a different public token. So somehow I missed the correct second assembly. So I want to know is there a way I can change the second assembly's public token to the one which first assembly needs. Also I have another second assembly also which has

How to change the Public token of the assembly

拜拜、爱过 提交于 2021-02-17 16:36:18
问题 I have two assemblies. One assembly is referring to the another one. I checked the manifest of first assembly and found it is referencing to the second one with some specific token key. But I checked the token of second assembly and found that it has a different public token. So somehow I missed the correct second assembly. So I want to know is there a way I can change the second assembly's public token to the one which first assembly needs. Also I have another second assembly also which has

Visual Studio working directory

感情迁移 提交于 2021-02-11 16:47:42
问题 It looks like there are similar question to mine, but they have workarounds that I would rather avoid. I have a bin folder in my project that contains all the dynamic libraries needed to run the program. So to let the program find the dll, I have set the Working Directory in Project Property Pages -> All Configurations -> Configuration Properties -> Debugging -> Working Directory Unfortunately I am greated with an error that the libary has not been found. It looks like VS does not change the

Visual Studio working directory

旧街凉风 提交于 2021-02-11 16:47:30
问题 It looks like there are similar question to mine, but they have workarounds that I would rather avoid. I have a bin folder in my project that contains all the dynamic libraries needed to run the program. So to let the program find the dll, I have set the Working Directory in Project Property Pages -> All Configurations -> Configuration Properties -> Debugging -> Working Directory Unfortunately I am greated with an error that the libary has not been found. It looks like VS does not change the

Printing to POS Printers in Xamarin Forms Android

蓝咒 提交于 2021-02-11 15:31:19
问题 I have an app that is built with XF and I want it to be able to discover POS Printers through LAN, USB and maybe WIFI too, and print receipts with a very simple template. Does anyone have any leads ? there is this ePOS Android SDK : https://download.epson-biz.com/modules/pos/index.php?page=prod&pcat=3&pid=36 But it's with JAVA. And I also found this nugget ESC-POS : https://github.com/lukevp/ESC-POS-.NET If there is anyone who have any idea on how I should proceed or already done it before I