|
Don't post your website here unless you want us to consider you a spammer and throw you off.
I was that close with this one as it was, but you've been here a while so I decided to warn you instead. Others have a twichier trigger finger, so unless you refrain from doing it in future (and I include text-based "non link URL's" like some of your previous posts in this) it is inevitable that you will be kicked off the site at some point. The automated system we have in place now doesn't like them, and that means your posts will go direct to the tender mercies of whoever sees it in moderation first. That won't always be me ...
I've deleted the link from your post this time.
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
thanx for posting my thread; & sorry (didn't realize). However...how can someone help me if they can't get hold of the code?
thanx,
dox
|
|
|
|
|
Post the relevant code fragments in your message - use the code widget above the text box, and that'll engage the syntax highlighter and preserve any formatting.
Like this:
<pre lang="cs">int Double(int x)
{
return x + x;
}</pre> Will show as:
int Double(int x)
{
return x + x;
} It's not a good idea to post the whole code anyway - people are more likely to respond if you show them where the problem is instead of dumping a whole app on them and saying "it don't work".
Remember, we can't generally run your whole code anyway - we don't have your site, your data, your user inputs - and we don't know what it should do or how to get to the problem area.
The better you make the question, the better we can make the response - and wading through pages of irrelevant code trying to work out what bit of it matters doesn't encourage people to be helpful!
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Use For Mobile App Development ( Android App )
I. How to migrate an existing project to AndroidX
In Android Studio 3.2 and higher, you can quickly migrate an existing project to use AndroidX by selecting Refactor -> Migrate to AndroidX from the menu bar.
complile SDK version and target SDK version must be 28
II. AndroidX in a new project
If you want to use AndroidX in a new project, you need to set the compile SDK to Android 9.0 (API level 28) or higher and The following Android Gradle plugin flags to true in your gradle.properties file.
set android.useAndroidX=true , the Android plugin uses the appropriate AndroidX library instead of a Support Library. android.useAndroidX is false by default if it is not specified.
set android.enableJetifier=true , the Android plugin automatically migrates existing third-party libraries to use AndroidX by rewriting their binaries. android.useAndroidX is false by default if it is not specified.
|
|
|
|
|
Boy, I would insist that you use proper formatting here! I know this is more of a tip for users, but the title as well as the content makes it seem like a question.
But yeah, AndroidX and all the SDK tools in it seem to help a lot in Android development.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
OP is a spammer (terminated).
|
|
|
|
|
if you are using Visual studio its easy. but if you using other other IDE like AndroidStudio then you can look at this Migrating to AndroidX | Android Developers
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com
|
|
|
|
|
We are planning to extend (upgrade) our current Xamarin.iOS / Xamarin.Android app to support Carplay and Android Auto.
The existing app is mobile parking and navigation app which is developed with Xamarin.iOS and Android.
Can anyone with the experience to suggest the basic strategy and approach regarding the upgrade (extend) the app to support Carplay and Android Auto? The team hopes to continue Xamarin platform (either Xamarin.iOS/Android or Xamarin.Forms) as we all love Xamarin.
Any ideas are very welcome and appreciated.
|
|
|
|
|
I want to create a taxi app like Uber with latest taxi booking features
Anyone here to Guide me about how can I create my own app.
|
|
|
|
|
Step 1: Learn how to do software development.
Step 2: Write your application.
Step 3: Profit!
|
|
|
|
|
|
How do you know he is a spammer - profile says Marketing that says it all!
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
For iOS/iPhone Apps :
- Language : Swift (Version 2.x)
- IDE : XCode (Version 7.x.x)
For Android Apps :
- Language : Java (Version 7 / 8)
- IDE : Android Studio (Version 2.x.x)
For Web Panel & Admin Panel :
- Language: PHP with OOPS based Core PHP Structure following MVC Architecture
|
|
|
|
|
For Android platform Eclipse or Android studio would surely work, as for IOS IDE like Xcode or AppCode would work fine, though their aren't many options with IOS compare to Android.
|
|
|
|
|
Good Day
in my Xamarin page i have a button that browse the gallery to allow a user to bind it to an image editor , after selecting the image , the page refreshes to the first page that led to this current page. i would like to make it keep it in the current page after image selection . below is the code on my button
async private void Btnupload_Clicked(object sender, EventArgs e)
{
GenericMethods.IS_IMAGE_SELECTON = true;
if (!CrossMedia.Current.IsPickPhotoSupported)
{
await DisplayAlert("Photos Not Supported", ":( Permission not granted to photos.", "OK");
return;
}
var file = await CrossMedia.Current.PickPhotoAsync(new Plugin.Media.Abstractions.PickMediaOptions
{
PhotoSize = Plugin.Media.Abstractions.PhotoSize.Medium
});
if (file == null)
return;
filePath = file.Path;
paths.Enqueue(filePath);
readytosave = GenericMethods.StreamToByteArray(file.GetStream());
Uri uri = new Uri(file.Path);
filename = string.Empty;
if (uri.IsFile)
{
filename = System.IO.Path.GetFileName(uri.LocalPath);
}
var extension = filename.Split('.')[1].ToLower();
file_extension = extension;
imageEditor.Source = ImageSource.FromStream(() =>
{
var stream = file.GetStream();
return stream;
});
imagepopup.IsOpen = true;
}
Thanks
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com
|
|
|
|
|
sir as you made vext_CPv2 so in this we have spinner but i want only message could so could you please tell me the message code only
|
|
|
|
|
If you're talking about code from an article, you need to use the forum at the bottom of that article to ask questions about it.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Good Day All
The emoji's that are used on whatsup are Unicode characters judging from the high quality graphics that get displayed on the chat area and also on the text entry where a selected emoji is displayed before the message is sent. i would like to have a text entry that can allow me to put a png of emoji in an entry or custom entry control and also include text when text are there as depicted below
https://us.v-cdn.net/5019960/uploads/editor/pv/yacw7deyp8fw.png
how can i make this possible
thanks
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com
|
|
|
|
|
Vimalsoft(Pty) Ltd wrote:
how can i make this possible By linking an emoji library to your app, and using an emoji-enabled "edit text" control. Every language and every platform does this a bit differently, though. Here is how Android does it.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
modified 24-Apr-19 9:28am.
|
|
|
|
|
i see , i thought there is another way. let me stick to that. you answered my question
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com
|
|
|
|
|
dear master
I am a newbie in react native programming.I have a question when run Android emulator on AVD Manager showing "Android" only.How to fix it ?
Name is Nexus 5 API 23, Resolution 1080 x 1920 xxhdpi, API 23, Target Android 6,0, CPU/ABI Arm,
Size on Disk 3.5 GB.RAM 1536 MB Internal storage 800 MB, Studio Manage 512 MB
VP Heap 750 MB.
Spesification Laptop
Operating System Windows 10 Enterprise.Processor AMD A8 7410 APU with AMD RADEON
RAM 4.0 GByte (3.47 GByte usable)
|
|
|
|
|
Member 13574900 wrote: ...AVD Manager showing "Android" only. Can you provide a screenshot?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
On my Desktop, this works fine...
- Plug USB Cable into Desktop Computer (This is USB Type A)
- Plug USB Cable into Android Phone (This is USB 2.0 Micro B)
Within ten seconds (normally sooner) Windows File Explorer sees my phone, and allows me to access it just like another drive with file folders, etc.
I do the exact same sequence on my notebook computer.
Fail.
Asking Google about this produces answers galore.
After the first N of those answers proved themselves wrong, I decided to ask here.
Make a friend ! Give me a clue as to why this fails.
Enhance your reputation exorbitantly ! Tell me how to fix this.
Details...
Desktop: Win 7 (EL-Cheap-O eMachines from WalMart)
Notebook: Win 8 (EL-Cheap-O Acer Aspire)
Phone: Android, LG Stylo 3
|
|
|
|
|
C-P-User-3 wrote: I do the exact same sequence on my notebook computer.
Fail. Need to update driver?
What exactly does "Fail" mean?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
David Crow wrote: What exactly does "Fail" mean?
I don't know anymore.
The two parts just started cooperating three hours ago.
You guys give the best advice on the internet.
(Now, if only they cooperate tomorrow)
|
|
|
|