Search results for query: *

  1. J

    Which c# component to learn for better job prospect?

    This sounds like a good way to kickstart. Learning c# -> learn wpf -> apply same type of program to asp.net when i am more advanced level. Like in general whether it is working in a corporate or freelance or in general. Like you said, do not be a sponge which is why based on my past experiences...
  2. J

    Which c# component to learn for better job prospect?

    Is there one in general or when you mentioned this, it is because of personal self?
  3. J

    Which c# component to learn for better job prospect?

    I know that my questions are constantly changing. It is just one lead to another. More money is not really the concern here. I am more concerned for the job market for freelance or like what is in demand in the market so that I will not learn something that is lacking or not widely in demand. I...
  4. J

    Which c# component to learn for better job prospect?

    Would wpf be more stable and secure than win forms then since win forms are quite old? I just googled for freelance wpf and I see that there are jobs for these with win forms still. But I believe it to be more rare compared to knowing asp.net perhaps?
  5. J

    Which c# component to learn for better job prospect?

    Is win forms still a thing nowadays ?
  6. J

    Which c# component to learn for better job prospect?

    So basically, you master the shell and you can build anything regardless of whether it is a mobile or desktop application? You said that it's mostly like a wrapper so correct me if I'm wrong. I can have a website that provides services for education and I just provide a wrapper for this website...
  7. J

    Which c# component to learn for better job prospect?

    Blazer is still fairly new if I'm not mistaken, yes? Like around since August this year? Would it be suitable for beginners to learn staraight away? The lack of documentation and resources is one that hinders me from learning a new tool because it's quite painful to be searching and yielding no...
  8. J

    Which c# component to learn for better job prospect?

    I'm just unsure what to start learning first. Like MVC , .net, azure with c#, xamarin. I am not sure what the market is like because after researching, it seems like c# is pretty decent. It just the niche I'm trying to find.
  9. J

    Which c# component to learn for better job prospect?

    With asp.net, we are able to write web applications, yes? Meaning that c# will be used for backend also? Or i am wrong?
  10. J

    Which c# component to learn for better job prospect?

    I am fairly interested in which c# component to learn first. By job prospect, i just mean like the market demand overall or what is the in trend now? I am quite torn between learning asp,net first or xamarin. This is for like my own personal self and also for the future job market maybe like...
  11. J

    Bootstrap like not working properly

    When I get back from work, I will take a look. I am not sure if tthere is some bootstrap I am not referencing because the asp,net certainly looks smaller compared to the hml website. And certain elements are missing. But I will take a look at what you say and inspect for the css
  12. J

    Bootstrap like not working properly

    I have a bunch of html and css codes that I ran with sublime text. The output was nice like what I wanted. However, when I wanted to use the same way in asp.net, I transfered the codes from my sublime to asp.net, it seems like the asp.net webpage become smaller and certain features like the...
  13. J

    Example of asp.net project that are good to learn for beginners

    old is gold. sounds like a good place to start. Just need to make it have a better view. Thanks!
  14. J

    Example of asp.net project that are good to learn for beginners

    What are example of websites that beginners can learn and create using ASP.NET and c#? Like as a manager or a seasoned programmer, what kind of websites or applications that would impress you if a junior developer showcased his/her portfolio.
  15. J

    Main page disappearing after splash screen loaded.

    I have a splash screen created for when I load my program, then the splash screen will be loaded and then after a few seconds, it will be redirected to my main home page. My main issue here is that the splash screen will be shown and then the main page will be shown for a second only before it...
  16. J

    Trying to understand logic for boolean

    I finally got it to work. //file Upload to the Google Drive. public static bool FileUpload(HttpPostedFileBase file) { if (file != null && file.ContentLength > 0) { DriveService service = GetService(); string path =...
  17. J

    Trying to understand logic for boolean

    The file upload code I got it from Youtube and mixture of some websites but the compare hash and generate hash, I wrote it. Regarding the MD5 checksum, I had two dilemmas. The first is, I already got the generate hash code which is public static string HashGenerator(string path) {...
  18. J

    Trying to understand logic for boolean

    At the moment, my program is able to upload files and display alert messages to users when it is uploaded. The thing is now, after uploading, it is supposed to see if it is a duplicate file or not. If it is, then a message alert will inform the user that it is a duplicate while if it is new ...
  19. J

    Message pop-up for throw catch exception

    Okay, if that is the case, then for the part where I wrote if (file.Md5Checksum.Equals(path)) { throw new Exception("File already exists"); } is there any other way, where I can like return something like instead of a...
  20. J

    Message pop-up for throw catch exception

    The code block below is supposed to sort of compare the hash value of the files and if there is an existing hash, then a message should be notified to the user that it is a duplicate. For now, i am able to see it from the throw catch exception. I just wanted like an error message to be...
Back
Top Bottom