atlas news
    
Code Guru
10  octobre     14h10
Sales Enablement Agency
amyacker    I’m looking for recommendations for a top notch sales enablement agency. Has anyone worked with a great team that helped boost their sales processes Any suggestions would be greatly appreciated Updated: I searched on google and found these companies: https: mpiresolutions.com lp...
    06h52
Identifying the compiler language
John E    I’m not talking about compilers, like MSVC or Clang etc but within Visual Studio I can select C or or etc. But C offered features which got abandoned later such as std::auto ptr and of course the later versions offer new features which weren’t in C . So is there some way I can...
29  septembre     03h04
need win usb installation
J2Int    Hi, I need to install WinUSB driver for windows for an USB devices with different VidPids. How is this done . I am so new to this and need it going. Does WinUSB handles device arrival removal as well or that is related to special OS IO routine .
27  septembre     00h21
statically link library in make for c gfortran program
LMHmedchem    Hello, I have a program that uses a fortran library, libgfortran.so. . One of the other systems I am running this on does not have this library anymore. I think it is now libgfortran.so. which is not compatible. There are some other issues building on the newer system. For now, the program will...
24  septembre     16h18
RESOLVED] No rule to make target error I can’t track down
LMHmedchem    Hello, I am having an annoying issue building some code. I am getting the following error, Code: make: No rule to make target ListObjects gcc x list tools.o’, needed by bld CentOS . . .x gpp . . gfortran . . ListApp’. Stop. This is on CentOS . ...
21  septembre     16h37
printing some random numbers (that aren’t)
LMHmedchem    Hello, I am writing some non simple output from code where I may not have cout so I wrote a test program to try with printf . Code: test print with printf include for printf include for rand include for cout using namespace std; int main ...
19  septembre     02h53
question about what assign() statement is doing
LMHmedchem    Hello, I am looking at some code that uses assign, Code: typedef struct DLIST char pcode ; DLIST; instance of DLIST DLIST dlist; string std::string sFieldCount; dlist.pcode is populated elsewhere assign value to string sFieldCount.assign dlist.pcode, dlist...
17  septembre     02h15
Cross Apply, Outer Apply some unique scenarios.
Franklin5775    A deeper look at Cross Apply and Outer Apply trying to resolve a performance issue with my query which was challenging to get with the traditional joins. CROSS APPLY allows for more detailed control on individual rows, while INNER JOIN operates on sets of data. It becomes very useful when we need...
16  septembre     16h40
Handling Image Half-Loading Cropping Issue in Visual C App
Devjoe    Hi all, I’m working on a Visual C application that handles image rendering, and I’m facing an issue where some images are half loading or appearing cropped within the application. This problem seems to occur randomly across different image formats JPEG, PNG, etc. . Sometimes the images load...