Posts

Showing posts with the label module

Kentico, module with web part to upload CSV

Image
Clash Royale CLAN TAG #URR8PPP Kentico, module with web part to upload CSV I have a requirement to upload data a from CSV file into custom table in Kentico, I have created a custom table but don't know how to upload CSV and process it, I have also created a web part which I can use to upload CSV and Insert data into custom table but that web part is available on front end web page. I want user to login to Kentico backend first and then access a module and upload CSV file. How can I build a module with a web part to upload a CSV file? 1 Answer 1 Kentico has quite well documented process of Custom modules creation: https://docs.kentico.com/k11/custom-development/creating-custom-modules What you are looking for is a module with custom UI: https://docs.kentico.com/k11/custom-development/creating-custom-modules/manually-creating-the-interface-for-custom-modules In here you are actually creating an A...

Python 3 cant find my own module

Image
Clash Royale CLAN TAG #URR8PPP Python 3 cant find my own module /database/frontend /database/backend Same file in same direct still cant import backend in front end I have tried setting the PYTHONPATH ; sys.append() method ; using from . Import backend but still cant figure it out PYTHONPATH sys.append() method from . Import backend Did you make some __init__.py files? – cricket_007 26 mins ago __init__.py By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

excel vba code module not updated during run

excel vba code module not updated during run I'm trying to reuse my code module for loop runs (which will change some data during different loop);however, I realized the from 2nd loop onwards, the macro is still running the old script. Any idea how I can ensure that the macro runs the updated script (which I will always delete and re-create during every loop)? The actual scrip is very long, to simplify it i will just extract the area which I'm referring to. I have no error running this, just that from 2nd loop onwards, I checked that the module I re-created has the updated script, but macro still running the first loop script, which is very strange for me. The script to be written into module is stored in excel sheet3 and it changes after every new loop starts Sub write_module() For i = 1 To 2 Dim VBProj As VBIDE.VBProject Dim VBComp, comp As VBIDE.VBComponent Dim CodeMod As VBIDE.CodeModule Set VBProj = ActiveWorkbook.VBProject Set VBComp = VBProj.VBComponents("ZC553_MS...