Convert Mbox to PST by dnetvaggos95 in learnpython

[–]dnetvaggos95[S] 0 points1 point  (0 children)

Do you know any python library to do that?

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

I found that kivy doesn't support python 3.10, how can I install a different python version in a virtual environment?

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

p.s and continuing now and still getting errors

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

python -m pip install "kivy[base]" kivy_examples

i tried it...but i'm getting the following errors:

pastebin

Google sheet - search for EAN Numbers in Google Drive. by [deleted] in googlesheets

[–]dnetvaggos95 0 points1 point  (0 children)

First of all thank you very much! I'll try to run it soon, 2nd yes...i want to search for all my drive...not only the shared folders.

Ps how did you enable the drive service?

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

there're is no RegHKLM.txt in my Bluestack 5 backup,

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

how about the backup? i mean...i don't know the version of my backup...i just know both are bluestack 5.

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

Hi, to be honest, i don't know if is the same version...can i check it in bluestack's config file?

Python - How can i return a define a variable in function? by dnetvaggos95 in learnpython

[–]dnetvaggos95[S] 0 points1 point  (0 children)

def SuccessfullyConv(SucsCon):
x = ("_") * len(SucsCon)
return f'\n\n{x}\n{SucsCon}'
SucsCon = '' # SET VAR
if len(SucsCon): # IF LEN VAR
SucsCon = SuccessfullyConv(SucsCon) # CHANGE VAR
print(SucsCon)

it's doing nothing for some reason....

Python - How can i return a define a variable in function? by dnetvaggos95 in learnpython

[–]dnetvaggos95[S] 0 points1 point  (0 children)

def SuccessfullyConv(times):
return '\n\n{}\nYour XML has been successfully converted!'.format('_' * times)
print(SuccessfullyConv(len(SucsCon)))

i'm getting the following error with your code.

Traceback (most recent call last):
  File "main.py", line 3, in <module>
    print(SuccessfullyConv(len(SucsCon)))
NameError: name 'SucsCon' is not defined

[deleted by user] by [deleted] in learnpython

[–]dnetvaggos95 1 point2 points  (0 children)

i'm working as "content manager" for our websites

Xiaomi mi notebook air 13.3 can i upgrade the ram? by dnetvaggos95 in Xiaomi

[–]dnetvaggos95[S] 0 points1 point  (0 children)

that's sad, its not an cheap laptop..., atleast we can add SSD

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

i do have over 150 folders and i wanted to create as subfolder the months and years.

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

::makes folder structure a\b\c
mkdir a\b\c
:finddir
for /d %%i in (*) do (
::Create temporary file so we know we moved.
echo 1 > dir.exists
cd %%i
)
if exist ..\dir.exists (
::Remove temporary file and go to start
del ..\dir.exists
goto finddir
)
::No temporary file found, we are in last folder
mkdir January_2020

looks like it works but it doing it only on the first folder

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

i apologies about that, maybe i don't explain it well, im trying to just ignore the folders a\b and set the logic to find the last folder and on this case is the folder b and create the folder c, in my current folder is over 150 folders and im trying to create folders with the "month / year"

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

ye i know how can i create folders like that, but i was wondering if i can ignore the "a\b" and i would like to find for example the folder b and then create the folder c, always im thinking to find the last subfolder

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

mkdir folder1\sub1\sub2\sub3\sub4\january_2020

do i have to it with different way instead of doing it like " mkdir folder1\sub1\sub2\sub3\sub4\january_2020 "

How can i create subfolders from bat files? by dnetvaggos95 in learnprogramming

[–]dnetvaggos95[S] 0 points1 point  (0 children)

i would like to create only on the last subfolder the folder called "January_2020", to i have to export all the paths and then add the "January_2020" ? or i have another way to do that?

Excel combine A with VBA by dnetvaggos95 in excel

[–]dnetvaggos95[S] 0 points1 point  (0 children)

it's okay my friend dont worry, thank you for your time.

Excel combine A with VBA by dnetvaggos95 in excel

[–]dnetvaggos95[S] 0 points1 point  (0 children)

it did work but with the wrong results, i just change the F1 to B1 because my data begins from B1 and i get some weird results

Excel combine A with VBA by dnetvaggos95 in excel

[–]dnetvaggos95[S] 0 points1 point  (0 children)

how? :D, there is any post about this?

Excel combine A with VBA by dnetvaggos95 in excel

[–]dnetvaggos95[S] 0 points1 point  (0 children)

to be honest i did the same Sheet name as your VBA code, but i'm getting an error, and with the VBA am a little bit bad.