Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
create-process
- Page 1
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
18 Hours Ago
by usmanmalik57
… such as LangGraph. Therefore, it is important to understand the
process
of integrating the Web Search API in LangGraph. This article… {"output": state["ai_msg"].content} ``` We will
create
a LangGraph with two nodes, `ask_web` and `respond,` which call…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
2 Weeks Ago
by graceweb
… on trust signals and emotional storytelling really resonates—those elements
create
a connection that can be the deciding factor for prospects…
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
3 Weeks Ago
by themadrastiffin
The shortcut bar in MS Office may not appear, may not open or may run slowly if you restart, repair or reinstall the program.
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
2 Weeks Ago
by asadalikhan
Nick, this issue sounds like a file association problem. Your URL shortcuts on the shortcut bar are likely opening with the wrong program (like a printer handler). Here’s a quick fix: 1. Go to Control Panel > Folder Options > File Types 2. Find and select .URL 3. Click Advanced and ensure it’s set to open with Internet Explorer (…
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
2 Weeks Ago
by asadalikhan
Nick, it’s likely a file association issue. Reassign `.url` files to open with Internet Explorer in Folder Options > File Types. That should fix the shortcut bar behavior.
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
…the `
create
()` function. The response from the `DeepSeek-R1-Distill-Llama-70b` model also contains the reasoning
process
within …" user_query = """Explain the
process
of baking a pizza in three simple steps."… in 1150 characters. Do not return your thought
process
. Only the summary. Your summary will be evaluated…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…def generate_response(model, system_instructions, user_query): response = client.chat.completions.
create
( model=model, max_tokens=4000, temperature=0, messages=[ { "… and summarization. A careful insight into the thinking
process
of the `DeepSeek R1` revealed that the model…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Month Ago
by asadkhan12
Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each …
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by rproffitt
"Wiz Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular new AI chatbot. It didn’t stop a single one." It only seems to get worse the more you look at DeepSeek. And I must note how it is known to not want to talk about …
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by policenbicleara
Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
1 Month Ago
by Anonymous_2133
I have always been a fan of the Office 2000 shortcut bar. It has been on my windows desktop since I got it, up until Windows 10 19H2 (RIP). If you are still looking for a replacement, try searching for "Quick Pick" by "Automation in Motion". Use the double quotes or you will have to wade through many pages of irrelevant results.
Create process Problem
Programming
Software Development
15 Years Ago
by ashishchoure
hi, I have one query that
create
process
funcion retuns bool value. And i want to know the exit code of my exe which i ran through
create
process
function. EX. [CODE] int main() { return 5; } [/CODE] this exe is returning 5. I ran that exe by createprocess but GetExitCodeProcess function is returning 0.
Re: Create process Problem
Programming
Software Development
15 Years Ago
by Ancient Dragon
What computer language was used to
create
the program you are spawning ? I know some MFC programs … a short little program that does nothing more than
create
the
process
and get its exit code status to see if the…
Process Monitor + Firewall
Programming
Software Development
12 Years Ago
by vizz
…help to
create
**
Process
monitoring program.** (services, system, and user-run processes) If any **software/
Process
** wants to…ask user to **allow or block software/
Process
.** Also display List of All Running …** **Options** * Trusted
Process
(Added in database) * Blocked
Process
(Added in database) * Allow
Process
(Live before running any program…
Re: Create process Problem
Programming
Software Development
15 Years Ago
by Ancient Dragon
After calling CreateProcess() call WaitForSingleObject(). When that returns then you can call GetExitCodeProcess()
Re: Create process Problem
Programming
Software Development
15 Years Ago
by ashishchoure
yes. I did that but even it is returning 0. I added Sleep(5000) also in code but not getting desire output. [CODE] // DWORD dwWaitResult = WaitForSingleObject ( pi.hProcess, INFINITE ) ; if ( WAIT_OBJECT_0 == dwWaitResult ) { // Call to GetExitCodeProcess() } [/CODE] Is this Right? I can give the actual code also if you required.
Re: Create process Problem
Programming
Software Development
15 Years Ago
by ashishchoure
Yes you are right it is working for this small exe. Ok now let me find out the problem for original program. Thanks for the help Ancient Dragon :)
Re: Process start info arguments issue
Programming
Software Development
13 Years Ago
by nick.crane
…;); startInfo.RedirectStandardInput = true; startInfo.RedirectStandardOutput = true; //
create
process
and start
Process
p = new
Process
(); p.StartInfo = startInfo; p.Start(); // get I/… File.WriteAllText("jslint.js", dataoutput.ReadToEnd()); // confirm
process
has exited p.WaitForExit(); } [/CODE] Note: You will …
How to destroy a process that created by processBuilder?
Programming
Software Development
15 Years Ago
by hou01087
… write a program that
create
some
process
by select number from menu. And then, if I select 4, ALL
process
created by this…. So, I'm using processBuilder to
create
process
. The problem is how can I destroy the
process
? Thank you. Here's is my…
Re: How to destroy a process that created by processBuilder?
Programming
Software Development
15 Years Ago
by hou01087
…your "proc" array to be a
Process
array instead of ProcessBuilder. You don't need …after you have created the
process
.[/QUOTE]
Process
can't declare be array:-/, because
process
is belong to java.…lang.object. That's why I'm using ProcessBuilder to
create
process
…
Re: How to destroy a process that created by processBuilder?
Programming
Software Development
15 Years Ago
by quuba
… be array, because
process
is belong to java.lang.object. That's why I'm using ProcessBuilder to
create
process
...[/QUOTE] [QUOTE]I… think
process
cant assign to an object.[/QUOTE] I recomended…
C++ create process function not working
Programming
Software Development
13 Years Ago
by thecoolman5
hi, i am making a program that kills a
process
[CODE]system("taskkill /im explorer.exe");[/CODE] and …i need to restart the
process
using CreateProcess. [CODE]CreateProcess(NULL,("C:\\WINDOWS\\explorer.exe…
Re: C++ create process function not working
Programming
Software Development
13 Years Ago
by jinhao
[CODE] STARTUPINFO siStartupInfo = {0}; siStartupInfo.cb = sizeof sif; siStartupInfo.dwFlags = STARTF_USESHOWWINDOW; siStartupInfo.wShowWindow = SW_NORMAL; PROCESS_INFORMATION piProcessInfo = {0}; [/CODE] And an alternate method is recommended by using ShellExecute/ShellExecuted if you don't want to manipulate the new
process
.
Re: Process and thread
Hardware and Software
Microsoft Windows
13 Years Ago
by amrita111
Process
is made up of many threads.Suppose you are writing something in Microsoft Word.This will
create
one
process
WINWORD.EXE.When you type in the document there are various threads of the
process
which run simultaneously like thread for "spelling correction","grammatical errors" etc.
Re: Create and use Module
Programming
Software Development
16 Years Ago
by Jx_Man
>>
process
of creating - Add new Item -> Module -> OK - Just put code that u want to access from any form. >> using module.. - call function or procedure or anything you have declare in your module
Create Process
Programming
Software Development
15 Years Ago
by kustrle
First look at attached picture. As you can see there is few check boxes. I would like when I click Install it run selected components (mostly .exe or .bat file) If I'm sure I need to add some code to event handler of Install button? Now in event handler there is just code which show next step (look attached picture) What I need to do to resolve…
Re: creating a process in UNIX
Hardware and Software
Linux and Unix
15 Years Ago
by 50701735
i think that
create
a
process
in unix is like nearly with
create
process
in linux . you can use system called that is fork(),exec(), or system();
Re: Process Scheduler problem in UNIX
Programming
Software Development
14 Years Ago
by lotrsimp12345
…program should
create
the following processes (or threads) for the scheduler simulation: 1. The job-generation
process
(or…a job from the job queues and
create
a new work
process
(or thread) to run the job…protected in a critical region */ } else {/* Child, job scheduler
process
*/ jobScheduler(…); /* schedule and execute the jobs. */ exit(0…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC