Questions tagged [reply]
257 questions
-1
votes
1 answer
My twitter reply doesnt appear after original status
I,ve made a bot to reply followers whenever they call me with key words. however the reply only appears on my account. The person who got replied doesnt see the reply or gets notified
import tweepy
import random
import time
CONSUMER_KEY =…

A Neto
- 233
- 2
- 10
-1
votes
1 answer
PHP MySQL Comment System With Replies
I have code that is able to capture the initial comment and the 1st level of replies, but it doesn't seem to capture the reply to a reply. I know that it requires an indefinite code using some form of recursion, but not quite sure how to properly…

user3005420
- 9
- 3
-1
votes
1 answer
Get a reply from BackgroundWorker Function when complete
I trying to get a reply back from a Function BackgroundWorker however it hits Return before the RunWorkerCompleted has fired. As soon the code hits 'Thread_Load' it fires the Return.
Here, I'm simply getting a String back but the end code would send…

Andy Cheese
- 1
- 4
-1
votes
2 answers
Request reply pattern between 2 app c#
App1 send a request and wait for app2 to give a reply (true/false) or request time out.
How to do this using c# and wcf.
I managed to send the request but i dont know how to wait and make app2 give a reply

Michael_123456789
- 37
- 1
- 12
-1
votes
2 answers
Handle reply messages properly after some operations in php
I am developing an application on corePHP, whenever I am handling add, edit & delete operations I am redirecting with "header" method along with query strings appending in the URL like "http://mywebsite.com/my_file.php?added=1" and I am checking if…

Prasad Patel
- 707
- 3
- 16
- 53
-1
votes
2 answers
How can i reply to a tweet using tweepy?
I'm trying to make a twitter bot using tweepy and python but I can't figure out how to reply to a tweet.
import tweepy
from Keys import keys
import time
CONSUMER_KEY = keys['consumer_key']
CONSUMER_SECRET = keys['consumer_secret']
ACCESS_TOKEN =…

Peyton
- 1
- 1
- 3
-1
votes
2 answers
Showing name and phone number in body with reply to sender
I'm pretty new to PHP. I've created a contact form which includes reply to sender. The problem is when form is submitted, the name and phone number of the sender doesn't show in the email.
How can I include the name and phone number of the sender…

NohmanJ
- 167
- 3
- 15
-1
votes
1 answer
How to Reply to an Email without Overwriting the whole Body Message?
I wrote a program that finds the specific mail in Outlook. Then opens the reply section of the mail and changes the To recipient, CC recipient and adds a body message coming from excel sheet.
When I run the program, it overwrites the whole body…

bigbryan
- 411
- 6
- 19
- 36
-1
votes
1 answer
JMS Request Reply Pattern, No Output
TestRequestresponse:
public static void main(String args[]) throws JMSException {
TibjmsConnectionFactory connectionFactory = new TibjmsConnectionFactory(
"tcp://localhost:7222");
Connection con =…

adhameja
- 1
- 1
-1
votes
2 answers
vba outlook - reply from a file from a folder
I dragged an outlook msg to a specific folder named "email temp folder" and would like to reply on that msg automatically.
The title name of the msg which I saved in "email temp folder" could be anything. It is not possible for me to get the file's…

pexpex223
- 371
- 4
- 10
- 25
-1
votes
1 answer
Why is Jquery only responding to first element?
I have comment on my site, that have a reply button. When the reply button is hit a new text box pops up and allows the user to reply to the comment.
For some if there is more than one comment on a page, the reply link only works for the comment at…

LightningWrist
- 937
- 4
- 20
- 37
-2
votes
1 answer
remove the word "reply" in the comments
I am working on the SEO of my site and in some pages and articles I have comments, but I would like to keep the "reply" function but remove unnecessary code like:
-2
votes
1 answer
GMAIL API sending reply with file attachment
I'm currently working on gmail API base on this thread
https://stackoverflow.com/a/31792244/6766279
everything works fine if I just need to compose a new email, but I don't know how to do it if i need to reply. i tried changing the data with…

Eysung
- 11
- 3
-2
votes
1 answer
C++ Server reply properly
I want to make a Server that reply to my Sockets.
I have a code like this:
#define DEFAULT_BUFLEN 512
/*...*/
int iResult;
int iSendResult;
char recvbuf[DEFAULT_BUFLEN];
int recvbuflen = DEFAULT_BUFLEN;
/*...*/
iResult =…

N4meless
- 5
- 5
-2
votes
1 answer
Reply Comment System
Hello Everyone I am new to php and doing a project. My Problem is I am working on review page and fetching data from 3 tables using while loop.
The problem is I want to create comment reply system. I am using text area for comment in loop and…

Deepak Yadav
- 1
- 3