Время зарабатывать программированием

Мы приглашаем всех желающих пройти трехмесячный онлайн-курс ВЕБ-ГУРУ. Будем учить профессиональной PHP разработке. Минимальный уровень подготовки участника - знание PHP, HTML, понимание того, как работает Интернет. Старт - 1 июня.

Программа:
1 месяц. шаблон проектирования MVC, ООП в PHP 5, PHP фреймфорк Kohana
2 месяц. тонкости JavaScript, AJAX, jQuery, FLEX
3 месяц. Интеграция с сервисами

Будет нелегко. Приходите, только если настроены серьезно летом поработать. Наше правило: 80% практики, 20% теории. Знаний, которые вы можете получить, достаточно для должности ведущего веб-разработчика или руководителя небольшой группы программистов.

Запись идет здесь.

Школа Программирования ©
Дмитрий Ляпин, Александр Никитин

нужна помощь в ASP.Net

Привет всем!
Мне нужна помощь, требуется сделать страничку в ASP.Net так чтобы она показывала видео, но чтобы просматривая source html, не было видно ссылку на файл видео.

Ссылки должны быть в базе данных.
Заранее спасибо!
leo_kagaya
  • syuan

Help!!!

Hi, I'm new to the community. I study Graphics Design (this is my first year) but we started with Computer Science in general. I have no idea about programming and I don't get pascal at all... Can anyone help me with writing a program?

I'm supposed to create a program using Delphi7 (=> console type). There's a .txt file with a list of 4 students, the number of their grades and the list of the grades. The program should count the average of the grades for each student and then sort the names by the average, lowest to highest.

list of studentsCollapse )

I tried to do it myself but I'm a poor programmer. Here's what I came up, but most of it is probably wrong.

progCollapse )

If somebody can help me I'd be really grateful. I promise to study more on the pascal in the future.
  • Current Mood
    hopeful hopeful

VB9 and C#3

I have briefly examined language specifications for VB9 and C#3. I am correct to think that only VB9 has Deep XML Support, Nested Extension Methods, Nullable Types, Relaxed Delegates, Strong “Duck Typing”? Also, it is the case that only C#3 has Lambda expressions, Implicitly Typed Arrays, and Expression Trees?

(no subject)

Западная компания, системный интегратор, ведущая свой бизнес в четырех странах мира, прилашает программиста-разработчика JAVA для участия в отдельных этапах внедрения системы документооборота на платформе Hummingbird на крупных российских предприятиях (до 1000 рабочих мест)

Требования:

знание JDBC, навыки работы с Ant.
Желателен небольшой опыт работы с Oracle и знание некоторых из перечисленных технологий: Java Servlets, JSP, WebWork, Velocity.
Знание Spring - большой плюс
Условия: зарплата 1700-1800 долларов плюс бонус, медстраховка через полгода работы в компании, оплата питания из расчета 150 руб/день (это еще больше 100 долларов), 100% оплата отпуска и больничного, предоставление 3 дополнительных оплачиваемых дней в году на собственные нужды. Бесплатные уроки английского языка в офисе (преподаватель - носитель языка)

Офис находится рядом со ст. метро Новые Черемушки


Регион: Москва
Требуемый опыт работы: 1-3 года
Предполагаемый уровень месячного дохода: от 1700 до 1800
  • amosch

code help

I am attempting to pass a start and end date range to a crystal report called from visual basic 6. I have seen some code snippets online as examples, however they are not doing the trick. I keep getting an "Error in Formula"

I am gettingmy two date range variables from start and end date text boxes.

If someone could help me out, I'll have to hug ya.



strQryString = "{LndTowerData.[DATE]} >= #" & Format(txtStartDate.Text, "mm-dd-yyyy") & "# And {LndTowerData.[Date]} <= #" & Format(txtEndDate.Text, "mm-dd-yyyy") & "#"



rptLndBill.SelectionFormula = strQryString

rptLndBill.Action = 1

Calling ASP2 applications

How do I instance an ASP2 application from a client machine from within the firewall? Despite that, I wrote it in Visual Studio 2005 Professional Edition, whenever I attempt, it tried to read it as if I wrote it for .Net framework 1.1 and not 2.0. I am calling it over HTTP (i.e., HTTP://pjohnson/website1/default.aspx) where the application resides in a folder in WWWRoot.

Calling ASP2 applications

How do I instance an ASP2 application from a client machine from within the firewall? Despite that, I wrote it in Visual Studio 2005 Professional Edition, whenever I attempt, it tried to read it as if I wrote it for .Net framework 1.1 and not 2.0. I am calling it over HTTP (i.e., HTTP://pjohnson/website1/default.aspx) where the application resides in a folder in WWWRoot.

DLL Management Code?

I've been asked to find some sort of program, or better yet some code (and even better in Visual Basic of some variety) that will (I think) check the DLLs and their versions that are being loaded against what the program is expecting, or something similar (sorry, it wasn't made very clear.)

Any suggestions? Thanks
Clutch Cargo

(no subject)

I'm trying to build an app that scans open windows for a control, and if the appropriate control is found it generates a response (e.g. by clicking a button or entering text). I'm using Python, and found a handy dandy module that collects information from open windows and allows you to generate clicks (it's winguiauto.py). It works great, so no problem there. However, when I use
dumpWindow (the function that collects the list of available controls), I note several things I'm not sure how do deal with.

  1. Some of the controls are of the class "button". It should be easy to generate a click on these. But many of them (including some of the ones I'm interested in manipulating) are of class "AfxWnd42s". What are these? Can I click them? The winGuiAuto module comes with functions that click a button control, or a static control, but not a "AfxWnd42s" control.

  2. Some of the controls that are listed aren't actually available to be clicked. Ie they don't appear in the window. Sometime later (or earlier) they may appear, and thats when I want to click them. Is there a way to distinguish between a control that is actually visible on the screen, and one that isn't?


Any thoughts or ideas appreciated...