Search:
Type: Posts; User: digitalShaman
Search:
Search took 0.11 seconds.
-
check your firewall/router settings if any of the ports you use got blocked with an update.
-
thank you funky for the test data, this is what i meant:
create table #test (CaseID int, DVRFT varchar(16), NVRFT varchar(16))
insert into #test values (25663, 'RFT', 'NRFT')
...
-
try a MAX(CASE WHEN DVRFT ='RFT' AND NVRFT='RFT' THEN 0 ELSE 1 END)
this should tell you on the group level if all records of that group have DVRFT and NVRFT equal RFT (MAX is 0) or if there is...
-
yeah, looks like your export is not correct: https://docs.microsoft.com/en-us/cpp/build/exporting-from-a-dll-using-declspec-dllexport?view=msvc-160
-
are you sure you export Get_Position?
i used to do that in a .def file.
i assume the path "C:\Users\Owner\Desktop\Test\test_dll\bin\Debug\test_dll.dll" is correct. you may want to inspect the dll...
-
it will at one point. so keep going.
but for now, its worth to note that there had only been 5 days in history where bitcoin was worth more than today.
-
reading the whole thread twice, i still dont get it.
do you want to print (to a printer) or do you want to display it on screen or do you want to write it to a text file?
you mentioned all these....
-
https://www.google.com/search?q=.net+load+jpeg2000+from+byte+stream
first hit shows an example of how to use freeimage (which i have never done myself):
byte[] myByte = new byte[10];...
-
anyone interested in testing the product?
-
i usually use double. only in some cases where i know that a single precision is sufficient and memory might be an issue, i use singles. i almost never use decimal.
-
You need to tell us more about the format the images are stored. an image 640x480 has 307,200 pixels, an image 153x208 has 37,824 pixels. unless these images have large areas of just one single color...
-
Hello,
i do not see any obvious flaw in your code, but it is bit overcomplicated. may i suggest the following, alot shorter approach:
Private Sub SerialPort1_DataReceived(sender As Object, e...
-
-
That lib might be worth the money but it should also be possible to do the (older) RSA encryption without any additional libs. the hassle is getting the data correctly from the base64 encoded text to...
-
both ways are totaly valid. there is a syntax for update/delete using a join for selection. you can also always do something like
DELETE FROM A WHERE ID IN (SELECT ID FROM A INNER JOIN B ON...)
-
hmm, throwing "sysnative" at google gives this as first hit: https://www.samlogic.net/articles/sysnative-folder-64-bit-windows.htm and that article explains it very well.
-
thats correct. but i do not think that running as admin will change it. as far as i know your app running as 32/64 bit makes a difference. syswow64 or sysnative should get you to the path you see in...
-
right, and the program does not know anything about the distance, so you first need to add the distance to the program somehow: shall it be entered in a textbox or hardcoded in the program? easiest...
-
does that mean the bytestream starts with certain bytes to indicate the picture? what are these bytes really (0000 =two bytes, FF=one byte?? seems odd)? is the size of the image also included in the...
-
The code you are using, is only a stopwatch. so there is a gap of information from a simple stopwatch to things like "First", "Second" and especially "Miles Per Hour".
so, if the program you are...
-
why not using bitconverter?
try this:
Dim bytes() As Byte
bytes = File.ReadAllBytes(Main.Label3.Text) ' location of the file that's going to be opened
dim Integers() as...
-
[removed wrong assumption]
-
ok, learned that Java is doing it in the way i would have expected. not sure of my feelings about the way .net handles it. can be very beneficial but also a pitfall.
-
can someone explain to me how access to vars in anonymous functions is handled?
having the following:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
Dim...
-
update: i went with the structure library and it has currently two branches: one predefined and one user defined section. user can define new structures and/or select existing structure and add to...
-
have worked alot on the PE exe file interpreter which is kind of stress test for the navigation system, its parsing the import, export and resource tables currently well and the navigation then lists...
-
right passel. its already quite grown. i do have support for large files, drive/disk editing (\\.\X: and \\.\physicaldriveX), value editing of 1/2/4/8 bytes (signed/unsigned, big/little endian) as...
-
What are the killer features of a great Hex editor for you?
(Gathering requirements ;))
-
check if a process is started in task manager. add a messagebox right at the entry point of your application to see if that gets hit.
-
try it like this:
Public Sub Main()
Try
Dim procInfo As New ProcessStartInfo()
procInfo.UseShellExecute = False
procInfo.UserName = "username"...
-
i know the model and actually did not know that there is a TCP/IP interface. But there is! here is the spec:
https://web-material3.yokogawa.com/IM04L02A01-17E_060.pdf
-
three things to note here:
1.) You should take the effort in your app to track if you need to delete/add/Update a record and do so. deleting all records and recreating them may work in a single user...
-
i don't know exchange but did some Outlook scripting many years ago. i guess the concept is similar.
your exch.FindItems(WellKnownFolderName.Inbox, iv) will most likely get a list of all mails in...
-
so your initial question "get number of files from remote server using tcp/ip" turned more into: "get number of files from directory on remote wordpress webserver". while your first question is...
-
this rules a bad name out. race condition yes possible but as long as its only him working on the access db i doubt that inserts/updates/etc run in parallel.
it would be good to know the error code....
-
there is just one table involved, right?
somthing like that?
select WebPayTN_lngPayTransNumber,max(case when WebPayLog_strStep = 'BankResponseRaw' THEN 1 ELSE 0 END) AS HasBankResponseRaw...
-
try removing the quotes around 'durationtime'
SELECT username,
COUNT('username') AS launchcount,
SUBSTRING(SEC_TO_TIME(AVG(TIME_TO_SEC(`durationtime`))), 1, 8) AS averageduration
FROM...
-
Hi Shaggy, one reason a MouseLeave would never fire would be if the mouse never was on the form i.e. the form startup pos was not under the mouse. maybe that gives a clue?
however, instead of what...
-
yes, you need to grant execute permission for your user/usergroup.
try this sql:
GRANT EXECUTE ON SCHEMA :: dbo TO <your user name>
-
Just a comment: you are usig "old" OpenGL style. the "new" style is using vertex buffers and shader code.
Hittesting is usually done by creating a 1x1 viewport along the "pick axis" and rendering...
|
Click Here to Expand Forum to Full Width
|