HamBook – Diff between revs 26 and 40
?pathlinks?
Rev 26 | Rev 40 | |||
---|---|---|---|---|
Line 379... | Line 379... | |||
379 | |
379 | |
|
380 | var currentLocation = $"{location:000}"; |
380 | var currentLocation = $"{location:000}"; |
|
381 | var frequency = int.Parse($"{rows[i].Cells["FrequencyColumn"].Value}"); |
381 | var frequency = int.Parse($"{rows[i].Cells["FrequencyColumn"].Value}"); |
|
382 | var clarifierDirection = char.Parse($"{rows[i].Cells["ClarifierDirectionColumn"].Value}"); |
382 | var clarifierDirection = char.Parse($"{rows[i].Cells["ClarifierDirectionColumn"].Value}"); |
|
383 | var clarifierOffset = int.Parse($"{rows[i].Cells["ClarifierOffsetColumn"].Value}"); |
383 | var clarifierOffset = int.Parse($"{rows[i].Cells["ClarifierOffsetColumn"].Value}"); |
|
384 | var clar = bool.Parse($"{rows[i].Cells["ClarColumn"].Value}"); |
384 | var clar = Convert.ToBoolean(rows[i].Cells["ClarColumn"].Value); |
|
385 | var radioMode = new MemoryRadioMode($"{rows[i].Cells["ModeColumn"].Value}"); |
385 | var radioMode = new MemoryRadioMode($"{rows[i].Cells["ModeColumn"].Value}"); |
|
386 | var ctcssMode = new CtcssMode($"{rows[i].Cells["CtcssColumn"].Value}"); |
386 | var ctcssMode = new CtcssMode($"{rows[i].Cells["CtcssColumn"].Value}"); |
|
387 | var phase = new RadioPhase($"{rows[i].Cells["PhaseColumn"].Value}"); |
387 | var phase = new RadioPhase($"{rows[i].Cells["PhaseColumn"].Value}"); |
|
388 | var tag = bool.Parse($"{rows[i].Cells["TagColumn"].Value}"); |
388 | var tag = Convert.ToBoolean(rows[i].Cells["TagColumn"].Value); |
|
Line 389... | Line 389... | |||
389 | var text = $"{rows[i].Cells["TextColumn"].Value, -12}"; |
389 | var text = $"{rows[i].Cells["TextColumn"].Value, -12}"; |
|
390 | |
390 | |
|
391 | var memoryChannel = new MemoryChannel |
391 | var memoryChannel = new MemoryChannel |
|
Line 550... | Line 550... | |||
550 | if(_cancellationTokenSource != null) |
550 | if(_cancellationTokenSource != null) |
|
551 | { |
551 | { |
|
552 | _cancellationTokenSource.Cancel(); |
552 | _cancellationTokenSource.Cancel(); |
|
553 | } |
553 | } |
|
554 | } |
554 | } |
|
- | 555 | |
||
- | 556 | private void DataGridView1_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e) |
||
- | 557 | { |
||
- | 558 | var a = e.Row; |
||
- | 559 | } |
||
555 | } |
560 | } |
|
556 | } |
561 | } |