اذهب إلى المحتوى

Badraoui

الأعضاء
  • المساهمات

    238
  • تاريخ الانضمام

  • تاريخ آخر زيارة

كل منشورات العضو Badraoui

  1. لي كود Matlab و أريد تحويله إلى برمجة Python، وأود السؤال عن امكانية ذلك؟ وماهي الخطوات الواجب اتخاذها قبل ذلك؟
  2. في تطبيق رأيته مُبَرمج بلغة #C، رأيت رسالة تظهر للمستخدم بزرين اثنين 'Yes' و 'No'، وأريد السؤال عن كيفية عمل مثل هذا النوع من الرسائل برمجياً؟
  3. لي تطبيق ويب على net. وأريد إرسال رسائل بريد الكترونية بحسابي على gmail من خلال التطبيق، هل من امكانية لفعل ذلك؟ وكيف؟
  4. لدي قائمة منسدلة combobox في ملف xaml، بالاضافة إلى ملف viewmodel وأريد اضافة القائمة المنسدلة إلى الملف، حاولت بهذه الطريقة: كود xaml : <ComboBox Binding.XmlNamespaceManager="SelectNameCB" FontSize="15" Margin="10,0,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Width="207" />ملف viewmodel، حيث أن SelectNameCB معرّف لـ Combobox: private void ComboBoxdata() { OleDbConnection ConDb; String eID; ConDb = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Admin\\Documents\\Visual Studio 2012\\Projects\\Feedback\\Feedback.accdb"); try { ConDb.Open(); OleDbCommand DBSelect = new System.Data.OleDb.OleDbCommand("select FName, LName,ID_NAME from NameList", ConDb); OleDbDataReader reader = DBSelect.ExecuteReader(); while (reader.Read()) { string eNAME = ""; eID = reader["ID_NAME"].ToString(); eNAME += reader["FName"].ToString(); eNAME += " " + reader["LName"].ToString(); SelectNameCB.Items.Add(eNAME); } } catch (Exception ae) { MessageBox.Show(ae.Message); }//catch }وللأسف لم ينجح الأمر ـ هل من تقنية أخرى لفعل ذلك؟ أو تصحيح للكود السابق؟
  5. حاولت جاهدا تغيير لون الخلفية الافتراضي 'اللون الأسود' إلى اللون 111# ،وهذا هو الكود المُستخدم: <ResourceDictionary x:Key="Dark"> ... <Color x:Key="SystemAltHighColor">#111</Color> <SolidColorBrush x:Key="SystemAltHighColorBrush" Color="{StaticResource SystemAltHighColor}"/> ... </ResourceDictionary>لكنه لا يعمل، مالذي يتوجب عليّ فعله لذلك؟
  6. قمت بإنشاء هذه الكلاس التي من شأنها توليد رقم عشوائي : public class DataGenerator { public void RandomHRValue() { Random random = new Random(); int RandomNumber = random.Next(0, 100); } }وحقل النص هذا، حيث يأخذ القيمة المولّدة من الكلاس السابق: <TextBlock Name="a" Text="" Width="196" HorizontalAlignment="Center" Margin="183,158,138,56"/> ما أريد بالضبط هو إدراج القيمة المولّدة من طرف الكلاس داخل حقل النص، مع إمكانية تحديث القيمة كل 20 ثانية؟ كيف أُبرمج ذلك؟
  7. لدي الجداول التالية : جدول events: -------------------------------- | id | title | type | -------------------------------- | 1 | EventNo1 | travel | | 2 | EventNo2 | info | | 3 | EventNo3 | travel | | 4 | EventNo4 | sport | | 5 | EventNo5 | info | --------------------------------جدول types: -------------------------------- | id | type | label | -------------------------------- | 1 | travel | xxx #1 | | 2 | info | xxx #2 | | 3 | sport | xxx #3 | --------------------------------وأريد دمج الجدولين في جدول واحد حسب type هكذا: ------------------------------------------- | id | title | type | label | ------------------------------------------- | 1 | EventNo1 | travel | xxx #1 | | 2 | EventNo2 | info | xxx #2 | | 3 | EventNo3 | travel | xxx #1 | | 4 | EventNo4 | sport | xxx #3 | | 5 | EventNo5 | info | xxx #2 | -------------------------------------------كيف أتمكن من فعل ذلك على Mysql؟
  8. أُعتبر مبدئ على برنامج Blender وأريد تصميم قطار بسكة كبداية لي، حيث أتعرف من خلال المشروع على مختلف خبايا البرنامج، لكن وجدت صعوبات كثيرة وخاصة في كيفية إدراج الأشكال الاعتيادية كالمربع، الدائرة... كيف أدرج الأشكال على Blender؟ وكيف أغير في مقاساتها وأحصل على ما أريد؟
  9. أريد تحديد عنصر في قائمة عن طريق مكتبة Jquery بالشكل التالي: $('button').click(function(){ $('ul').find('li:nth-child(2)').css('color', '#f00') })وكود html: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <ul> <li>Glen</li> <li>Tane</li> <li>Ralph</li> <li>David</li> </ul> <button>Draw it</button>اريد تحديد العنصر Ralph من القائمة، فهل من الممكن استعمال رقم سلبي لفعل ذلك، مثلا هل يمكنني استعمال (eq(-2. لتعيين هذا العنصر عن طريق javcaScript؟ بهذا الشكل: $('ul').find('li:nth-child(-2)').css('color', '#f00')
  10. أريد إدراج الخطاطة التالية، والتي تتعلق بـ Automata على برنامج LaTeX على الشكل: بعد أخذ المساعدة والبحث هنا وهناك، توصلت إلى الكود المبين اسفله بمساعدة TexMaker: \documentclass[a4paper,twoside,11pt]{article} \usepackage{tikz} \usetikzlibrary{automata,positioning} \begin{document} \begin{tikzpicture}[shorten >=1pt,node distance=2.5cm,on grid,auto] \node[state,initial] (0) {$q_0$}; \node[state] (1) [right=of 0] {$q_1$}; \node[state, accepting] (2) [right=of 1] {$q_2$}; \node[state, accepting] (3) [right=of 2] {$q_3$}; \node[state] (4) [right=of 3] {$q_4$}; \path[->] (0) edge [bend left] node {$a$} (2) (0) edge [loop below] node {$b$} (0) (0) edge node {$c$} (1) (1) edge node {$a$} (2) (1) edge [bend left] node {$b$} (4) (1) edge [loop below] node {$c$} (1) (2) edge [bend right] node {$a$} (0) (2) edge [loop below] node {$b$} (2) (2) edge node {$c$} (3) (3) edge [bend right] node {$a$} (0) (3) edge node {$b$} (4) (3) edge [loop below] node {$c$} (3) (4) edge [loop below] node {$a$, $b$, $c$} (4); \end{tikzpicture} \end{document}المشكل أن الخطوط الرابطة بين مختلف المراحل في Automata لا تظهر بشكل صحيح، هل من مثال مشابه أو حل للمشكل؟
  11. أُبرمج على Magento في نسخته 1.9.1.1، ولدي لائحة بمجموعة أصناف تندرج تحتها المنتجات، وأريد زيادة السعر لجميع المنتوجات الخاصة بصنف معين، مثلا $70، وبشكل غير أوتوماتيكي، أي عوض تصفح المنتوجات والتغيير يدويا أريد كتابة سكريبت يقوم بالمهمة، كيف ذلك؟
  12. أرى من خلال العديد من الوثائقيات أن التصوير قد يتم بالليل، مما لا يضع عائقا أمام المصور، كما أن الصورة تبدو بشكل واضح جدا، وأعطيكم صورة تبين ما أتحدث عنه: سؤالي: هل هذه التقنية تحتاج إلى آلات معينة؟ وماهي؟ وهل يمكنني فعل ذلك بكاميرا عادية أو هاتف ذكي ؟
  13. لدي متغيّر نصيّ بالقيمة التالية: M2.W1.SSE' وأريد فصل الجزء المبتدئ بـ M ودمجه ببقاء الأجزاء من المتغير النصي، وهذه هي محاولتي: Dim SplitCodes() As String = Split(StringOfCodes, " ") For Each code As String In SplitCodes If code.substring(0,1) = "M" andalso code.Contains(".") = True Then 'Delete the code from the string End if Nextلكني لا أصل إلى النتيجة المنتظرة، فهل من حل؟
  14. أنا جديد على Vb.net حيث سبق لي التعامل مع بيئة php ، وأريد السؤال عن بديل للدالة array_count_values على Vb.Net؟ هل يوجد؟
  15. في تطبيق بلغة #C أتوفر على enum: public enum MyLovelyEnum { FirstSelection, TheOtherSelection, YetAnotherOne };وأحصل على قيمته عن طريق: public MyLovelyEnum VeryLovelyEnum { get; set; }ولدي أدوات RadioButtons: <RadioButton Margin="3">First Selection</RadioButton> <RadioButton Margin="3">The Other Selection</RadioButton> <RadioButton Margin="3">Yet Another one</RadioButton>سؤالي هو كيف أربط radiobuttons بقيم enum؟
  16. على موقع الشركة التي أعمل بها، يوجد نوعان من الصلاحيات التي لا أفهم الفرق بينهما، الأدمين مسؤول عن كل ما يتعلق بالموقع من تحديدث للمعلومات الخاصة بالشركة، كيفية عرض هذه المعلومات... والصلاحية الثانية متعلقة بالمستخدم المعرّف - الذي ولج الموقع عن طريق إدخال بريده الإلكتروني وكلمة السر-، وتمنحه كصلاحية للتغير من معلوماته االشخصية والإعدادات التمعلقة به. سؤالي هو: هل من الضرورة تقسيم الصلاحيات على الموقع؟ ما الفائدة من ذلك؟
  17. أريد رسم منمحنى الدالة التالية على برنامج LaTex: $f(x) = a + b.sin(cx + d)فماهي الطريقة المُتبعة لذلك؟ مع تفادي الأخطاء الهندسية أثناء الرسم؟
  18. على برنامج LaTeX أعمل على وثيقة علمية، ولأن الإطار العلمي الذي أعمل عليه يُحتم إدراج بعض الرموز الخميائية Alchemical processes (مثال لهذه الرموز)، وا أريده بالضبط هو إدراج الرمز الموضّح أدناه (موجود في الصفحة 15 من الملف السابق) في LaTeX: كيف أفعل ذلك؟
  19. لي سابق تجربة في برمجة تطبيقات الويب باستخدام php و html وبعض تقنيات jquery، أما الآن فقد انتقلت للعمل على تطبيقات سطح المكتب على Vb.net، وأريد السؤال حول كيفية إظهار تنبيه للمستخدم؟ شبيه بـ alert المستعمل على jquery؟
  20. أتساءل لماذا متصفح Firefox يضيف بعض الألوان على النصوص المكتوبة، وبصورة أوضح ألاحظ إضافة اللون الأزرق جهة اليسار واللون البني جهة اليمين محيطة بلون رمادي غامق، كما توضح الصورة -الصورة بعد تكبير الحرف-: هل ممكن شرح لهذه الظاهرة؟
  21. لدي Datagridview على تطبيق لسطح مكتب باستخدام Vb.net، وقد ملأتها عن طريق جلب البيانات من قاعدة بيانات sql: Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtSearch.TextChanged Connection.Open() Dim dataTable As New DataTable Dim dataSet As New DataSet dataSet.Tables.Add(dataTable) Dim dataAdapter As New OleDbDataAdapter Dim SQLQuery As String SQLQuery = <sql> SELECT * FROM Students WHERE StudentFirstName = @StudentFirstName </sql> .Value dataAdapter = New OleDbDataAdapter(SQLQuery, Connection) dataAdapter.SelectCommand.Parameters.Add("@StudentFirstName", SqlDbType.Text).Value = txtStudentFirstname.Text dataAdapter.Fill(dataTable) dgrStudentDatabaseViewer.DataSource = dataTable.DefaultView ShowItems() Connection.Close() End Subوأريد البحث عن قيمة معين داخل Datagridview، وهذا هو الكود: Private Sub ShowItems() ' the following delcleration are used for displaying the contents of the table Dim dataAdapter As New OleDbDataAdapter Dim DataTable As New DataTable Dim DataSet As New DataSet Dim SQLQuery As String = <sql>SELECT * FROM Students</sql> DataSet.Tables.Add(DataTable) dataAdapter = New OleDbDataAdapter(SQLQuery, Connection) dataAdapter.Fill(DataTable) ' fills the content from the database into the table in vb net dgrStudentDatabaseViewer.DataSource = DataTable.DefaultView Connection.Close() End Subلكن عند البحث لا يظهر أي شيء، فما العمل؟
  22. أعمل على صفحة ويب باستعمال #C ولكن أواجه مشكلة أثناء عرض الصفحة على المتصفح، حيث أن عرض الصفحة أكبر من عرض المتصفح، ولا أدري هل يمكن تغيير العرض، وهذا هو الكود: /************************************************************************ * * * Sinorcaish Screen-based Style Sheet * * Copyright (C) 2004-07, John Zaitseff * * * ************************************************************************/ /* Author: John Zaitseff <J.Zaitseff@zap.org.au> Version: 1.3 $Id: sinorcaish-screen.css 189 2007-03-22 01:35:44Z john $ This file provides the Sinorcaish style sheet for screen-based user agents (ie, for ordinary Web browsers). This file conforms to the Cascading Style Sheets 2.1 specification. The design of Sinorcaish is influenced by Sinorca (available from the Open Source Web Design site, http://www.oswd.org/), which in turn was based on the Acronis company web site (http://www.acronis.com/). You can find more information about this design from its home page on the ZAP Group web site, http://www.zap.org.au/documents/styles/sinorcaish/. This file may be redistributed and/or modified on the condition that the original copyright notice is retained. */ /********** Global Styles **********/ /* The global font size is set to 90% as */ /* most browsers' normal font size is too */ /* large, at least when using Verdana */ html,body { font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; font-size: 90%; /* Allow IE/Win to resize the document */ color: black; background: white; margin: 0; padding: 0; border: none; w } .hidden { /* Used for content that should be displayed */ /* by non-stylesheet-aware browsers */ display: none !important; } .notprinted { /* Used for content that should not be */ } /* printed to paper */ /* Headings */ h1, /* Headings (H1-H6) should only be used in */ h2, /* the main content area */ h3 { font-weight: bold; text-align: left; margin: 0.5em 0 0 0; padding: 0; } h4, h5, h6 { font-weight: bold; text-align: left; margin: 1.25em 0 0 0; padding: 0; } h1 { font-size: 175% } h2 { font-size: 145% } h3 { font-size: 120% } h4 { font-size: 105% } h5 { font-size: 80% } h6 { font-size: 65% } /* Anchors */ a:link { text-decoration: none; color: #0066CC; background: transparent; } a:visited { text-decoration: none; color: #003399; background: transparent; } a:hover, a:active { text-decoration: underline; } /* Inline elements and classes */ /* This style sheet assumes B, BIG, EM, I, */ /* SMALL, STRONG, SUB and SUP are defined */ /* by the browser as per the HTML4 sample */ /* style sheet. */ code, kbd, samp, tt { font-family: "Courier New", Courier, monospace; font-size: 115%; /* Courier tends to be a little too small */ line-height: 1.0; /* Otherwise lines tend to spread out */ } kbd, code.markup, /* HTML/CSS markup */ span.markup, /* Alternative form for HTML/CSS markup */ .title { /* Title in floating boxes / left sidebar */ font-weight: bolder; } abbr, acronym { font: inherit; /* Don't use small-caps, etc. */ } .tooltip { cursor: help; border-bottom: 1px dotted #CCCCCC; } abbr[title], acronym[title] { cursor: help; border-bottom: 1px dotted #CCCCCC; } cite, dfn, var, .fn, /* Filename */ .url, /* Uniform Resource Locator */ .email { /* E-mail address */ font-style: italic; } .program, /* Command-line name of a computer program */ .window, /* Window or dialog box name */ .menu, /* Menu item in a computer program */ .gui, /* Generic GUI element in a computer program */ .key { /* Keypress in a computer program */ font-weight: bolder; } .clearboxes { /* Clear navboxes and floatboxes */ clear: right; } .unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode", Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; } /* Block-inline elements and classes */ img { vertical-align: baseline; margin: 0; padding: 0; border: none; } img.icon16 { /* For 16x16 file-type icons */ vertical-align: -2px; } del, del * { /* Required for Mozilla */ text-decoration: line-through; } ins, ins * { /* Required for Mozilla */ text-decoration: underline; } .floatleft { /* Left-floating images and spans */ margin: 0.5em 1.5em 0.5em 0; float: left; } .floatright { /* Right-floating images and spans */ margin: 0.5em 0 0.5em 1.5em; float: right; } .nowrap { white-space: nowrap; } /* Block elements */ p { margin: 1em 0; padding: 0; } blockquote { /* Should only be used in main content area, */ /* floating boxes or left sidebar. */ margin: 1em 2.5em; padding: 0; } pre { /* Should only be used in main content area */ /* and floating boxes. */ font-family: "Courier New", Courier, monospace; font-size: 95%; /* Courier tends to be a little too small */ line-height: 1.2; margin: 1em 2.5em; padding: 0; } pre code, pre kbd, pre samp, pre tt { font-size: 100%; /* PRE is already enlarged above */ line-height: 1.2; /* Use same value as for PRE above */ } hr { color: #999999; background: transparent; height: 1px; /* Required for IE/Win */ margin: 0; padding: 0; border-color: #999999; border-width: 1px; border-style: none none solid none; } hr.lighter { /* Warning: not printed out on paper */ color: #F0F0F0; background: transparent; border-color: #F0F0F0; } /* Lists */ ol { list-style: decimal outside; margin: 1em 0; padding: 0 0 0 2.5em; } ol.alpha { list-style-type: lower-alpha; } ol.number { list-style-type: decimal; } ul { list-style: square outside; margin: 1em 0; padding: 0 0 0 2.5em; } ol ol, ol ul, ul ol, ul ul { margin-top: 0; margin-bottom: 0; } ol ul, /* Override possible browser styles */ ol ol ul, ol ul ul, ul ul, ul ol ul, ul ul ul { list-style: square outside; } li { margin: 0; padding: 0; } dl { margin: 1em 0; padding: 0; } dt { font: inherit; /* Don't make the text bold by default */ margin: 1em 0 0.25em 0; padding: 0; } dd { margin: 0 0 1em 2.5em; padding: 0; } /* Tables */ /* Tables should never be used for visual */ /* formatting: that is the role of CSS! */ table.simple { color: inherit; background: inherit; /* Don't make tables transparent */ border-collapse: collapse; border-spacing: 0; empty-cells: show; margin: 0.5em 2.5em; padding: 0; border: 1px solid #999999; } table.simple caption { text-align: center; caption-side: top; margin: 0 2.5em 0.75em; padding: 0; border: none; } table.simple td, table.simple th { text-align: center; vertical-align: middle; margin: 0; padding: 0.25em 0.5em; border: 1px solid #999999; } table.simple th, table.simple td.highlight, table.simple th.highlight { font-weight: bold; color: inherit; background: #F0F0F0; } table.simple td.lighter, table.simple th.lighter { color: inherit; background: #F8F8F8; } table.simple td.left, table.simple th.left { text-align: left; } table.simple td.center, table.simple th.center { text-align: center; } table.simple td.right, table.simple th.right { text-align: right; } /* Forms */ form { margin: 1em 0; padding: 0; border: none; } input, button, select, fieldset, legend { font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; font-size: 95%; color: black; background: inherit; vertical-align: middle; } textarea { font-family: "Courier New", Courier, monospace; font-size: 100%; color: black; background: inherit; vertical-align: middle; } fieldset { font-size: 100%; margin: 1em 0; border: 1px solid #999999; } legend { font-size: 100%; margin: 0 0.5em; padding: 0 0.25em;وَ: /************************************************************************ * * * Sinorcaish Screen-based Style Sheet * * Copyright (C) 2004-07, John Zaitseff * * * ************************************************************************/ /* Author: John Zaitseff <J.Zaitseff@zap.org.au> Version: 1.3 $Id: sinorcaish-screen.css 189 2007-03-22 01:35:44Z john $ This file provides the Sinorcaish style sheet for screen-based user agents (ie, for ordinary Web browsers). This file conforms to the Cascading Style Sheets 2.1 specification. The design of Sinorcaish is influenced by Sinorca (available from the Open Source Web Design site, http://www.oswd.org/), which in turn was based on the Acronis company web site (http://www.acronis.com/). You can find more information about this design from its home page on the ZAP Group web site, http://www.zap.org.au/documents/styles/sinorcaish/. This file may be redistributed and/or modified on the condition that the original copyright notice is retained. */ /********** Global Styles **********/ /* The global font size is set to 90% as */ /* most browsers' normal font size is too */ /* large, at least when using Verdana */ html,body { font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; font-size: 90%; /* Allow IE/Win to resize the document */ color: black; background: white; margin: 0; padding: 0; border: none; w } .hidden { /* Used for content that should be displayed */ /* by non-stylesheet-aware browsers */ display: none !important; } .notprinted { /* Used for content that should not be */ } /* printed to paper */ /* Headings */ h1, /* Headings (H1-H6) should only be used in */ h2, /* the main content area */ h3 { font-weight: bold; text-align: left; margin: 0.5em 0 0 0; padding: 0; } h4, h5, h6 { font-weight: bold; text-align: left; margin: 1.25em 0 0 0; padding: 0; } h1 { font-size: 175% } h2 { font-size: 145% } h3 { font-size: 120% } h4 { font-size: 105% } h5 { font-size: 80% } h6 { font-size: 65% } /* Anchors */ a:link { text-decoration: none; color: #0066CC; background: transparent; } a:visited { text-decoration: none; color: #003399; background: transparent; } a:hover, a:active { text-decoration: underline; } /* Inline elements and classes */ /* This style sheet assumes B, BIG, EM, I, */ /* SMALL, STRONG, SUB and SUP are defined */ /* by the browser as per the HTML4 sample */ /* style sheet. */ code, kbd, samp, tt { font-family: "Courier New", Courier, monospace; font-size: 115%; /* Courier tends to be a little too small */ line-height: 1.0; /* Otherwise lines tend to spread out */ } kbd, code.markup, /* HTML/CSS markup */ span.markup, /* Alternative form for HTML/CSS markup */ .title { /* Title in floating boxes / left sidebar */ font-weight: bolder; } abbr, acronym { font: inherit; /* Don't use small-caps, etc. */ } .tooltip { cursor: help; border-bottom: 1px dotted #CCCCCC; } abbr[title], acronym[title] { cursor: help; border-bottom: 1px dotted #CCCCCC; } cite, dfn, var, .fn, /* Filename */ .url, /* Uniform Resource Locator */ .email { /* E-mail address */ font-style: italic; } .program, /* Command-line name of a computer program */ .window, /* Window or dialog box name */ .menu, /* Menu item in a computer program */ .gui, /* Generic GUI element in a computer program */ .key { /* Keypress in a computer program */ font-weight: bolder; } .clearboxes { /* Clear navboxes and floatboxes */ clear: right; } .unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode", Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; } /* Block-inline elements and classes */ img { vertical-align: baseline; margin: 0; padding: 0; border: none; } img.icon16 { /* For 16x16 file-type icons */ vertical-align: -2px; } del, del * { /* Required for Mozilla */ text-decoration: line-through; } ins, ins * { /* Required for Mozilla */ text-decoration: underline; } .floatleft { /* Left-floating images and spans */ margin: 0.5em 1.5em 0.5em 0; float: left; } .floatright { /* Right-floating images and spans */ margin: 0.5em 0 0.5em 1.5em; float: right; } .nowrap { white-space: nowrap; } /* Block elements */ p { margin: 1em 0; padding: 0; } blockquote { /* Should only be used in main content area, */ /* floating boxes or left sidebar. */ margin: 1em 2.5em; padding: 0; } pre { /* Should only be used in main content area */ /* and floating boxes. */ font-family: "Courier New", Courier, monospace; font-size: 95%; /* Courier tends to be a little too small */ line-height: 1.2; margin: 1em 2.5em; padding: 0; } pre code, pre kbd, pre samp, pre tt { font-size: 100%; /* PRE is already enlarged above */ line-height: 1.2; /* Use same value as for PRE above */ } hr { color: #999999; background: transparent; height: 1px; /* Required for IE/Win */ margin: 0; padding: 0; border-color: #999999; border-width: 1px; border-style: none none solid none; } hr.lighter { /* Warning: not printed out on paper */ color: #F0F0F0; background: transparent; border-color: #F0F0F0; } /* Lists */ ol { list-style: decimal outside; margin: 1em 0; padding: 0 0 0 2.5em; } ol.alpha { list-style-type: lower-alpha; } ol.number { list-style-type: decimal; } ul { list-style: square outside; margin: 1em 0; padding: 0 0 0 2.5em; } ol ol, ol ul, ul ol, ul ul { margin-top: 0; margin-bottom: 0; } ol ul, /* Override possible browser styles */ ol ol ul, ol ul ul, ul ul, ul ol ul, ul ul ul { list-style: square outside; } li { margin: 0; padding: 0; } dl { margin: 1em 0; padding: 0; } dt { font: inherit; /* Don't make the text bold by default */ margin: 1em 0 0.25em 0; padding: 0; } dd { margin: 0 0 1em 2.5em; padding: 0; } /* Tables */ /* Tables should never be used for visual */ /* formatting: that is the role of CSS! */ table.simple { color: inherit; background: inherit; /* Don't make tables transparent */ border-collapse: collapse; border-spacing: 0; empty-cells: show; margin: 0.5em 2.5em; padding: 0; border: 1px solid #999999; } table.simple caption { text-align: center; caption-side: top; margin: 0 2.5em 0.75em; padding: 0; border: none; } table.simple td, table.simple th { text-align: center; vertical-align: middle; margin: 0; padding: 0.25em 0.5em; border: 1px solid #999999; } table.simple th, table.simple td.highlight, table.simple th.highlight { font-weight: bold; color: inherit; background: #F0F0F0; } table.simple td.lighter, table.simple th.lighter { color: inherit; background: #F8F8F8; } table.simple td.left, table.simple th.left { text-align: left; } table.simple td.center, table.simple th.center { text-align: center; } table.simple td.right, table.simple th.right { text-align: right; } /* Forms */ form { margin: 1em 0; padding: 0; border: none; } input, button, select, fieldset, legend { font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans", Arial, Helvetica, sans-serif; font-size: 95%; color: black; background: inherit; vertical-align: middle; } textarea { font-family: "Courier New", Courier, monospace; font-size: 100%; color: black; background: inherit; vertical-align: middle; } fieldset { font-size: 100%; margin: 1em 0; border: 1px solid #999999; } legend { font-size: 100%; margin: 0 0.5em; padding: 0 0.25em;ما الحل؟
  23. لدي ملف Excel كما هو موضح في الصورة: أريد عمل Pivote للجدول بحيث: add an x if a is present in 1, 3, 4, 5 and the same for b: if is present in 1 add an x, if is present in 5 add an x كيف أتمكن من ذلك؟
  24. لدي تطبيق على Vb.net يقوم بتصفح خانات على ملف xl وأريد إدراج Msgbox داخل حلقة التكرار Loop : Sub LoopTest() Dim rng As Range, cell As Range Set rng = Range("A1:A2") For Each cell In rng cell.Copy 'Worksheets("Sheet1").Range("A" + j).Copy Shell "C:\Windows\system32\notepad.exe", vbNormalFocus SendKeys "^V" DoEvents SendKeys "{ENTER}", True Next cell End Subكيف أفعل ذلك؟
  25. على تطبيق سطح مكتب، باستخدام Vb.net لدي الكود التالي: Dim ta = frmControllerScreen.Controls.Find("txtResponseA", True) If ta.Count > 0 Then Dim txt As TextBox = ta.First txtResponseA = txt.Text End If Dim tb = frmControllerScreen.Controls.Find("txtResponseB", True) If tb.Count > 0 Then Dim txt As TextBox = tb.First txtResponseB = txt.Text End If Dim tc = frmControllerScreen.Controls.Find("txtResponseC", True) If tc.Count > 0 Then Dim txt As TextBox = ta.First txtResponseC = txt.Text End If Dim td = frmControllerScreen.Controls.Find("txtResponseD", True) If td.Count > 0 Then Dim txt As TextBox = ta.First txtResponseD = txt.Text End Ifما أريد السؤال عنه إمكانية استعمال متغير بدلالة آخر، حاولت استعمال هذه الطريقة: lblAutoChoice1.Text = ("txtResponse" & chrAvailableAnswers.Item(0).ToString.Trim) فلم أصل إلى حل؟؟
×
×
  • أضف...