|
Please don't repost if your message does not appear immediately: both of these went to moderation and required a human being to review them for publication. In order to prevent you being kicked off as a spammer, both had to be accepted, and then I have to clean up the spare. Have a little patience, please!
I've deleted the spare version.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I didnt post this question again! Even I just submit it once and still I didnt get proper guideline about latest trends.
|
|
|
|
|
The trend for 2018 is people getting predictions for the future from a forum. 2019 will be the same, but it will move from the forum to Q&A.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
There are new JavaScript frameworks coming out that you should jump on immediately. I have no idea what they are but new JavaScript bandwagons come along with alarming frequency.
This space for rent
|
|
|
|
|
More frameworks.
The efficacy of the platform itself is inversely proportional to the number of available frameworks.
Increased bandwidth (and clearer ways of thinking) will make the whole "stack" obsolete.
"Web development" is another name for thin, dumb clients.
Been there, done that. 80's technology.
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
You forgot to mention that this is the year that WASM will finally become main stream, because it's the year of the Linux desktop!
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
That sounds like a good thing ... since the only other thing mentioned in the article was JavaScript; and not a single framework.
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
Hello @Gerry Schmitz,
May be you right, But now a days every body going for easy and free ways. Like Wordpress, this will really helpful for every one. Its gives various kind of themes with amazing picture and different designs.
Regards
Priya Kale
|
|
|
|
|
That's what I like to hear!
"Everyone" .... "WordPress", etc.
It's saturated; everybody is a "web developer".
No one knows how to make a "thick" client.
I'm making a killing in the desktop market because it's "empty" of competition.
(I forgot to add: "everyone" is also a blogger; who needs a WordPress site; etc... for $20)
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
Gerry Schmitz wrote: No one knows how to make a "thick" client. Rich in humor
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Never heard of rhetoric?
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
No, please elaborate eloquently
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
No ... it was the "second" definition I was referring to.
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
|
You're taking / making it "personal" ...
<soapbox off="">
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
..you sound surprised? Given Darwin, everything is, by definition.
But to go into MunchiesMode, that doesn't change the facts, now does it?
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
From new web-design trends I would name display: grid which is yet more powerful than display: flex as it allows to build 2D fluid layouts. Regarding more uprising js frameworks I would rather advise to ignore them. Keeping up with all of these is futile.
I wonder tho what does this thread in .NET section.
|
|
|
|
|
Hi,
Im using SharePoint 2007 and VB.Net. I need to convert a web page in the Moss 2007 server to word document. I got to know Interop.COM and Interop.CDO DLL's can be used for this purpose. Can someone pls guide me on how to do it or for a sample implementation ?
And if you've got better approaches in doing this pls let me know.
Thanks in advance.
|
|
|
|
|
Print page as PDF.
Open PDF in Word 2016 (or thereabouts).
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
|
And... what is your question?
The quick brown ProgramFOX jumps right over the Lazy<Dog> .
|
|
|
|
|
|
I have written a fully-working app in VB6 and am almost done updating it to vb.net but I am finding it very hard to achieve a couple of tasks. The main one is to simply recolour an image. Currently the image is black stars on a white background (it's a star chart!) but I need to recolour it for users so that it does not ruin their night vision. Thus I need the image to be re-coloured to red stars on a black background. In VB6 this takes literally a couple of lines of code but I don't know how to do it in vb.net - at which I am very much a beginner!
|
|
|
|
|
Perhaps if you show the code you use in VB6 someone could make a suggestion. Also, this question would probably get a quicker response in the VB forum below.
|
|
|
|
|
Hi, and thanks for the advice. This is the VB6 code:
With frmEntryscreen.Picture3
.DrawMode = vbInvert 'or vbXorPen will work
frmEntryscreen.Picture3.Line (0, 0)-(.ScaleWidth, .ScaleHeight), vbWhite, BF
frmEntryscreen.Picture3.DrawMode = vbMaskPen
frmEntryscreen.Picture3.Line (0, 0)-(.ScaleWidth, .ScaleHeight), vbRed, BF
End With
(picture3 is, of course, the chart which is 'black stars on a white BG'). I didn't post this question under 'earlier' VB since that's not what the problem is - didn't want to complicate matters! I also tried the MS site as suggested by someone else but everything there only seemed to apply to recolouring the entire image as a whole, which isn't what I need to do. I envisage the task as being in 2 stages (but as I'm not a buzzing vb.net person don't know if this is what's required) - stage 1: Make a negative image, so white stars on black BG. Stage 2:change all white pixels to red ones.
|
|
|
|